We have changed the default nullability on collections from false to true in compiler release 5.0. Prior to that you can add an explicit `null` specifier like so:service S { action foo(p: many Integer null); };which produces: <Action Name="foo" IsBo...
This is the same answer I gave in the SAP Ticket system: Dear Customer,the importer will preserve the entity set name, not the type name, your example: <edmx:DataServices> <Schema Namespace="Asset" xmlns="..."> <EntityContainer Name="EntityCo...
sure you can, I wrote 'Attributes.texts', not 'Attribute_texts', and of course you can't mute something that's inside a service already but only prevent an association target from becoming auto-exposed.
A managed association is a structured element with the augmented semantics that the sub elements describe a relationship to the target. With this, a managed association underlies the same flattening rules than any other structured element. If you don...
CDS supports you perfectly with this:entity Demo {
key ID : Integer;
};
entity Emp {
key emp: association to Demo;
}
entity Test {
key test: association to Emp;
};however, don't name the associations like the source entities, always give them sema...