Quantcast
Channel: SCN : Discussion List - SAP HANA and In-Memory Computing
Viewing all articles
Browse latest Browse all 5653

Adding/removing fields in CDS-definition problematic

$
0
0


I defined the following which could be activate successfully:

context test {

 

Type type0 {

        firstname : String(10);

        lastname : String(10);

        city : String(10);

        post_cde : Integer;       

        };

 

Type type1 {

        tel : Integer;       

          };

 

    @Catalog.tableType: #COLUMN

        Entity test_tab {

        key name : type0;

        tel : type1;

        };

 

};  //context test

 

I changed to the following which was also actiavted successfully:

 

context test {

 

Type type0 {

        firstname : String(10);

        lastname : String(10);

//        city : String(10);

//        post_cde : Integer;       

        };

 

Type type1 {

        tel : Integer;       

          };

 

    @Catalog.tableType: #COLUMN

        Entity test_tab {

        key name : type0;

        tel : type1;

        };

 

};  //context test

 

I then changed back to the first definition above and then get the following activation error

 

What is going on?

Initially it activated without a problem and now it is suddenly complaining.


Viewing all articles
Browse latest Browse all 5653

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>