Hi Nikolaos,
1. i started looking at this data entity. But i will still use custom service while using it, is that ok? (i mean not Odata)
i will still say entity.field = request.field() //where request is the contract class
2. i know in Odata there is no need for contract classes, but how i'm going to fill entity.field? i mean now in c# i define the request and give values to it's fields and in x++ i say entity.field = request.field()
but in Odata, what will i define in c# if i'm not going to use contracts and what i'm going to say in x++? entity.field = what??
2. There are few fields that i need help with, can i fill them using this entity?
a) Person BirthDate
b) Description field in LogisticsLocation
c) logisticsLocationRoleType
d) Name field in TaxVATNumTable (i knw this table is not in the entity but how can i insert this field,
am i going to do changes to the entity)?
3. I want to create bankaccountAddress for my customer, how can i do that using this entity? or can i now continue this part with coding?
4. I also want to create contactPersons for the customer and create addresses(postal and electronic) for each contactPerson... so i think this can't be done by dataEntities right? so if i switch to coding now, i will still have an issue with creating the addresses exactly as the issue i mentioned in the question. So please advise?
5. If i added a new field to custTable, that i want to insert, then i need to create a new dataEntity since extension is not supported, then put CustCustomerV3Entity inside my new entity? and create a new staging table that has all fields CustCustomerV3EntityStagingTable in addition to my new field? OR can i get the custTable record created from the entity and then update the record with the new field value?