diff --git a/.changeset/tiny-points-boil.md b/.changeset/tiny-points-boil.md new file mode 100644 index 00000000..04749dc7 --- /dev/null +++ b/.changeset/tiny-points-boil.md @@ -0,0 +1,7 @@ +--- +'@sap-ux/edmx-parser': patch +'@sap-ux/vocabularies-types': patch +'@sap-ux/annotation-converter': patch +--- + +feat: add flag for collection-valued action parameters diff --git a/packages/edmx-parser/src/parser.ts b/packages/edmx-parser/src/parser.ts index f87eb215..07fffeff 100644 --- a/packages/edmx-parser/src/parser.ts +++ b/packages/edmx-parser/src/parser.ts @@ -523,7 +523,8 @@ function parseActions( fullyQualifiedName: `${actionFQN}/${param._attributes.Name}`, name: `${param._attributes.Name}`, type: param._attributes.Type, - isEntitySet: param._attributes.Name === action._attributes.EntitySetPath + isEntitySet: param._attributes.Name === action._attributes.EntitySetPath, + isCollection: param._attributes.Type.match(/^Collection\(.+\)$/) !== null }; }), returnType: action.ReturnType ? action.ReturnType._attributes.Type : '' @@ -552,7 +553,8 @@ function parseFunctionImport( name: param._attributes.Name, fullyQualifiedName: `${actionFQN}/${param._attributes.Name}`, type: param._attributes.Type, - isEntitySet: false + isEntitySet: false, + isCollection: param._attributes.Type.match(/^Collection\(.+\)$/) !== null }; }), returnType: action._attributes.ReturnType ? action._attributes.ReturnType : '' diff --git a/packages/edmx-parser/test/__snapshots__/merge.spec.ts.snap b/packages/edmx-parser/test/__snapshots__/merge.spec.ts.snap index 1647ae7b..ba060056 100644 --- a/packages/edmx-parser/test/__snapshots__/merge.spec.ts.snap +++ b/packages/edmx-parser/test/__snapshots__/merge.spec.ts.snap @@ -13,6 +13,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.boundAction1(sap.fe.core.ActionVisibility.RootElement)/self", + "isCollection": false, "isEntitySet": true, "name": "self", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -31,6 +32,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.boundAction2(sap.fe.core.ActionVisibility.RootElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -49,6 +51,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.boundAction3(sap.fe.core.ActionVisibility.RootElement)/self", + "isCollection": false, "isEntitySet": true, "name": "self", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -67,6 +70,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftPrepare(sap.fe.core.ActionVisibility.RootElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -74,6 +78,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftPrepare(sap.fe.core.ActionVisibility.RootElement)/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -92,6 +97,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftPrepare(sap.fe.core.ActionVisibility.SubElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.SubElement", @@ -99,6 +105,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftPrepare(sap.fe.core.ActionVisibility.SubElement)/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -117,6 +124,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftActivate(sap.fe.core.ActionVisibility.RootElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -135,6 +143,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftEdit(sap.fe.core.ActionVisibility.RootElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -142,6 +151,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftEdit(sap.fe.core.ActionVisibility.RootElement)/PreserveChanges", + "isCollection": false, "isEntitySet": false, "name": "PreserveChanges", "type": "Edm.Boolean", @@ -2240,6 +2250,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.boundAction1(sap.fe.core.ActionVisibility.RootElement)/self", + "isCollection": false, "isEntitySet": true, "name": "self", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -2258,6 +2269,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.boundAction2(sap.fe.core.ActionVisibility.RootElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -2276,6 +2288,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.boundAction3(sap.fe.core.ActionVisibility.RootElement)/self", + "isCollection": false, "isEntitySet": true, "name": "self", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -2294,6 +2307,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftPrepare(sap.fe.core.ActionVisibility.RootElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -2301,6 +2315,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftPrepare(sap.fe.core.ActionVisibility.RootElement)/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -2319,6 +2334,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftPrepare(sap.fe.core.ActionVisibility.SubElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.SubElement", @@ -2326,6 +2342,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftPrepare(sap.fe.core.ActionVisibility.SubElement)/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -2344,6 +2361,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftActivate(sap.fe.core.ActionVisibility.RootElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -2362,6 +2380,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftEdit(sap.fe.core.ActionVisibility.RootElement)/in", + "isCollection": false, "isEntitySet": true, "name": "in", "type": "sap.fe.core.ActionVisibility.RootElement", @@ -2369,6 +2388,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "sap.fe.core.ActionVisibility.draftEdit(sap.fe.core.ActionVisibility.RootElement)/PreserveChanges", + "isCollection": false, "isEntitySet": false, "name": "PreserveChanges", "type": "Edm.Boolean", diff --git a/packages/edmx-parser/test/__snapshots__/parser.spec.ts.snap b/packages/edmx-parser/test/__snapshots__/parser.spec.ts.snap index 94e568c5..b039cc3d 100644 --- a/packages/edmx-parser/test/__snapshots__/parser.spec.ts.snap +++ b/packages/edmx-parser/test/__snapshots__/parser.spec.ts.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Parser can convertTypes a metadata with a typedef 1`] = ` +exports[`Parser can parse a metadata with a typedef 1`] = ` RawMetadataInstance { "identification": "serviceFile", "references": Array [ @@ -37,6 +37,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "RequisitionUIService.addToCartAction(RequisitionUIService.Cart)/in", + "isCollection": false, "isEntitySet": false, "name": "in", "type": "RequisitionUIService.Cart", @@ -44,6 +45,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "RequisitionUIService.addToCartAction(RequisitionUIService.Cart)/lineItem", + "isCollection": false, "isEntitySet": false, "name": "lineItem", "type": "RequisitionUIService.RequisitionItems", @@ -2530,7 +2532,7 @@ RawMetadataInstance { } `; -exports[`Parser can convertTypes a trippin metadata 1`] = ` +exports[`Parser can parse a trippin metadata 1`] = ` MergedRawMetadata { "_actions": Array [ Object { @@ -2573,6 +2575,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.UpdateLastName(Trippin.Person)/person", + "isCollection": false, "isEntitySet": false, "name": "person", "type": "Trippin.Person", @@ -2580,6 +2583,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.UpdateLastName(Trippin.Person)/lastName", + "isCollection": false, "isEntitySet": false, "name": "lastName", "type": "Edm.String", @@ -2598,6 +2602,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.ShareTrip(Trippin.Person)/personInstance", + "isCollection": false, "isEntitySet": false, "name": "personInstance", "type": "Trippin.Person", @@ -2605,6 +2610,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.ShareTrip(Trippin.Person)/userName", + "isCollection": false, "isEntitySet": false, "name": "userName", "type": "Edm.String", @@ -2612,6 +2618,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.ShareTrip(Trippin.Person)/tripId", + "isCollection": false, "isEntitySet": false, "name": "tripId", "type": "Edm.Int32", @@ -2640,6 +2647,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "GetNearestAirport()/lat", + "isCollection": false, "isEntitySet": false, "name": "lat", "type": "Edm.Double", @@ -2647,6 +2655,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "GetNearestAirport()/lon", + "isCollection": false, "isEntitySet": false, "name": "lon", "type": "Edm.Double", @@ -2665,6 +2674,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.GetFavoriteAirline(Trippin.Person)/person", + "isCollection": false, "isEntitySet": true, "name": "person", "type": "Trippin.Person", @@ -2683,6 +2693,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.GetFriendsTrips(Trippin.Person)/person", + "isCollection": false, "isEntitySet": false, "name": "person", "type": "Trippin.Person", @@ -2690,6 +2701,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.GetFriendsTrips(Trippin.Person)/userName", + "isCollection": false, "isEntitySet": false, "name": "userName", "type": "Edm.String", @@ -2708,6 +2720,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.GetInvolvedPeople(Trippin.Trip)/trip", + "isCollection": false, "isEntitySet": false, "name": "trip", "type": "Trippin.Trip", @@ -3357,6 +3370,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.UpdateLastName(Trippin.Person)/person", + "isCollection": false, "isEntitySet": false, "name": "person", "type": "Trippin.Person", @@ -3364,6 +3378,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.UpdateLastName(Trippin.Person)/lastName", + "isCollection": false, "isEntitySet": false, "name": "lastName", "type": "Edm.String", @@ -3382,6 +3397,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.ShareTrip(Trippin.Person)/personInstance", + "isCollection": false, "isEntitySet": false, "name": "personInstance", "type": "Trippin.Person", @@ -3389,6 +3405,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.ShareTrip(Trippin.Person)/userName", + "isCollection": false, "isEntitySet": false, "name": "userName", "type": "Edm.String", @@ -3396,6 +3413,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.ShareTrip(Trippin.Person)/tripId", + "isCollection": false, "isEntitySet": false, "name": "tripId", "type": "Edm.Int32", @@ -3424,6 +3442,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "GetNearestAirport()/lat", + "isCollection": false, "isEntitySet": false, "name": "lat", "type": "Edm.Double", @@ -3431,6 +3450,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "GetNearestAirport()/lon", + "isCollection": false, "isEntitySet": false, "name": "lon", "type": "Edm.Double", @@ -3449,6 +3469,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.GetFavoriteAirline(Trippin.Person)/person", + "isCollection": false, "isEntitySet": true, "name": "person", "type": "Trippin.Person", @@ -3467,6 +3488,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.GetFriendsTrips(Trippin.Person)/person", + "isCollection": false, "isEntitySet": false, "name": "person", "type": "Trippin.Person", @@ -3474,6 +3496,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.GetFriendsTrips(Trippin.Person)/userName", + "isCollection": false, "isEntitySet": false, "name": "userName", "type": "Edm.String", @@ -3492,6 +3515,7 @@ MergedRawMetadata { Object { "_type": "ActionParameter", "fullyQualifiedName": "Trippin.GetInvolvedPeople(Trippin.Trip)/trip", + "isCollection": false, "isEntitySet": false, "name": "trip", "type": "Trippin.Trip", @@ -4191,7 +4215,7 @@ MergedRawMetadata { } `; -exports[`Parser can convertTypes a v2 edmx file with analytics 1`] = ` +exports[`Parser can parse a v2 edmx file with analytics 1`] = ` RawMetadataInstance { "identification": "serviceFile", "references": Array [ @@ -4223,6 +4247,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductActivation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4230,6 +4255,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductActivation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4237,6 +4263,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductActivation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4255,6 +4282,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4262,6 +4290,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4269,6 +4298,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4287,6 +4317,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy_new_supplier()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4294,6 +4325,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy_new_supplier()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4301,6 +4333,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy_new_supplier()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4308,6 +4341,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy_new_supplier()/Supplier", + "isCollection": false, "isEntitySet": false, "name": "Supplier", "type": "Edm.String", @@ -4326,6 +4360,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCreate_review_post()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4333,6 +4368,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCreate_review_post()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4340,6 +4376,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCreate_review_post()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4347,6 +4384,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCreate_review_post()/Reviewratingvalue", + "isCollection": false, "isEntitySet": false, "name": "Reviewratingvalue", "type": "Edm.Decimal", @@ -4354,6 +4392,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCreate_review_post()/Reviewposttext", + "isCollection": false, "isEntitySet": false, "name": "Reviewposttext", "type": "Edm.String", @@ -4361,6 +4400,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCreate_review_post()/Reviewposttitle", + "isCollection": false, "isEntitySet": false, "name": "Reviewposttitle", "type": "Edm.String", @@ -4379,6 +4419,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductDelete_ext()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4386,6 +4427,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductDelete_ext()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4393,6 +4435,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductDelete_ext()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4411,6 +4454,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductEdit()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4418,6 +4462,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductEdit()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4425,6 +4470,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductEdit()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4432,6 +4478,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductEdit()/PreserveChanges", + "isCollection": false, "isEntitySet": false, "name": "PreserveChanges", "type": "Edm.Boolean", @@ -4450,6 +4497,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_add()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4457,6 +4505,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_add()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4464,6 +4513,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_add()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4482,6 +4532,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_remove()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4489,6 +4540,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_remove()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4496,6 +4548,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_remove()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4514,6 +4567,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_toggle()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4521,6 +4575,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_toggle()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4528,6 +4583,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_toggle()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4546,6 +4602,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductMycart_add()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4553,6 +4610,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductMycart_add()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4560,6 +4618,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductMycart_add()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4578,6 +4637,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductPreparation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4585,6 +4645,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductPreparation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4592,6 +4653,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductPreparation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4599,6 +4661,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductPreparation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -4617,6 +4680,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductShortage_list()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4624,6 +4688,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductShortage_list()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4631,6 +4696,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductShortage_list()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4649,6 +4715,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductValidation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4656,6 +4723,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductValidation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4663,6 +4731,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductValidation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4670,6 +4739,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductValidation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -4688,6 +4758,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4695,6 +4766,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/Language", + "isCollection": false, "isEntitySet": false, "name": "Language", "type": "Edm.String", @@ -4702,6 +4774,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4709,6 +4782,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4716,6 +4790,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -4734,6 +4809,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4741,6 +4817,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/Language", + "isCollection": false, "isEntitySet": false, "name": "Language", "type": "Edm.String", @@ -4748,6 +4825,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4755,6 +4833,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4762,6 +4841,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -4780,6 +4860,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ReviewPostDelete()/ProductReviewPostUUID", + "isCollection": false, "isEntitySet": false, "name": "ProductReviewPostUUID", "type": "Edm.Guid", @@ -4798,6 +4879,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ReviewPostDislike()/ProductReviewPostUUID", + "isCollection": false, "isEntitySet": false, "name": "ProductReviewPostUUID", "type": "Edm.Guid", @@ -4816,6 +4898,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ReviewPostLike()/ProductReviewPostUUID", + "isCollection": false, "isEntitySet": false, "name": "ProductReviewPostUUID", "type": "Edm.Guid", @@ -4834,6 +4917,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ReviewPostUpdate()/ProductReviewPostUUID", + "isCollection": false, "isEntitySet": false, "name": "ProductReviewPostUUID", "type": "Edm.Guid", @@ -4841,6 +4925,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ReviewPostUpdate()/ReviewRatingValue", + "isCollection": false, "isEntitySet": false, "name": "ReviewRatingValue", "type": "Edm.Decimal", @@ -4848,6 +4933,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ReviewPostUpdate()/ReviewPostText", + "isCollection": false, "isEntitySet": false, "name": "ReviewPostText", "type": "Edm.String", @@ -4866,6 +4952,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/A6851320F167FF3Check_availability_single()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4873,6 +4960,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/A6851320F167FF3Check_availability_single()/Bin", + "isCollection": false, "isEntitySet": false, "name": "Bin", "type": "Edm.String", @@ -4880,6 +4968,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/A6851320F167FF3Check_availability_single()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4887,6 +4976,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/A6851320F167FF3Check_availability_single()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4905,6 +4995,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/A6851320F167FF31FAD60ECheck_availibility()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4912,6 +5003,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/A6851320F167FF31FAD60ECheck_availibility()/Bin", + "isCollection": false, "isEntitySet": false, "name": "Bin", "type": "Edm.String", @@ -4919,6 +5011,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/A6851320F167FF31FAD60ECheck_availibility()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4926,6 +5019,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/A6851320F167FF31FAD60ECheck_availibility()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4944,6 +5038,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4951,6 +5046,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/Bin", + "isCollection": false, "isEntitySet": false, "name": "Bin", "type": "Edm.String", @@ -4958,6 +5054,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -4965,6 +5062,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -4972,6 +5070,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -4990,6 +5089,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -4997,6 +5097,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/Bin", + "isCollection": false, "isEntitySet": false, "name": "Bin", "type": "Edm.String", @@ -5004,6 +5105,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -5011,6 +5113,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -5018,6 +5121,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -21819,7 +21923,7 @@ RawMetadataInstance { } `; -exports[`Parser can convertTypes a v2 edmx file with function import 1`] = ` +exports[`Parser can parse a v2 edmx file with function import 1`] = ` RawMetadataInstance { "identification": "serviceFile", "references": Array [ @@ -21851,6 +21955,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductActivation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -21858,6 +21963,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductActivation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -21865,6 +21971,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductActivation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -21883,6 +21990,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -21890,6 +21998,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -21897,6 +22006,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductCopy()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -21915,6 +22025,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductDelete_ext()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -21922,6 +22033,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductDelete_ext()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -21929,6 +22041,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductDelete_ext()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -21947,6 +22060,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductEdit()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -21954,6 +22068,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductEdit()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -21961,6 +22076,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductEdit()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -21968,6 +22084,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductEdit()/PreserveChanges", + "isCollection": false, "isEntitySet": false, "name": "PreserveChanges", "type": "Edm.Boolean", @@ -21986,6 +22103,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_add()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -21993,6 +22111,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_add()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22000,6 +22119,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_add()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22018,6 +22138,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_remove()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22025,6 +22146,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_remove()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22032,6 +22154,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_remove()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22050,6 +22173,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_toggle()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22057,6 +22181,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_toggle()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22064,6 +22189,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductFavorites_toggle()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22082,6 +22208,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductMycart_add()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22089,6 +22216,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductMycart_add()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22096,6 +22224,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductMycart_add()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22114,6 +22243,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductPreparation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22121,6 +22251,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductPreparation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22128,6 +22259,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductPreparation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22135,6 +22267,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductPreparation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -22153,6 +22286,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductReview_delete()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22160,6 +22294,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductReview_delete()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22167,6 +22302,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductReview_delete()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22185,6 +22321,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductReview_helpful()/Productreviewpostuuid", + "isCollection": false, "isEntitySet": false, "name": "Productreviewpostuuid", "type": "Edm.Guid", @@ -22203,6 +22340,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductReview_modify()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22210,6 +22348,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductReview_modify()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22217,6 +22356,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductReview_modify()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22224,6 +22364,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductReview_modify()/Reviewratingvalue", + "isCollection": false, "isEntitySet": false, "name": "Reviewratingvalue", "type": "Edm.Byte", @@ -22231,6 +22372,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductReview_modify()/Reviewposttext", + "isCollection": false, "isEntitySet": false, "name": "Reviewposttext", "type": "Edm.String", @@ -22249,6 +22391,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductValidation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22256,6 +22399,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductValidation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22263,6 +22407,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductValidation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22270,6 +22415,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductValidation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -22288,6 +22434,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22295,6 +22442,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/Language", + "isCollection": false, "isEntitySet": false, "name": "Language", "type": "Edm.String", @@ -22302,6 +22450,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22309,6 +22458,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22316,6 +22466,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextPreparation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -22334,6 +22485,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22341,6 +22493,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/Language", + "isCollection": false, "isEntitySet": false, "name": "Language", "type": "Edm.String", @@ -22348,6 +22501,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22355,6 +22509,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22362,6 +22517,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_ProductTextValidation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -22380,6 +22536,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22387,6 +22544,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/Bin", + "isCollection": false, "isEntitySet": false, "name": "Bin", "type": "Edm.String", @@ -22394,6 +22552,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22401,6 +22560,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22408,6 +22568,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPPreparation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -22426,6 +22587,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/Product", + "isCollection": false, "isEntitySet": false, "name": "Product", "type": "Edm.String", @@ -22433,6 +22595,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/Bin", + "isCollection": false, "isEntitySet": false, "name": "Bin", "type": "Edm.String", @@ -22440,6 +22603,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/DraftUUID", + "isCollection": false, "isEntitySet": false, "name": "DraftUUID", "type": "Edm.Guid", @@ -22447,6 +22611,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/IsActiveEntity", + "isCollection": false, "isEntitySet": false, "name": "IsActiveEntity", "type": "Edm.Boolean", @@ -22454,6 +22619,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "SEPMRA_PROD_MAN.SEPMRA_PROD_MAN_Entities/SEPMRA_C_PD_StorageBinTPValidation()/SideEffectsQualifier", + "isCollection": false, "isEntitySet": false, "name": "SideEffectsQualifier", "type": "Edm.String", @@ -38001,7 +38167,7 @@ RawMetadataInstance { } `; -exports[`Parser can convertTypes a weird edmx file 1`] = ` +exports[`Parser can parse a weird edmx file 1`] = ` RawMetadataInstance { "identification": "serviceFile", "references": Array [ @@ -38083,6 +38249,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.UpdatePrices(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderItemType)/_it", + "isCollection": false, "isEntitySet": false, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderItemType", @@ -38090,6 +38257,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.UpdatePrices(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderItemType)/PricingType", + "isCollection": false, "isEntitySet": false, "name": "PricingType", "type": "Edm.String", @@ -38108,6 +38276,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlockItem(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderItemType)/_it", + "isCollection": false, "isEntitySet": false, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderItemType", @@ -38115,6 +38284,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlockItem(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderItemType)/ItemBillingBlockReason", + "isCollection": false, "isEntitySet": false, "name": "ItemBillingBlockReason", "type": "Edm.String", @@ -38133,6 +38303,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.UpdatePrices(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/_it", + "isCollection": false, "isEntitySet": false, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType", @@ -38140,6 +38311,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.UpdatePrices(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/PricingType", + "isCollection": false, "isEntitySet": false, "name": "PricingType", "type": "Edm.String", @@ -38168,6 +38340,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.PrepareForEdit(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/_it", + "isCollection": false, "isEntitySet": true, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType", @@ -38186,6 +38359,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.CreateWithSalesOrderType(Collection(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType))/_it", + "isCollection": true, "isEntitySet": true, "name": "_it", "type": "Collection(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)", @@ -38193,6 +38367,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.CreateWithSalesOrderType(Collection(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType))/SalesOrderType", + "isCollection": false, "isEntitySet": false, "name": "SalesOrderType", "type": "Edm.String", @@ -38200,6 +38375,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.CreateWithSalesOrderType(Collection(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType))/SalesOrganization", + "isCollection": false, "isEntitySet": false, "name": "SalesOrganization", "type": "Edm.String", @@ -38207,6 +38383,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.CreateWithSalesOrderType(Collection(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType))/DistributionChannel", + "isCollection": false, "isEntitySet": false, "name": "DistributionChannel", "type": "Edm.String", @@ -38214,6 +38391,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.CreateWithSalesOrderType(Collection(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType))/OrganizationDivision", + "isCollection": false, "isEntitySet": false, "name": "OrganizationDivision", "type": "Edm.String", @@ -38232,6 +38410,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveDeliveryBlock(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/_it", + "isCollection": false, "isEntitySet": false, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType", @@ -38250,6 +38429,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlock(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/_it", + "isCollection": false, "isEntitySet": false, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType", @@ -38257,6 +38437,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlock(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/HeaderBillingBlockReason", + "isCollection": false, "isEntitySet": false, "name": "HeaderBillingBlockReason", "type": "Edm.String", @@ -38275,6 +38456,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SaveChanges(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/_it", + "isCollection": false, "isEntitySet": true, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType", @@ -38293,6 +38475,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlock(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/_it", + "isCollection": false, "isEntitySet": false, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType", @@ -38311,6 +38494,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetDeliveryBlock(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/_it", + "isCollection": false, "isEntitySet": false, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType", @@ -38318,6 +38502,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetDeliveryBlock(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderManageType)/DeliveryBlockReason", + "isCollection": false, "isEntitySet": false, "name": "DeliveryBlockReason", "type": "Edm.String", @@ -38336,6 +38521,7 @@ RawMetadataInstance { Object { "_type": "ActionParameter", "fullyQualifiedName": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlockItem(com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderItemType)/_it", + "isCollection": false, "isEntitySet": false, "name": "_it", "type": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SalesOrderItemType", @@ -66785,2934 +66971,3027 @@ RawMetadataInstance { } `; -exports[`Parser can convertTypes an edmx file 1`] = ` -RawMetadataInstance { - "identification": "serviceFile", - "references": Array [ +exports[`Parser can parse an edmx file 1`] = ` +MergedRawMetadata { + "_actions": Array [ Object { - "alias": "Capabilities", - "namespace": "Org.OData.Capabilities.V1", - "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.xml", + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", + "isBound": true, + "isFunction": false, + "name": "ChangeOrderStatus", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.HeaderPartner", + }, + ], + "returnType": "com.c_salesordermanage_sd.HeaderPartner", + "sourceType": "com.c_salesordermanage_sd.HeaderPartner", }, Object { - "alias": "Common", - "namespace": "com.sap.vocabularies.Common.v1", - "uri": "https://wiki.scn.sap.com/wiki/download/attachments/448470974/Common.xml?api=v2", + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "ChangeOrderStatus", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", + "isCollection": false, + "isEntitySet": false, + "name": "OverallSDProcessStatus", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, Object { - "alias": "Communication", - "namespace": "com.sap.vocabularies.Communication.v1", - "uri": "https://wiki.scn.sap.com/wiki/download/attachments/448470971/Communication.xml?api=v2", + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", + "isBound": true, + "isFunction": false, + "name": "ParentBasedAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.HeaderPartner", + }, + ], + "returnType": "com.c_salesordermanage_sd.HeaderPartner", + "sourceType": "com.c_salesordermanage_sd.HeaderPartner", }, Object { - "alias": "Core", - "namespace": "Org.OData.Core.V1", - "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml", + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.HeaderPartner", + "sourceType": "com.c_salesordermanage_sd.HeaderPartner", }, Object { - "alias": "Measures", - "namespace": "Org.OData.Measures.V1", - "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Measures.V1.xml", + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialDetails", }, Object { - "alias": "UI", - "namespace": "com.sap.vocabularies.UI.v1", - "uri": "https://wiki.scn.sap.com/wiki/download/attachments/448470968/UI.xml?api=v2", - }, - ], - "schema": Object { - "actions": Array [ - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", - "isBound": true, - "isFunction": false, - "name": "ChangeOrderStatus", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.HeaderPartner", - }, - ], - "returnType": "com.c_salesordermanage_sd.HeaderPartner", - "sourceType": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "ChangeOrderStatus", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", - "isEntitySet": false, - "name": "OverallSDProcessStatus", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", - "isBound": true, - "isFunction": false, - "name": "ParentBasedAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.HeaderPartner", - }, - ], - "returnType": "com.c_salesordermanage_sd.HeaderPartner", - "sourceType": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.HeaderPartner", - "sourceType": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderItem", - "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)", - "isBound": true, - "isFunction": false, - "name": "DummyBoundAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderItem", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderItem", - "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", - "isBound": true, - "isFunction": false, - "name": "IdentificationFormAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", - "isEntitySet": false, - "name": "RequestedQuantity", - "type": "Edm.Decimal", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderItem", - "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "OPAvailableTrueAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "OPAvailableFalseAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "OPAvailableNullAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "EnableEditAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "CreateWithSalesOrderType", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", - "isEntitySet": false, - "name": "SalesOrderType", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", - "isEntitySet": false, - "name": "SalesOrganization", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", - "isEntitySet": false, - "name": "OrganizationDivision", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", - "isEntitySet": false, - "name": "DistributionChannel", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "FacetFormAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", - "isEntitySet": false, - "name": "ShippingCondition", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "draftActivate", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "draftEdit", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/PreserveChanges", - "isEntitySet": false, - "name": "PreserveChanges", - "type": "Edm.Boolean", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "ReturnInProcess()", - "isBound": false, - "isFunction": false, - "name": "ReturnInProcess", - "parameters": Array [], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "UnboundAction()", - "isBound": false, - "isFunction": false, - "name": "UnboundAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "UnboundAction()/MessageText", - "isEntitySet": false, - "name": "MessageText", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "", - }, - ], - "annotations": Object { - "serviceFile": Array [ + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Value Help for Billing Block Reason", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.BillingBlockReason", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.MaterialRatings", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Block", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Billing Block", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "BillingBlockReason_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatings", + "sourceType": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Materials By Sales Org and Distr Channel", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SOrg.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderItem", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderItem", + "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Material Number", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "MaterialName", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderManage", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Description", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetailsBoundAction(com.c_salesordermanage_sd.MaterialDetails)", + "isBound": true, + "isFunction": false, + "name": "MaterialDetailsBoundAction", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "RQ Unit", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Unit", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Requested Quantity Unit", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetailsBoundAction(com.c_salesordermanage_sd.MaterialDetails)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialDetails", }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Base Unit of Measure", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", + ], + "returnType": "com.c_salesordermanage_sd.MaterialDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)", + "isBound": true, + "isFunction": false, + "name": "MaterialCategoryFormAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialDetails", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Unit", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/BrandCategory", + "isCollection": false, + "isEntitySet": false, + "name": "BrandCategory", + "type": "Edm.String", }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsBoundAction(com.c_salesordermanage_sd.MaterialRatings)", + "isBound": true, + "isFunction": false, + "name": "MaterialRatingsBoundAction", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Types", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsBoundAction(com.c_salesordermanage_sd.MaterialRatings)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.MaterialRatings", }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatings", + "sourceType": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)", + "isBound": true, + "isFunction": false, + "name": "RatingFormAction", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrderType_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialRatings", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/Rating", + "isCollection": false, + "isEntitySet": false, + "name": "Rating", + "type": "Edm.Decimal", }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatings", + "sourceType": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", + "isBound": true, + "isFunction": false, + "name": "MaterialRatingsDetailsBoundAction", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Language Key", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", + "isBound": true, + "isFunction": false, + "name": "RatingCommentsFormAction", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "AlternativeUnit", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "AlternativeUnit_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/Comments", + "isCollection": false, + "isEntitySet": false, + "name": "Comments", + "type": "Edm.String", }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)", + "isBound": true, + "isFunction": false, + "name": "DummyBoundAction", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "UoM Text", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderItem", }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderItem", + "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", + "isBound": true, + "isFunction": false, + "name": "IdentificationFormAction", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Numerator", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderItem", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Denominator", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", + "isCollection": false, + "isEntitySet": false, + "name": "RequestedQuantity", + "type": "Edm.Decimal", }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderItem", + "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "OPAvailableTrueAction", + "parameters": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Bullet Chart", - "type": "String", - }, + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "OPAvailableFalseAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "OPAvailableNullAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "EnableEditAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "CreateWithSalesOrderType", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrderType", + "type": "Edm.String", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", + "isCollection": false, + "isEntitySet": false, + "name": "OrganizationDivision", + "type": "Edm.String", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", + "isCollection": false, + "isEntitySet": false, + "name": "DistributionChannel", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "FacetFormAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", + "isCollection": false, + "isEntitySet": false, + "name": "ShippingCondition", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "draftActivate", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "draftEdit", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/PreserveChanges", + "isCollection": false, + "isEntitySet": false, + "name": "PreserveChanges", + "type": "Edm.Boolean", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "ReturnInProcess()", + "isBound": false, + "isFunction": false, + "name": "ReturnInProcess", + "parameters": Array [], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "UnboundAction()", + "isBound": false, + "isFunction": false, + "name": "UnboundAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "UnboundAction()/MessageText", + "isCollection": false, + "isEntitySet": false, + "name": "MessageText", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "", + }, + ], + "_annotations": Object { + "annoFile": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "in/editActionIsEnabled", + "type": "Path", }, - Object { - "qualifier": "CreditLimitChart", - "record": Object { + }, + ], + "target": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ + Object { + "collection": Array [ + Object { "propertyValues": Array [ Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Bullet", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", + "name": "Label", "value": Object { - "String": "Credit Exposure", + "String": "Change Order Type", "type": "String", }, }, Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#CustomerCreditExposureAmount", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", + "name": "Action", "value": Object { - "String": "Credit Limit Consumption", + "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "HarveyBallCriticalityPath", - "record": Object { + Object { "propertyValues": Array [ Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Pie", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", + "name": "Label", "value": Object { - "String": "Testing HarveyBall MicroChart", + "String": "Unbound Action", "type": "String", }, }, Object { - "name": "MeasureAttributes", + "name": "Action", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#HarveyBallValuePath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", + "String": "com.c_salesordermanage_sd/UnboundAction", + "type": "String", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ Object { - "name": "Measures", + "name": "Label", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Return In Process", + "type": "String", }, }, Object { - "name": "Title", + "name": "Action", "value": Object { - "String": "Credit Limit HarveyBall MicroChart", + "String": "com.c_salesordermanage_sd/ReturnInProcess", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "RadialCriticalityPath", - "record": Object { + Object { "propertyValues": Array [ Object { - "name": "ChartType", + "name": "SemanticObject", "value": Object { - "EnumMember": "UI.ChartType/Donut", - "type": "EnumMember", + "String": "SalesOrder", + "type": "String", }, }, Object { - "name": "Description", + "name": "Action", "value": Object { - "String": "Testing Radial MicroChart", + "String": "manageInline", "type": "String", }, }, Object { - "name": "MeasureAttributes", + "name": "Label", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#RadialValuePath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", + "String": "IBN", + "type": "String", }, }, Object { - "name": "Measures", + "name": "RequiresContext", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": false, + "type": "Bool", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ Object { - "name": "Title", + "name": "SemanticObject", "value": Object { - "String": "Credit Limit Radial MicroChart", + "String": "Action", "type": "String", }, }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "RadialCriticalityPathHidden", - "record": Object { - "propertyValues": Array [ Object { - "name": "ChartType", + "name": "Action", "value": Object { - "EnumMember": "UI.ChartType/Donut", - "type": "EnumMember", + "String": "toappnavsampleParam", + "type": "String", }, }, Object { - "name": "Description", + "name": "Label", "value": Object { - "String": "Testing Radial MicroChart Hidden", + "String": "IBN with context", "type": "String", }, }, Object { - "name": "MeasureAttributes", + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Mapping", "value": Object { "Collection": Array [ Object { "propertyValues": Array [ Object { - "name": "Measure", + "name": "LocalProperty", "value": Object { - "PropertyPath": "CustomerCreditExposureAmountHidden", + "PropertyPath": "Delivered", "type": "PropertyPath", }, }, Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", + "name": "SemanticObjectProperty", "value": Object { - "AnnotationPath": "@UI.DataPoint#RadialValuePathHidden", - "type": "AnnotationPath", + "String": "Completed", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + "type": undefined, }, ], "type": "Collection", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ Object { - "name": "Measures", + "name": "Value", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmountHidden", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Path": "ID", + "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ Object { - "name": "Title", + "name": "Value", "value": Object { - "String": "Credit Limit Radial MicroChart Hidden", - "type": "String", + "Path": "ImageUrl", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "CustomerCreditExposureAmount", - "record": Object { + Object { "propertyValues": Array [ Object { - "name": "CriticalityCalculation", + "name": "Target", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "AcceptanceRangeHighValue", - "value": Object { - "Path": "AcceptanceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "AcceptanceRangeLowValue", - "value": Object { - "Path": "AcceptanceRangeLow", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeHighValue", - "value": Object { - "Path": "DeviationRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeLowValue", - "value": Object { - "Path": "DeviationRangeLow", - "type": "Path", - }, - }, - Object { - "name": "ImprovementDirection", - "value": Object { - "EnumMember": "UI.ImprovementDirectionType/Maximize", - "type": "EnumMember", - }, - }, - Object { - "name": "ToleranceRangeHighValue", - "value": Object { - "Path": "ToleranceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "ToleranceRangeLowValue", - "value": Object { - "Path": "ToleranceRangeLow", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", - }, - "type": "Record", + "AnnotationPath": "@UI.FieldGroup#multipleActionFields", + "type": "AnnotationPath", }, }, Object { - "name": "Description", + "name": "Label", "value": Object { - "String": "Bullet Micro Chart", + "String": "Sold-To Party", "type": "String", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "annotations": Array [ Object { - "name": "ForecastValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "Path": "CustomerCreditForecast", + "Path": "_ShipToParty/isHidden", "type": "Path", }, }, + ], + "propertyValues": Array [ Object { - "name": "MaximumValue", + "name": "Value", "value": Object { - "Decimal": 7000, - "type": "Decimal", + "Path": "SalesOrderType", + "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ Object { - "name": "MinimumValue", + "name": "Value", "value": Object { - "Decimal": 200, - "type": "Decimal", + "Path": "OverallSDProcessStatus", + "type": "Path", }, }, Object { - "name": "TargetValue", + "name": "Criticality", "value": Object { - "Path": "CustomerCreditLimitAmount", + "Path": "StatusCriticality", "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "String": "Exposure Amount", - "type": "String", + "Path": "Delivered", + "type": "Path", }, }, + ], + "propertyValues": Array [ Object { "name": "Value", "value": Object { - "Path": "CustomerCreditExposureAmount", + "Path": "TotalNetAmount", "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "annotations": Array [ + Object { + "qualifier": "Messages", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": undefined, + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SAP__Messages", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - Object { - "qualifier": "HarveyBallValuePath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "CustomerIsAboveThreshold", - "type": "Path", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "SoldToChangeSalesAreaShipTo", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - Object { - "name": "MaximumValue", - "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", - }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DistributionChannel", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OrganizationDivision", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "TransactionCurrency", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "CustomerPaymentTerms", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "IncotermsClassification", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "IncotermsVersion", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "IncotermsLocation1", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "IncotermsLocation2", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "CompleteDeliveryIsDefined", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SetBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SetDeliveryBlockIsHidden", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - Object { - "name": "Value", - "value": Object { - "Path": "CustomerCreditExposureAmount", - "type": "Path", - }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": undefined, + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_CreditLimitDetails", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + ], + "type": undefined, }, - Object { - "qualifier": "RadialValuePath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "CustomerIsAboveThreshold", - "type": "Path", - }, - }, - Object { - "name": "TargetValue", - "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "ItemCreationOrDeletion", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", }, - Object { - "name": "Value", - "value": Object { - "Path": "CustomerCreditExposureAmount", - "type": "Path", - }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + ], + "type": undefined, }, - Object { - "qualifier": "RadialValuePathHidden", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "CustomerIsAboveThreshold", - "type": "Path", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "ItemUpdateAnyField", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", }, - Object { - "name": "TargetValue", - "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", - }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", }, - Object { - "name": "Value", - "value": Object { - "Path": "CustomerCreditExposureAmountHidden", - "type": "Path", - }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, + }, + ], + "type": undefined, }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "ShipToPartyChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_ShipToParty/BusinessPartner", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "SalesOrder.SalesOrderManageType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": "Messages", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": undefined, + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SAP__Messages", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sold-to Party", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "PricingDateChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "PricingDate", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "email", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "type", - "value": Object { - "EnumMember": "Communication.ContactInformationType/work", - "type": "EnumMember", - }, - }, - Object { - "name": "address", - "value": Object { - "Path": "EmailAddress", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", - }, - ], - "type": "Collection", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "PlantChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Plant", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - Object { - "name": "fn", - "value": Object { - "Path": "CustomerName", - "type": "Path", - }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Plant", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "ShippingPoint", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "Route", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - Object { - "name": "tel", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "type", - "value": Object { - "EnumMember": "Communication.PhoneType/fax", - "type": "EnumMember", - }, - }, - Object { - "name": "uri", - "value": Object { - "Path": "InternationalPhoneNumber", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.Communication.v1.PhoneNumberType", - }, - ], - "type": "Collection", - }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.Communication.v1.ContactType", - }, - "term": "com.sap.vocabularies.Communication.v1.Contact", + }, + ], + "type": undefined, }, - Object { - "qualifier": "SoldToQuickView", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PostalCode", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CityName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Country", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "type": "Collection", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "StorageLocationChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "StorageLocation", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "collection": Array [ + }, Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CustomerName", - "type": "Path", + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + ], + "type": "Collection", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", + "type": undefined, }, - Object { - "collection": Array [ + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "ShippingPointChange", + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ShippingPoint", + "type": "PropertyPath", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Address", - "type": "String", + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Route", + "type": "PropertyPath", }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@Communication.Contact", - "type": "AnnotationPath", + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + ], + "type": "Collection", + }, }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "RouteChange", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Address", - "type": "String", + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Route", + "type": "PropertyPath", }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", - "type": "AnnotationPath", + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + ], + "type": "Collection", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.QuickViewFacets", - }, - ], - "target": "com.c_salesordermanage_sd.Customer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Customer", - "type": "String", - }, + "type": undefined, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "RequestedQuantityChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedQuantity", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": undefined, + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "RequestedDeliveryDateChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedDeliveryDate", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Customer Number", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "SalesOrder.SalesOrderItemType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CustomerName", - "type": "Path", - }, + "term": "com.sap.vocabularies.UI.v1.DataFieldDefault", + }, + ], + "target": "SalesOrder.SalesOrderItemType/NetAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedQuantity", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "target": "com.c_salesordermanage_sd.Customer/Customer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Customer", - "type": "String", - }, + "term": "com.sap.vocabularies.UI.v1.DataFieldDefault", + }, + ], + "target": "SalesOrder.SalesOrderItemType/RequestedQuantity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "HeaderBillingBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallBillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Name", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Name of Customer", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/CustomerName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "HeaderBillingBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallBillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - ], - "target": "com.c_salesordermanage_sd.Customer/Delivered", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Name 1", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "DeliveryBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallDeliveryBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveDeliveryBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DeliveryBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DeliveryBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Name", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetDeliveryBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "DeliveryBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallDeliveryBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveDeliveryBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DeliveryBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DeliveryBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Name 1", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveDeliveryBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ItemBillingBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "_SalesOrder/OverallBillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "_SalesOrder/BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlockItem", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ItemBillingBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "_SalesOrder/OverallBillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "_SalesOrder/BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, }, - ], - "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Name 2", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlockItem", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Deletable", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.DeleteRestrictionsType", }, - ], - "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + }, + ], + "serviceFile": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Value Help for Billing Block Reason", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Post. Code", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Block", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Postal Code", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Billing Block", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "City Postal Code", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "BillingBlockReason_Text", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.Customer/PostalCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "City", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.Customer/CityName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Ctr", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Materials By Sales Org and Distr Channel", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SOrg.", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Key", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.Customer/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Telephone Number", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DChl", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Complete Number: Dialling Code+Number+Extension", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Email Address", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.Customer/EmailAddress", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer Payment Terms", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Material Number", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.CustomerPaymentTerms", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "PayT", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "MaterialName", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Payment Terms", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "RQ Unit", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Terms of Payment Key", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Unit", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CustomerPaymentTerms_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Requested Quantity Unit", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Base Unit of Measure", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Description of terms of payment", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer Purchase Order Type", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Unit", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "POtyp", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Purchase Order Type", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Types", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Customer Purchase Order Type", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CustomerPurchaseOrderType_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Type", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrderType_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Block Reason", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DB", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Language Key", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Block", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Default Delivery Block", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DeliveryBlockReason_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Delivery Block Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Block Desc.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delv. Due List Block", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Delivery Due List Block", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Priority", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryPriority", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DPrio", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Priority", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DeliveryPriority_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "AlternativeUnit", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "AlternativeUnit_Text", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "UoM Text", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DistributionChannel_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Numerator", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Denominator", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Bullet Chart", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Manage Sales Order Header Partner", - "type": "String", - }, + }, + Object { + "qualifier": "CreditLimitChart", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Bullet", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Credit Exposure", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#CustomerCreditExposureAmount", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit Consumption", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "email", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "type", - "value": Object { - "EnumMember": "Communication.ContactInformationType/work", - "type": "EnumMember", - }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "HarveyBallCriticalityPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Pie", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing HarveyBall MicroChart", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", }, - Object { - "name": "address", - "value": Object { - "Path": "BusinessPartner", - "type": "Path", - }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", - }, - ], - "type": "Collection", - }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#HarveyBallValuePath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", }, - Object { - "name": "fn", - "value": Object { - "Path": "FullName", - "type": "Path", - }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.Communication.v1.ContactType", - }, - "term": "com.sap.vocabularies.Communication.v1.Contact", + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit HarveyBall MicroChart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, - Object { - "qualifier": "Progress2", - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetValue", - "value": Object { - "Int": 100, - "type": "Int", - }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "RadialCriticalityPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Donut", + "type": "EnumMember", }, - Object { - "name": "Title", - "value": Object { - "String": "Progress", - "type": "String", - }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Radial MicroChart", + "type": "String", }, - Object { - "name": "Value", - "value": Object { - "Path": "Progress", - "type": "Path", - }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#RadialValuePath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Progress", - "type": "EnumMember", - }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit Radial MicroChart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, - Object { - "qualifier": "Rating2", - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetValue", - "value": Object { - "Int": 5, - "type": "Int", - }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "RadialCriticalityPathHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Donut", + "type": "EnumMember", }, - Object { - "name": "Title", - "value": Object { - "String": "Rating", - "type": "String", - }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Radial MicroChart Hidden", + "type": "String", }, - Object { - "name": "Value", - "value": Object { - "Path": "Rating", - "type": "Path", - }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmountHidden", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#RadialValuePathHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Rating", - "type": "EnumMember", - }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmountHidden", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit Radial MicroChart Hidden", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, - Object { - "qualifier": "multipleActionFields", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "CustomerCreditExposureAmount", + "record": Object { + "propertyValues": Array [ + Object { + "name": "CriticalityCalculation", + "value": Object { + "Record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PartnerFunction", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "AcceptanceRangeHighValue", + "value": Object { + "Path": "AcceptanceRangeHigh", + "type": "Path", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating2", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + "name": "AcceptanceRangeLowValue", + "value": Object { + "Path": "AcceptanceRangeLow", + "type": "Path", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "OPAvailable (Parent)", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ParentBasedAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "name": "DeviationRangeHighValue", + "value": Object { + "Path": "DeviationRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeLowValue", + "value": Object { + "Path": "DeviationRangeLow", + "type": "Path", + }, + }, + Object { + "name": "ImprovementDirection", + "value": Object { + "EnumMember": "UI.ImprovementDirectionType/Maximize", + "type": "EnumMember", + }, + }, + Object { + "name": "ToleranceRangeHighValue", + "value": Object { + "Path": "ToleranceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "ToleranceRangeLowValue", + "value": Object { + "Path": "ToleranceRangeLow", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", }, + "type": "Record", }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "name": "Description", + "value": Object { + "String": "Bullet Micro Chart", + "type": "String", + }, + }, + Object { + "name": "ForecastValue", + "value": Object { + "Path": "CustomerCreditForecast", + "type": "Path", + }, + }, + Object { + "name": "MaximumValue", + "value": Object { + "Decimal": 7000, + "type": "Decimal", + }, + }, + Object { + "name": "MinimumValue", + "value": Object { + "Decimal": 200, + "type": "Decimal", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Exposure Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, - Object { - "collection": Array [ + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "HarveyBallValuePath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Dummy Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ChangeOrderStatus", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "name": "Criticality", + "value": Object { + "Path": "CustomerIsAboveThreshold", + "type": "Path", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#multipleActionFields", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Partner function", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + "name": "MaximumValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@Communication.Contact", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Supplier", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmount", + "type": "Path", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", - }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "RadialValuePath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "CustomerIsAboveThreshold", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Partner UUID", - "type": "String", - }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "RadialValuePathHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "CustomerIsAboveThreshold", + "type": "Path", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmountHidden", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/ID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Partner function", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "ID", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Progress", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/Progress", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Address", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/AddressID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Full Name", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/FullName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Telephone", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Status", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Postal Code", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Key", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/isVerified", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sold-to Party", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/owner/isVerified", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "email", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "type", + "value": Object { + "EnumMember": "Communication.ContactInformationType/work", + "type": "EnumMember", + }, + }, + Object { + "name": "address", + "value": Object { + "Path": "EmailAddress", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "fn", + "value": Object { + "Path": "CustomerName", + "type": "Path", + }, + }, + Object { + "name": "tel", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "type", + "value": Object { + "EnumMember": "Communication.PhoneType/fax", + "type": "EnumMember", + }, + }, + Object { + "name": "uri", + "value": Object { + "Path": "InternationalPhoneNumber", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.PhoneNumberType", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.ContactType", }, - ], - "target": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": "AddressData", - "record": Object { + "term": "com.sap.vocabularies.Communication.v1.Contact", + }, + Object { + "collection": Array [ + Object { "propertyValues": Array [ Object { - "name": "Data", + "name": "Label", + "value": Object { + "String": "Header", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "HeaderInfo", + "type": "String", + }, + }, + Object { + "name": "Facets", "value": Object { "Collection": Array [ Object { @@ -69728,48243 +70007,37150 @@ RawMetadataInstance { ], "propertyValues": Array [ Object { - "name": "Label", + "name": "ID", "value": Object { - "String": "Ship To Party", + "String": "GeneralInfo", "type": "String", }, }, - Object { - "name": "Value", - "value": Object { - "Path": "BusinessPartner", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "StreetName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ Object { "name": "Label", "value": Object { - "String": "google Link", - "type": "String", - }, - }, - Object { - "name": "Url", - "value": Object { - "String": "https://www.google.com", + "String": "General Information", "type": "String", }, }, Object { - "name": "Value", + "name": "Facets", "value": Object { - "String": "Google Maps", - "type": "String", + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Adress", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "Adress", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Contact", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "Partner", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "type": "Collection", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataFieldWithUrl", + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "HouseNumber", - "type": "Path", - }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": "SoldToQuickView", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PostalCode", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CityName", + "type": "Path", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PostalCode", - "type": "Path", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Country", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CityName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Value", + "value": Object { + "Path": "CustomerName", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Country", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Value", + "value": Object { + "Path": "Customer", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "TypeName", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Customers", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Customer", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CustomerName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OrganizationBPName1", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OrganizationBPName2", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "BusinessPartnerImageURL", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer", - "type": "String", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PostalCode", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Customer Number", - "type": "String", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CityName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Country", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "InternationalPhoneNumber", + "type": "Path", }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "SoldToParty", - "type": "String", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "EmailAddress", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_ShipToPartyVH/CustomerName", - "type": "Path", + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "record": Object { + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { "propertyValues": Array [ Object { - "name": "CollectionPath", + "name": "Value", "value": Object { - "String": "Customer", + "Path": "Customer", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Address", "type": "String", }, }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@Communication.Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "propertyValues": Array [ Object { "name": "Label", "value": Object { - "String": "Ship-to Party", + "String": "Address", "type": "String", }, }, Object { - "name": "Parameters", + "name": "Target", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "BusinessPartner", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName1", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName2", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "BusinessPartnerImageURL", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "PostalCode", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CityName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "InternationalPhoneNumber", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "EmailAddress", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", + "type": "AnnotationPath", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Postal Code", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "City", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Is Hidden", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Key", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Street", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "House Number", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.QuickViewFacets", + }, + Object { + "collection": Array [ + Object { + "PropertyPath": "CustomerName", + "type": "PropertyPath", }, - }, - Object { - "annotations": Array [ + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.SelectionFields", + }, + ], + "target": "com.c_salesordermanage_sd.Customer", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "name": "Searchable", "value": Object { - "EnumMember": "UI.TextArrangementType/TextOnly", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DistributionChannel_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel Description", - "type": "String", - }, + "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/Customer", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Customer", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Organization Division", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dv", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Customer Number", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "CustomerName", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/Customer", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Customer", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Name", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Name of Customer", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "annotations": Array [ + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "name": "CollectionPath", "value": Object { - "EnumMember": "UI.TextArrangementType/TextLast", - "type": "EnumMember", + "String": "Customer", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Customer", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "CustomerName", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "CityName", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CityName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Country", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "EmailAddress", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "EmailAddress", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + ], + "type": "Collection", }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrganization_Text", - "type": "Path", - }, + "type": "com.sap.vocabularies.Common.v1.ValueListType", }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Classification", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.Customer/CustomerName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Status", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "IncoT", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/Delivered", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Name 1", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Name", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Name 1", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Incoterms (Part 1)", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "IncotermsClassification_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Name 2", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Cty", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Post. Code", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Location Mandatory", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Postal Code", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Location is mandatory", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "City Postal Code", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Version", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/PostalCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "City", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.IncotermsVersion", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "IncoV", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/CityName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Ctr", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms version", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Country Key", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "IncotermsVersion_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/Country", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Telephone Number", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Complete Number: Dialling Code+Number+Extension", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.Material", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Email Address", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Material_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Material/Material", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Is Hidden", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Material/isHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/EmailAddress", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer Payment Terms", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "PayT", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.Material/Material_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Group", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.MaterialGroup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Prd Group", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Payment Terms", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Terms of Payment Key", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Product Group", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "CustomerPaymentTerms_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "MaterialGroup_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Product Group Desc.", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Description of terms of payment", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Product Group Description", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer Purchase Order Type", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "POtyp", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.OrganizationDivision", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dv", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Purchase Order Type", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Customer Purchase Order Type", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Division_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "CustomerPurchaseOrderType_Text", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.OrganizationDivision/Division", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Billing Block Status", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Block Reason", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallBillingBlockStatus_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DB", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Delivery Block Status", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Block", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallDeliveryBlockStatus_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Default Delivery Block", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DeliveryBlockReason_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Status Description", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Delivery Block Description", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall SD Process Status", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Block Desc.", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.OverallSDProcessStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Status", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallSDProcessStatus_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Status Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delv. Due List Block", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "SD Document Reason", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Delivery Due List Block", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SDDocumentReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "OrdRs", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Priority", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryPriority", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DPrio", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Order Reason", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Order Reason (Reason for the Business Transaction)", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Priority", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SDDocumentReason_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DeliveryPriority_Text", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales District", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesDistrict", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SDst", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DChl", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales District", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesDistrict_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DistributionChannel_Text", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "District name", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Name of the district", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Manage Sales Order Header Partner", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Group", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "email", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "type", + "value": Object { + "EnumMember": "Communication.ContactInformationType/work", + "type": "EnumMember", + }, + }, + Object { + "name": "address", + "value": Object { + "Path": "BusinessPartner", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "fn", + "value": Object { + "Path": "FullName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.ContactType", }, - ], - "target": "com.c_salesordermanage_sd.SalesGroup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SGrp", - "type": "String", - }, + "term": "com.sap.vocabularies.Communication.v1.Contact", + }, + Object { + "qualifier": "Progress2", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 100, + "type": "Int", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Progress", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Progress", + "type": "Path", + }, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Progress", + "type": "EnumMember", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "Rating2", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 5, + "type": "Int", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", + }, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Rating", + "type": "EnumMember", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Group", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesGroup_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Group Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Office", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOffice", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SOff.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Office", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOffice_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Office Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Manage Sales Order Item (Transacl Procg)", - "type": "String", - }, - }, - Object { - "qualifier": "AreaMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Area", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Area Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#AreaMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Area Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "BarStackedPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/BarStacked", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Stacked Bar Chart", - "type": "String", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#BarStackedPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Stacked Bar Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "ColumnMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Column", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Column Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#ColumnMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Column Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "ComparisonPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Bar", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Comparison Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#ComparisonPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Comparison Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "LineMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Line", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Line Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineValueCriticality", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineTargetCriticality", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Line Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "LineMaxPathHidden", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Line", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Line Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmountHidden", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineValueCriticalityHidden", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineTargetCriticalityHidden", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmountHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Line Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "AreaMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "CriticalityCalculation", - "value": Object { - "Record": Object { + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "multipleActionFields", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { "propertyValues": Array [ Object { - "name": "AcceptanceRangeHighValue", - "value": Object { - "Path": "AcceptanceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "AcceptanceRangeLowValue", - "value": Object { - "Path": "AcceptanceRangeLow", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeHighValue", - "value": Object { - "Path": "DeviationRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeLowValue", + "name": "Value", "value": Object { - "Path": "DeviationRangeLow", + "Path": "PartnerFunction", "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ Object { - "name": "ImprovementDirection", + "name": "Target", "value": Object { - "EnumMember": "UI.ImprovementDirectionType/Target", - "type": "EnumMember", + "AnnotationPath": "@UI.DataPoint#Rating2", + "type": "AnnotationPath", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "propertyValues": Array [ Object { - "name": "ToleranceRangeHighValue", + "name": "Label", "value": Object { - "Path": "ToleranceRangeHigh", - "type": "Path", + "String": "Change Order Status (Parent)", + "type": "String", }, }, Object { - "name": "ToleranceRangeLowValue", + "name": "Action", "value": Object { - "Path": "ToleranceRangeLow", - "type": "Path", + "String": "com.c_salesordermanage_sd.ParentBasedAction", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "type": "Record", - }, + ], + "type": "Collection", }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ Object { - "name": "Description", + "name": "Label", "value": Object { - "String": "Area Micro Chart", + "String": "Dummy Action", "type": "String", }, }, Object { - "name": "TargetValue", - "value": Object { - "Path": "TargetAmount", - "type": "Path", - }, - }, - Object { - "name": "Title", + "name": "Action", "value": Object { - "String": "Data", + "String": "com.c_salesordermanage_sd.ChangeOrderStatus", "type": "String", }, }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "BarStackedPath", - "record": Object { + Object { "propertyValues": Array [ Object { - "name": "Criticality", + "name": "Target", "value": Object { - "Path": "Criticality", - "type": "Path", + "AnnotationPath": "@UI.FieldGroup#multipleActionFields", + "type": "AnnotationPath", }, }, Object { - "name": "Title", + "name": "Label", "value": Object { - "String": "Net Amount", + "String": "Partner function", "type": "String", }, }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "ColumnMaxPath", - "record": Object { + Object { "propertyValues": Array [ Object { - "name": "CriticalityCalculation", + "name": "SemanticObject", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "AcceptanceRangeHighValue", - "value": Object { - "Path": "AcceptanceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "AcceptanceRangeLowValue", - "value": Object { - "Path": "AcceptanceRangeLow", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeHighValue", - "value": Object { - "Path": "DeviationRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeLowValue", - "value": Object { - "Path": "DeviationRangeLow", - "type": "Path", - }, - }, - Object { - "name": "ImprovementDirection", - "value": Object { - "EnumMember": "UI.ImprovementDirectionType/Maximize", - "type": "EnumMember", - }, - }, - Object { - "name": "ToleranceRangeHighValue", - "value": Object { - "Path": "ToleranceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "ToleranceRangeLowValue", - "value": Object { - "Path": "ToleranceRangeLow", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", - }, - "type": "Record", + "String": "SalesOrder", + "type": "String", }, }, Object { - "name": "Description", + "name": "Action", "value": Object { - "String": "Column Micro Chart", + "String": "manageInline", "type": "String", }, }, Object { - "name": "Title", + "name": "Label", "value": Object { - "String": "Data", + "String": "IBN", "type": "String", }, }, Object { - "name": "Value", + "name": "RequiresContext", "value": Object { - "Path": "NetAmount", - "type": "Path", + "Bool": false, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "ComparisonPath", - "record": Object { + Object { "propertyValues": Array [ Object { - "name": "Criticality", + "name": "Target", "value": Object { - "Path": "Criticality", - "type": "Path", + "AnnotationPath": "@Communication.Contact", + "type": "AnnotationPath", }, }, Object { - "name": "Title", + "name": "Label", "value": Object { - "String": "Net Amount", + "String": "Supplier", "type": "String", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "propertyValues": Array [ Object { "name": "Value", "value": Object { - "Path": "NetAmount", + "Path": "BusinessPartner", "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineTargetCriticality", - "record": Object { + Object { "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "EnumMember": "UI.CriticalityType/Neutral", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Target Amount Line", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Target Amount", - "type": "String", - }, - }, Object { "name": "Value", "value": Object { - "Path": "TargetAmount", + "Path": "FullName", "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineTargetCriticalityHidden", - "record": Object { + Object { "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "EnumMember": "UI.CriticalityType/Neutral", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Target Amount Line", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Target Amount", - "type": "String", - }, - }, Object { "name": "Value", "value": Object { - "Path": "TargetAmount", + "Path": "isVerified", "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineValueCriticality", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "EnumMember": "UI.CriticalityType/Positive", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Net Amount Line", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", }, - Object { - "qualifier": "LineValueCriticalityHidden", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "EnumMember": "UI.CriticalityType/Positive", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Net Amount Hidden Line", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Net Amount Hidden", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmountHidden", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", + "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Partner UUID", + "type": "String", }, - Object { - "collection": Array [ + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/ID", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Partner function", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "ID", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/Rating", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Progress", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/Progress", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Address", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/AddressID", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Full Name", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/FullName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Telephone", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Postal Code", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Country Key", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/Country", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsActionCritical", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/isVerified", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/owner/isVerified", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", + }, + Object { + "annotations": Array [ + Object { + "qualifier": "AddressData", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Item Information", - "type": "String", + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Ship To Party", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "BusinessPartner", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.Identification", - "type": "AnnotationPath", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "StreetName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "annotations": Array [ - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "message", - "value": Object { - "String": "UI.HEADERINFO: TypeNamePlural is mandatory", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, - }, - Object { - "name": "severity", - "value": Object { - "String": "error", - "type": "String", + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "FLP", + "type": "String", + }, }, - }, - ], - "type": "Org.OData.Core.V1.MessageType", - }, - ], - "qualifier": undefined, - "term": "Org.OData.Core.V1.Messages", - }, - ], - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Title", - "value": Object { - "Record": Object { + Object { + "name": "Url", + "value": Object { + "String": "http://shell.example", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "String": "Shell Home", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldWithUrl", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], "propertyValues": Array [ Object { "name": "Value", "value": Object { - "Path": "SalesOrderItem", + "Path": "HouseNumber", "type": "Path", }, }, ], "type": "com.sap.vocabularies.UI.v1.DataField", }, - "type": "Record", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PostalCode", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CityName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Country", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Customer Number", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "qualifier": "customer", + "term": "com.sap.vocabularies.Common.v1.SemanticObject", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ Object { - "name": "TypeName", + "name": "LocalProperty", "value": Object { - "String": "SalesOrderItem", - "type": "String", + "PropertyPath": "SoldToParty", + "type": "PropertyPath", }, }, Object { - "name": "TypeNamePlural", + "name": "SemanticObjectProperty", "value": Object { - "String": "Sales Order Items", + "String": "SoldToParty", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Identification Form Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.IdentificationFormAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItem", - "type": "Path", - }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalProperty", + "value": Object { + "PropertyPath": "BusinessPartner", + "type": "PropertyPath", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Material", - "type": "Path", - }, + }, + Object { + "name": "SemanticObjectProperty", + "value": Object { + "String": "Customer", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", + }, + ], + "qualifier": "customer", + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_ShipToPartyVH/CustomerName", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "RequestedQuantity", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "CollectionPath", + "value": Object { + "String": "Customer", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Label", + "value": Object { + "String": "Ship-to Party", + "type": "String", + }, }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "_Material/isHidden", - "type": "Path", + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "BusinessPartner", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItem", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName1", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "HigherLevelItem", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName2", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "BusinessPartnerImageURL", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Material", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "PostalCode", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CityName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "RequestedQuantity", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "InternationalPhoneNumber", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItemCategory", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "EmailAddress", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "RequestedDeliveryDate", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "View Return Status", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/ReturnInProcess", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Dummy Bound Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.DummyBoundAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + ], + "type": "Collection", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", + "type": "com.sap.vocabularies.Common.v1.ValueListType", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Sortorder", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Property", - "value": Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - }, - Object { - "name": "Descending", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SortOrderType", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", - }, - "term": "com.sap.vocabularies.UI.v1.PresentationVariant", + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Postal Code", + "type": "String", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order UUID", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "City", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/ID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Is Hidden", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Country Key", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Higher-Level Item", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/Country", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Street", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item Category", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "House Number", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_ItemCategory/SalesDocumentItemCategory_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "SalesOrderItemCategory", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Document Item Category", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrderItemCategory", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesDocumentItemCategory", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesDocumentItemCategory_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ScheduleLineIsAllowed", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DChl", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "FieldControlType for Items Table", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "Path": "fieldControlType_item", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextOnly", + "type": "EnumMember", + }, }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DistributionChannel_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_Material/Material_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "C_MaterialBySlsOrgDistrChnl", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Materials for Manage Sales Order", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Material", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Material", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "RequestedQuantityUnit", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "RequestedQuantityUnit", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "MaterialName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Organization Division", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/Material", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dv", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Requested Quantity", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.Unit", - "value": Object { - "Path": "RequestedQuantityUnit", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "Path": "fieldControlType_item", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Requested Qty Unit", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_RequestedQuantityUnit/UnitOfMeasure_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "C_ProductUnitsOfMeasureVH", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Requested Quantity Units", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "RequestedQuantityUnit", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "AlternativeUnit", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Material", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Product", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "AlternativeUnit_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "QuantityNumerator", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "QuantityDenominator", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextLast", + "type": "EnumMember", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrganization_Text", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Pricing Date", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision/SalesOrganization", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Value", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextLast", + "type": "EnumMember", + }, }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrganization_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization Description", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Value", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization Currency", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Company Code", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Intercompany Billing Customer", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Classification", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Target Value", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "IncoT", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/isVerified", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Incoterms (Part 1)", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Requested Quantity", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "IncotermsClassification_Text", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Document Item Category", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ItCa", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Cty", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item Category", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Sales Document Item Category", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Location Mandatory", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesDocumentItemCategory", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Location is mandatory", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Version", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsVersion", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "IncoV", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SchAl", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms version", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sched.lines allowed", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "IncotermsVersion_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Schedule lines allowed", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Manage Sales Order", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "collection": Array [ + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Material", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Material_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Material/Material", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Is Hidden", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Material/isHidden", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Material/Material_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material category", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCategory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "ID", - "type": "PropertyPath", + "name": "Deletable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticKey", + "type": "Org.OData.Capabilities.V1.DeleteRestrictionsType", }, - Object { - "qualifier": "ItemCreationOrDeletion", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Updatable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.UpdateRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Category", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCategory/Category", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Category Code", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCategory/Category_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material country", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCountry", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Country Code", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCountry/Country", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Fabrication Country", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCountry/Country_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Details", + "type": "String", + }, + }, + Object { + "qualifier": "MaterialDetailsModelYearChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ModelYear", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "WarrantyYear", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ItemMaterialChange", - "record": Object { "propertyValues": Array [ Object { - "name": "SourceProperties", + "name": "Label", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_Item/Material", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Material Information", + "type": "String", }, }, Object { - "name": "TargetEntities", + "name": "Target", "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + "AnnotationPath": "@UI.Identification", + "type": "AnnotationPath", }, }, Object { - "name": "TargetProperties", + "name": "ID", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "MaterialDetailsFacet", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ItemRequestedQuantityChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_Item/RequestedQuantity", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, + Object { + "annotations": Array [ Object { - "name": "TargetEntities", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, + ], + "propertyValues": Array [ Object { - "name": "TargetProperties", + "name": "Label", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Material Reviews", + "type": "String", }, }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ShipToPartyChange", - "record": Object { - "propertyValues": Array [ Object { - "name": "SourceProperties", + "name": "ID", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_ShipToParty/BusinessPartner", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "MaterialRatingsFacet", + "type": "String", }, }, Object { - "name": "TargetEntities", + "name": "Target", "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + "AnnotationPath": "_MaterialRatings/@UI.LineItem", + "type": "AnnotationPath", }, }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "SoldToChangeSalesAreaShipTo", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", + "name": "Value", + "value": Object { + "Path": "material/Material_Text", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataField", }, + "type": "Record", }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", - }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", + "name": "Value", + "value": Object { + "Path": "material/Material", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataField", }, + "type": "Record", }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DistributionChannel", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OrganizationDivision", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, + }, + Object { + "name": "TypeName", + "value": Object { + "String": "Material Details", + "type": "String", }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Material Details", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", }, - Object { - "qualifier": "NetValue", - "record": Object { + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, + Object { + "collection": Array [ + Object { "propertyValues": Array [ Object { - "name": "Criticality", + "name": "Label", "value": Object { - "EnumMember": "UI.CriticalityType/Positive", - "type": "EnumMember", + "String": "Change Material Category", + "type": "String", }, }, Object { - "name": "Title", + "name": "Action", "value": Object { - "String": "Net Amount", + "String": "com.c_salesordermanage_sd.MaterialCategoryFormAction", "type": "String", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ Object { - "name": "Value", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "Path": "TotalNetAmount", - "type": "Path", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "Progress", - "record": Object { "propertyValues": Array [ Object { - "name": "TargetValue", + "name": "Value", "value": Object { - "Int": 100, - "type": "Int", + "Path": "ModelYear", + "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "String": "Progress", - "type": "String", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, + ], + "propertyValues": Array [ Object { "name": "Value", "value": Object { - "Path": "Progress", + "Path": "WarrantyYear", "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "name": "Visualization", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "EnumMember": "UI.VisualizationType/Progress", + "EnumMember": "UI.ImportanceType/High", "type": "EnumMember", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "Rating", - "record": Object { "propertyValues": Array [ Object { - "name": "TargetValue", + "name": "Value", "value": Object { - "Int": 5, - "type": "Int", + "Path": "BrandCategory", + "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "String": "Rating", - "type": "String", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, + ], + "propertyValues": Array [ Object { "name": "Value", "value": Object { - "Path": "Rating", + "Path": "FabricationCountry", "type": "Path", }, }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Rating", - "type": "EnumMember", - }, - }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Header", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "HeaderInfo", - "type": "String", - }, - }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ID", - "value": Object { - "String": "GeneralInfo", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "General Information", - "type": "String", - }, - }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Order Data", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "OrderData", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#OrderData", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Ship-To", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "AddressData", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_ShipToParty/@UI.FieldGroup#AddressData", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Terms & Conditions", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "TermsConditions", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#TermsConditions", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "Path": "High", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Business Partners", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "SalesOrderHeaderPartner", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Partner/@UI.LineItem", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Items", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "SalesOrderItems", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.LineItem", - "type": "AnnotationPath", - }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": "OrderData", - "record": Object { + }, + ], "propertyValues": Array [ Object { - "name": "Data", + "name": "Value", "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Facet Form Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.FacetFormAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SoldToParty", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PurchaseOrderByCustomer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderDate", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ShippingCondition", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OverallSDProcessStatus", - "type": "Path", - }, - }, - Object { - "name": "Criticality", - "value": Object { - "Path": "StatusCriticality", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "DescriptionFieldForOPACleanup", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "type": "Collection", + "Path": "ModelYear", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "OrgData", - "record": Object { + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], "propertyValues": Array [ Object { - "name": "Data", + "name": "Value", "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrganization", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "DistributionChannel", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationDivision", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "type": "Collection", + "Path": "WarrantyYear", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "OrgDataHeader", - "record": Object { + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], "propertyValues": Array [ Object { - "name": "Data", + "name": "Value", "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TotalNetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "type": "Collection", + "Path": "BrandCategory", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "TermsConditions", - "record": Object { + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], "propertyValues": Array [ Object { - "name": "Data", + "name": "Value", "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsClassification", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsVersion", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsLocation1", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsLocation2", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CustomerPaymentTerms", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CompleteDeliveryIsDefined", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PricingDate", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "type": "Collection", + "Path": "FabricationCountry", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "multipleActionFields", - "record": Object { + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], "propertyValues": Array [ Object { - "name": "Data", + "name": "Label", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_SoldToParty/@Communication.Contact", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - ], - "type": "Collection", + "String": "Material Details Bound Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.MaterialDetailsBoundAction", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", }, - Object { - "collection": Array [ + "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Model Year", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Sales Area", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "OrganizationalDataHeader", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#OrgData", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "CollectionPath", + "value": Object { + "String": "MaterialYears", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "NetValueDataHeader", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#NetValue", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Label", + "value": Object { + "String": "Model Year", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Contact Info", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "ContactHeader", - "type": "String", + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "ModelYear", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Model_Year", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_SoldToParty/@Communication.Contact", - "type": "AnnotationPath", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Warranty_Expiration", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + ], + "type": "Collection", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/ModelYear", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "CreditLimitConsumption", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "CreditLimitChartHeader", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#CreditLimitChart", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.Core", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Warranty Expiration", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_WarrantyYear/Warranty_Expiration", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/WarrantyYear", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Category", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_MaterialCategory/Category_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Comparison MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "ComparisonMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#ComparisonPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "CollectionPath", + "value": Object { + "String": "MaterialCategory", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Radial MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "RadialMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPathHidden", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Label", + "value": Object { + "String": "Category for the Material", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Rating Value", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "RatingHeader", - "type": "String", + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "BrandCategory", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Category", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Category_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + ], + "type": "Collection", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HeaderFacets", + "type": "com.sap.vocabularies.Common.v1.ValueListType", }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Column MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "ColumnMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#ColumnMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/BrandCategory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Fabrication Country", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_MaterialCountry/Country_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Area MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "AreaMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#AreaMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "CollectionPath", + "value": Object { + "String": "MaterialCountry", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "HarveyBall MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "HarveyBallMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#HarveyBallCriticalityPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Label", + "value": Object { + "String": "Fabrication Country for the Material", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Line MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "LineMicroChart", - "type": "String", + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "FabricationCountry", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#LineMaxPath", - "type": "AnnotationPath", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + ], + "type": "Collection", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/FabricationCountry", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/HasActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/HasDraftEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Radial MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "RadialMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPath", - "type": "AnnotationPath", + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "BrandCategory", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + ], + "type": "Collection", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Stacked Bar MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "BarStackedMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#BarStackedPath", - "type": "AnnotationPath", + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "BrandCategory", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + ], + "type": "Collection", + }, }, ], - "qualifier": "MicroCharts", - "term": "com.sap.vocabularies.UI.v1.HeaderFacets", + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Description", - "value": Object { - "Record": Object { + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Category", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_MaterialCategory/Category_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "MaterialCategory", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Category for the Material", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { "propertyValues": Array [ Object { - "name": "Value", + "name": "LocalDataProperty", "value": Object { - "Path": "SalesOrderTypeName", - "type": "Path", + "PropertyPath": "BrandCategory", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Category", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - "type": "Record", - }, - }, - Object { - "name": "ImageUrl", - "value": Object { - "Path": "ImageUrl", - "type": "Path", - }, - }, - Object { - "name": "Title", - "value": Object { - "Record": Object { + Object { "propertyValues": Array [ Object { - "name": "Value", + "name": "ValueListProperty", "value": Object { - "Path": "SalesOrder", - "type": "Path", + "String": "Category_Text", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - "type": "Record", + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/BrandCategory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Group", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialGroup", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Prd Group", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Product Group", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "MaterialGroup_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Product Group Desc.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Product Group Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Rating", + "type": "String", + }, + }, + Object { + "qualifier": "Rating", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 5, + "type": "Int", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", + }, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Rating", + "type": "EnumMember", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, + ], + "propertyValues": Array [ Object { - "name": "TypeName", + "name": "Label", "value": Object { - "String": "Sales Order", + "String": "Material Review", "type": "String", }, }, Object { - "name": "TypeNamePlural", + "name": "ID", "value": Object { - "String": "Sales Orders", + "String": "MaterialRatingsFacet", "type": "String", }, }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.Identification", + "type": "AnnotationPath", + }, + }, ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "editActionIsEnabled", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Enable Edit", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.EnableEditAction", - "type": "String", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "editActionIsDisabled", - "type": "Path", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Material Review Details", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "OPAvailable (Header)", - "type": "String", - }, + }, + Object { + "name": "ID", + "value": Object { + "String": "MaterialRatingsDetailsFacet", + "type": "String", }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ChangeOrderStatus", - "type": "String", - }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_MaterialRatingsDetails/@UI.LineItem", + "type": "AnnotationPath", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "editActionIsDisabled", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "OPAvailable (Footer)", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ChangeOrderStatus", - "type": "String", - }, - }, - Object { - "name": "Determining", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Type", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderType", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SoldToParty", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrganization", - "type": "Path", - }, + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Title", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Record", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "DistributionChannel", - "type": "Path", - }, + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "material/Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Record", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationDivision", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "TypeName", + "value": Object { + "String": "Material Rating", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PurchaseOrderByCustomer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "TypeNamePlural", + "value": Object { + "String": "Material Ratings", + "type": "String", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Type", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Unbound Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/UnboundAction", - "type": "String", - }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Current Rating", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ID", - "type": "Path", - }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.RatingFormAction", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ImageUrl", - "type": "Path", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#multipleActionFields", - "type": "AnnotationPath", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", }, - Object { - "name": "Label", - "value": Object { - "String": "Sold-To Party", - "type": "String", - }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "_ShipToParty/isHidden", - "type": "Path", - }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Rating", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderType", - "type": "Path", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OverallSDProcessStatus", - "type": "Path", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Title", + "type": "Path", }, - Object { - "name": "Criticality", - "value": Object { - "Path": "StatusCriticality", - "type": "Path", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TotalNetAmount", - "type": "Path", - }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + }, Object { - "name": "Sortorder", + "name": "Label", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Property", - "value": Object { - "PropertyPath": "SalesOrderDate", - "type": "PropertyPath", - }, - }, - Object { - "name": "Descending", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SortOrderType", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Property", - "value": Object { - "PropertyPath": "SalesOrder", - "type": "PropertyPath", - }, - }, - Object { - "name": "Descending", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SortOrderType", - }, - ], - "type": "Collection", + "String": "Rating", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", }, - "term": "com.sap.vocabularies.UI.v1.PresentationVariant", - }, - Object { - "collection": Array [ - Object { - "PropertyPath": "SalesOrder", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallSDProcessStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SalesOrderDate", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.SelectionFields", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], "propertyValues": Array [ Object { - "name": "RestrictedProperties", + "name": "Value", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "NavigationProperty", - "value": Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - }, - Object { - "name": "InsertRestrictions", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", - }, - "type": "Record", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.NavigationPropertyRestriction", - }, - ], - "type": "Collection", + "Path": "Title", + "type": "Path", }, }, ], - "type": "Org.OData.Capabilities.V1.NavigationRestrictionsType", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "term": "Org.OData.Capabilities.V1.NavigationRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "ActivationAction", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "String": "com.c_salesordermanage_sd.draftActivate", - "type": "String", + "Path": "owner/ReturnInProcess", + "type": "Path", }, }, + ], + "propertyValues": Array [ Object { - "name": "EditAction", + "name": "Label", "value": Object { - "String": "com.c_salesordermanage_sd.draftEdit", + "String": "Material Ratings Bound Action", "type": "String", }, }, Object { - "name": "PreparationAction", + "name": "Action", "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", + "String": "com.c_salesordermanage_sd.MaterialRatingsBoundAction", "type": "String", }, }, ], - "type": "com.sap.vocabularies.Common.v1.DraftRootType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftRoot", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - }, - Object { - "annotations": Array [ + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "name": "Searchable", "value": Object { - "EnumMember": "UI.TextArrangementType/TextOnly", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrder", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", - }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Return Status", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Order Type", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_Rating/Rating_Text", + "type": "Path", }, - Object { - "annotations": Array [ + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "name": "CollectionPath", "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", + "String": "Rating", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Rating for the Material", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Rating", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Rating_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_SalesOrderType/SalesOrderType_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Image", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.IsImageURL", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "type": "com.sap.vocabularies.Common.v1.ValueListType", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings/Rating", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Sold-To", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Title", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings/Title", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sold-To Party", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings/HasActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "collection": Array [ + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings/HasDraftEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "SoldToParty", + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Rating", "type": "PropertyPath", }, - }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "SoldToParty", - "type": "String", + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Rating", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", + ], + "type": "Collection", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, - Object { - "annotations": Array [ + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_Rating/Rating_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "name": "CollectionPath", "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", + "String": "Rating", + "type": "String", }, }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_SoldToParty/CustomerName", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Rating for the Material", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Rating", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Rating_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/Rating", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Rating Details", + "type": "String", + }, + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "String": "Customer", - "type": "String", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, + ], + "propertyValues": Array [ Object { - "name": "Label", + "name": "ID", "value": Object { - "String": "Sold-to Party", + "String": "Facet", "type": "String", }, }, Object { - "name": "Parameters", + "name": "Target", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName1", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName2", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "BusinessPartnerImageURL", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "PostalCode", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CityName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, + "AnnotationPath": "@UI.Identification", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "InternationalPhoneNumber", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Value", + "value": Object { + "Path": "material/Material_Text", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "EmailAddress", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Value", + "value": Object { + "Path": "material/Material", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataField", }, + "type": "Record", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Progress", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/Progress", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer Reference", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Pricing Date", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", - }, - }, - Object { - "annotations": Array [ + }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "name": "TypeName", "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", + "String": "Review Details", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Review Details", + "type": "String", }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_ShippingCondition/ShippingCondition_Text", - "type": "Path", - }, + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", }, - Object { - "qualifier": undefined, - "record": Object { + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, + Object { + "collection": Array [ + Object { "propertyValues": Array [ Object { - "name": "CollectionPath", + "name": "Label", "value": Object { - "String": "SalesOrderManage", + "String": "Change Current Comments", "type": "String", }, }, Object { - "name": "Label", + "name": "Action", "value": Object { - "String": "Shipping Condition", + "String": "com.c_salesordermanage_sd.RatingCommentsFormAction", "type": "String", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ShippingCondition", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SoldToParty", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", - }, - ], - "type": "Collection", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Complete Delivery", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_IncotermsClassification/IncotermsClassification_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { "propertyValues": Array [ Object { - "name": "CollectionPath", + "name": "Value", "value": Object { - "String": "IncotermsClassification", - "type": "String", + "Path": "CREATEDAT", + "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "String": "Incoterms Classification", - "type": "String", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, + ], + "propertyValues": Array [ Object { - "name": "Parameters", + "name": "Value", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "IncotermsClassification", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsClassification", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsClassification_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "LocationIsMandatory", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "Path": "MODIFIEDAT", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Version", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_IncotermsVersion/IncotermsVersion_Text", - "type": "Path", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "record": Object { + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], "propertyValues": Array [ Object { - "name": "CollectionPath", + "name": "Value", "value": Object { - "String": "IncotermsVersion", - "type": "String", + "Path": "MODIFIEDBY", + "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "String": "Incoterms Version", - "type": "String", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, + ], + "propertyValues": Array [ Object { - "name": "Parameters", + "name": "Value", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "IncotermsVersion", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsVersion", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsVersion_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "Path": "Comments", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "fieldControlType", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "Path": "fieldControlType", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Version 1", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Location 2", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Terms of Payment", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_CustomerPaymentTerms/CustomerPaymentTerms_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { + ], "propertyValues": Array [ Object { - "name": "CollectionPath", + "name": "Value", "value": Object { - "String": "CustomerPaymentTerms", - "type": "String", + "Path": "CREATEDAT", + "type": "Path", }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", "value": Object { - "String": "Customer Payment Terms", - "type": "String", + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, + ], + "propertyValues": Array [ Object { - "name": "Parameters", + "name": "Value", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "CustomerPaymentTerms", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerPaymentTerms", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerPaymentTerms_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "Path": "MODIFIEDAT", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Curr.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Document Currency", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "SD document currency", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Status", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_OverallSDProcessStatus/OverallSDProcessStatus_Text", - "type": "Path", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "MODIFIEDBY", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "qualifier": undefined, - "record": Object { + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], "propertyValues": Array [ Object { - "name": "CollectionPath", + "name": "Value", "value": Object { - "String": "OverallSDProcessStatus", - "type": "String", + "Path": "Comments", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", }, }, + ], + "propertyValues": Array [ Object { "name": "Label", "value": Object { - "String": "Overall SD Process Status", + "String": "Ratings Details Bound Action", "type": "String", }, }, Object { - "name": "Parameters", + "name": "Action", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "OverallSDProcessStatus", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "String": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Document Date", - "type": "String", - }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Document Type", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Comments", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/Comments", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Created At", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/CREATEDAT", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "target": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Bool": false, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Modified At", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "type": "Null", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDAT", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "target": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "editActionIsEnabled", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "editActionIsDisabled", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Modified By", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/isVerified", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDBY", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Type", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "C_NotLockedSalesOrderTypeVH", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Order Types", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasDraftEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Comments", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrderType", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrderType_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesDocumentTypeLangDepdnt", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Comments", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_SalesOrganization", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganizationCurrency", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CompanyCode", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IntercompanyBillingCustomer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Comments", + "type": "String", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_OrganizationDivision", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "OrganizationDivision", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Division_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/Comments", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material years", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialYears", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_DistributionChannel", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "DistributionChannel", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "DistributionChannel", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "DistributionChannel_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Model Year", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/_ShipToParty/isVerified", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Status", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialYears/Model_Year", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Warranty Expiration", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/_ShipToParty/isVerified", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialYears/Warranty_Expiration", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "ShippingCondition", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ShippingCondition", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ShippingCondition_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.OrganizationDivision", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dv", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Types", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Type", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Division_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrderType_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OrganizationDivision/Division", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division Description", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Document Type", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Sales Document Type Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "C", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Billing Block Status", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallBillingBlockStatus_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Indicator", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Sales document indicator (for display in TVAK only)", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Delivery Block Status", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Req.", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallDeliveryBlockStatus_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Billing Request", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Status Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Order type for request for billing", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Condition", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall SD Process Status", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.ShippingCondition", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SC", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallSDProcessStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Searchable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Status", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallSDProcessStatus_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ShippingCondition_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Status Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Shipping Conditions Description", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Point", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Rating", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "target": "com.c_salesordermanage_sd.ShippingPoint", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ShPt", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Rating", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Rating/Rating", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Point", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Shipping Point / Receiving Point", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Rating/Rating_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsActionCritical", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ShippingPoint_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.ReturnInProcess()", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "SD Document Reason", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SDDocumentReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "OrdRs", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Type", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Order Reason", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.ShippingType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ST", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Order Reason (Reason for the Business Transaction)", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SDDocumentReason_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Type", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ShippingType_Text", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.ShippingType/ShippingType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales District", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Shipping Type Description", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesDistrict", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SDst", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "target": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Message", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales District", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.UnboundAction()/MessageText", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Unit of Measure", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesDistrict_Text", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "MU", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "District name", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Internal UoM", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Name of the district", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Unit of Measurement", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "UnitOfMeasure_Text", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Group", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Measurement unit text", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesGroup", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SGrp", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "UoM Text", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Unit of Measurement Text (Maximum 30 Characters)", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Group", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesGroup_Text", + "type": "Path", }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dimen.", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Group Description", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dimension", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Office", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Dimension Key", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOffice", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SOff.", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ISO", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Office", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "ISO Code", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOffice_Text", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "ISO Code for Unit of Measurement", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Office Description", + "type": "String", }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DeR", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Decimal Rounding", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Manage Sales Order Item (Transacl Procg)", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Number of Decimal Places for Rounding", - "type": "String", - }, + }, + Object { + "qualifier": "ItemRequestedQuantityChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedQuantity", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dec", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "MaterialDetailsModelYearChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_MaterialDetails/ModelYear", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_MaterialDetails/WarrantyYear", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Decimal Places", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "AreaMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Area", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Area Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#AreaMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Area Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Number of Decimal Places for Number Display", - "type": "String", - }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "BarStackedPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/BarStacked", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Stacked Bar Chart", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#BarStackedPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Stacked Bar Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", - }, - ], - }, - "associationSets": Array [], - "associations": Array [], - "complexTypes": Array [], - "entityContainer": Object { - "_type": "EntityContainer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer", - "name": "EntityContainer", - }, - "entitySets": Array [ - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BusinessPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BusinessPartner", - "name": "BusinessPartner", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_MaterialBySlsOrgDistrChnl", - "name": "C_MaterialBySlsOrgDistrChnl", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_NotLockedSalesOrderTypeVH", - "name": "C_NotLockedSalesOrderTypeVH", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_ProductUnitsOfMeasureVH", - "name": "C_ProductUnitsOfMeasureVH", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "ColumnMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Column", + "type": "EnumMember", }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Column Chart", + "type": "String", }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#ColumnMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Column Chart", + "type": "String", }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "ComparisonPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Bar", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Comparison Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", }, - }, + ], + "type": "Collection", }, - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#ComparisonPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Comparison Chart", + "type": "String", }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "LineMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Line", + "type": "EnumMember", }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Line Chart", + "type": "String", }, - "owner": [Circular], }, - }, - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": [Circular], - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineValueCriticality", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineTargetCriticality", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Line Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "LineMaxPathHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Line", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Line Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmountHidden", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineValueCriticalityHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineTargetCriticalityHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmountHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Line Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.I_DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_DistributionChannel", - "name": "I_DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.I_OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_OrganizationDivision", - "name": "I_OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.I_SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_SalesOrganization", - "name": "I_SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "AreaMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "CriticalityCalculation", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "AcceptanceRangeHighValue", + "value": Object { + "Path": "AcceptanceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "AcceptanceRangeLowValue", + "value": Object { + "Path": "AcceptanceRangeLow", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeHighValue", + "value": Object { + "Path": "DeviationRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeLowValue", + "value": Object { + "Path": "DeviationRangeLow", + "type": "Path", + }, + }, + Object { + "name": "ImprovementDirection", + "value": Object { + "EnumMember": "UI.ImprovementDirectionType/Target", + "type": "EnumMember", + }, + }, + Object { + "name": "ToleranceRangeHighValue", + "value": Object { + "Path": "ToleranceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "ToleranceRangeLowValue", + "value": Object { + "Path": "ToleranceRangeLow", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", + }, + "type": "Record", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Area Micro Chart", + "type": "String", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "TargetAmount", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Data", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "BarStackedPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "Criticality", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "ColumnMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "CriticalityCalculation", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "AcceptanceRangeHighValue", + "value": Object { + "Path": "AcceptanceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "AcceptanceRangeLowValue", + "value": Object { + "Path": "AcceptanceRangeLow", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeHighValue", + "value": Object { + "Path": "DeviationRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeLowValue", + "value": Object { + "Path": "DeviationRangeLow", + "type": "Path", + }, + }, + Object { + "name": "ImprovementDirection", + "value": Object { + "EnumMember": "UI.ImprovementDirectionType/Maximize", + "type": "EnumMember", + }, + }, + Object { + "name": "ToleranceRangeHighValue", + "value": Object { + "Path": "ToleranceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "ToleranceRangeLowValue", + "value": Object { + "Path": "ToleranceRangeLow", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", + }, + "type": "Record", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Column Micro Chart", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Data", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "ComparisonPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "Criticality", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, + Object { + "qualifier": "LineTargetCriticality", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Neutral", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Target Amount Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Target Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "TargetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "LineTargetCriticalityHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Neutral", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Target Amount Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Target Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "TargetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "LineValueCriticality", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Positive", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Net Amount Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "LineValueCriticalityHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Positive", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Net Amount Hidden Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount Hidden", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmountHidden", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Item Information", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.Identification", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Material Details", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "MaterialDetailsFacet", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_MaterialDetails/@UI.LineItem", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "owner/SalesOrder", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "TypeName", + "value": Object { + "String": "Sales Order Item", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Sales Order Items", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Identification Form Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.IdentificationFormAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedQuantity", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "_Material/isHidden", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "HigherLevelItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedQuantity", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItemCategory", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedDeliveryDate", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "_Material/Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "isVerified", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN with context", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "View Return Status", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/ReturnInProcess", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Dummy Bound Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.DummyBoundAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "SortOrder", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Property", + "value": Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SortOrderType", + }, + ], + "type": "Collection", }, }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, + ], + "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", }, + "term": "com.sap.vocabularies.UI.v1.PresentationVariant", }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", }, }, - }, - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": [Circular], - }, - }, - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", }, + "term": "Org.OData.Capabilities.V1.InsertRestrictions", }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", }, - ], - "entityTypes": Array [ Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", - "maxLength": 2, - "name": "BillingBlockReason", - "nullable": false, - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", - "maxLength": 20, - "name": "BillingBlockReason_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order UUID", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", - "maxLength": 2, - "name": "BillingBlockReason", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.PersonalData.v1.IsPotentiallySensitive", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "BillingBlockReason", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItem/ID", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", - "maxLength": 2, - "name": "PartnerFunction", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/BusinessPartner", - "maxLength": 10, - "name": "BusinessPartner", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/FullName", - "maxLength": 80, - "name": "FullName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PhoneNumber", - "maxLength": 30, - "name": "PhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/MobilePhoneNumber", - "maxLength": 30, - "name": "MobilePhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/EmailAddress", - "maxLength": 241, - "name": "EmailAddress", - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", + }, }, ], - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner", - "keys": Array [ + "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", - "maxLength": 2, - "name": "PartnerFunction", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "BusinessPartner", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", - "maxLength": 40, - "name": "Material", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", - "maxLength": 40, - "name": "MaterialName", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Higher-Level Item", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", - "maxLength": 40, - "name": "RequestedQuantityUnit", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", - "maxLength": 40, - "name": "MaterialBaseUnit", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", - "maxLength": 40, - "name": "SalesMeasureUnit", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item Category", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_ItemCategory/SalesDocumentItemCategory_Text", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "SalesOrderItemCategory", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sales Document Item Category", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrderItemCategory", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesDocumentItemCategory", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesDocumentItemCategory_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ScheduleLineIsAllowed", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", - "maxLength": 40, - "name": "Material", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "C_MaterialBySlsOrgDistrChnl", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", - "maxLength": 20, - "name": "SalesOrderType_Text", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", - "maxLength": 4, - "name": "SalesDocumentTypeLangDepdnt", - "nullable": false, - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", - "keys": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "FieldControlType for Items Table", + "type": "String", + }, }, ], - "name": "C_NotLockedSalesOrderTypeVH", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", - "maxLength": 18, - "name": "Product", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", - "maxLength": 40, - "name": "AlternativeUnit", - "nullable": false, - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", - "maxLength": 30, - "name": "AlternativeUnit_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "Path": "fieldControlType_item", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", - "name": "QuantityNumerator", - "precision": 5, - "scale": 0, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", - "name": "QuantityDenominator", - "precision": 5, - "scale": 0, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", - "maxLength": 18, - "name": "Product", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_Material/Material_Text", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", - "maxLength": 40, - "name": "AlternativeUnit", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "C_ProductUnitsOfMeasureVH", - "navigationProperties": Array [], + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "C_MaterialBySlsOrgDistrChnl", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Materials for Manage Sales Order", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Material", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "owner/DistributionChannel", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "DistributionChannel", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "owner/SalesOrganization", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "RequestedQuantityUnit", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "RequestedQuantityUnit", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "MaterialName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/Material", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", - "name": "CustomerCreditExposureAmount", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", - "name": "CustomerCreditExposureAmountHidden", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", - "name": "CustomerCreditForecast", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount_text", - "maxLength": 15, - "name": "CustomerCreditExposureAmount_text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", - "name": "CustomerCreditLimitAmount", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/MaximumCreditValue", - "name": "MaximumCreditValue", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount_text", - "maxLength": 15, - "name": "CustomerCreditLimitAmount_text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/TransactionCurrency", - "maxLength": 5, - "name": "TransactionCurrency", - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerIsAboveThreshold", - "name": "CustomerIsAboveThreshold", - "type": "Edm.Int32", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeLow", - "name": "ToleranceRangeLow", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Requested Quantity", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeHigh", - "name": "ToleranceRangeHigh", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "Org.OData.Measures.V1.Unit", + "value": Object { + "Path": "RequestedQuantityUnit", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeLow", - "name": "DeviationRangeLow", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "Path": "fieldControlType_item", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeHigh", - "name": "DeviationRangeHigh", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Requested Qty Unit", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeLow", - "name": "AcceptanceRangeLow", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_RequestedQuantityUnit/UnitOfMeasure_Text", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeHigh", - "name": "AcceptanceRangeHigh", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "C_ProductUnitsOfMeasureVH", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Requested Quantity Units", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "RequestedQuantityUnit", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "AlternativeUnit", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Material", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Product", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "AlternativeUnit_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "QuantityNumerator", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "QuantityDenominator", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, ], - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails", - "keys": Array [ + "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Pricing Date", + "type": "String", + }, }, ], - "name": "CreditLimitDetails", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", - "maxLength": 10, - "name": "Customer", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Analytics.v1.Measure", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CustomerName", - "maxLength": 80, - "name": "CustomerName", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Value", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", - "maxLength": 35, - "name": "OrganizationBPName1", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", - "maxLength": 35, - "name": "OrganizationBPName2", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Value", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", - "name": "BusinessPartnerImageURL", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CityName", - "maxLength": 40, - "name": "CityName", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Target Value", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", - "maxLength": 30, - "name": "InternationalPhoneNumber", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/EmailAddress", - "maxLength": 241, - "name": "EmailAddress", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", - "maxLength": 10, - "name": "Customer", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.ExcludeFromNavigationContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "Customer", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", - "maxLength": 30, - "name": "CustomerPaymentTerms_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "keys": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "CustomerPaymentTerms", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", - "maxLength": 4, - "name": "CustomerPurchaseOrderType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", - "maxLength": 20, - "name": "CustomerPurchaseOrderType_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "keys": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", - "maxLength": 4, - "name": "CustomerPurchaseOrderType", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "CustomerPurchaseOrderType", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", - "maxLength": 2, - "name": "DeliveryBlockReason", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", - "maxLength": 20, - "name": "DeliveryBlockReason_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", - "name": "DeliveryDueListBlock", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "keys": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", - "maxLength": 2, - "name": "DeliveryBlockReason", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "DeliveryBlockReason", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", - "maxLength": 2, - "name": "DeliveryPriority", - "nullable": false, - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", - "maxLength": 20, - "name": "DeliveryPriority_Text", - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedQuantity", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedQuantity", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", - "maxLength": 2, - "name": "DeliveryPriority", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/isVerified", + "type": "Path", + }, }, ], - "name": "DeliveryPriority", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", - "maxLength": 20, - "name": "DistributionChannel_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Requested Quantity", + "type": "String", + }, }, ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel", - "keys": Array [ + "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Document Item Category", + "type": "String", + }, }, ], - "name": "DistributionChannel", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", - "name": "DraftUUID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreationDateTime", - "name": "CreationDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreatedByUser", - "maxLength": 256, - "name": "CreatedByUser", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "ItCa", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsCreatedByMe", - "name": "DraftIsCreatedByMe", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangeDateTime", - "name": "LastChangeDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item Category", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangedByUser", - "maxLength": 256, - "name": "LastChangedByUser", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Sales Document Item Category", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/InProcessByUser", - "maxLength": 256, - "name": "InProcessByUser", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesDocumentItemCategory", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsProcessedByMe", - "name": "DraftIsProcessedByMe", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", - "name": "DraftUUID", - "nullable": false, - "type": "Edm.Guid", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "DraftAdministrativeData", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SchAl", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", - "maxLength": 2, - "name": "PartnerFunction", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", - "maxLength": 10, - "name": "BusinessPartner", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sched.lines allowed", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Rating", - "name": "Rating", - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Schedule lines allowed", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Progress", - "name": "Progress", - "precision": 4, - "scale": 1, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Manage Sales Order", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SemanticObject", - "maxLength": 15, - "name": "SemanticObject", - "type": "Edm.String", + "collection": Array [ + Object { + "PropertyPath": "ID", + "type": "PropertyPath", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticKey", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/AddressID", - "maxLength": 10, - "name": "AddressID", - "type": "Edm.String", + "qualifier": "ItemCreationOrDeletion", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/FullName", - "maxLength": 80, - "name": "FullName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", - "maxLength": 30, - "name": "PhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/CityName", - "maxLength": 40, - "name": "CityName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", + "qualifier": "ItemMaterialChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_Item/Material", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner_ID", - "name": "owner_ID", - "type": "Edm.Guid", + "qualifier": "ItemRequestedQuantityChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_Item/RequestedQuantity", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + "qualifier": "ShipToPartyChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_ShipToParty/BusinessPartner", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", - "name": "HasActiveEntity", - "type": "Edm.Boolean", + "qualifier": "SoldToChangeSalesAreaShipTo", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DistributionChannel", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OrganizationDivision", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", - "name": "HasDraftEntity", - "type": "Edm.Boolean", + "qualifier": "NetValue", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Positive", + "type": "EnumMember", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + "qualifier": "Progress", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 100, + "type": "Int", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Progress", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Progress", + "type": "Path", + }, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Progress", + "type": "EnumMember", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + "qualifier": "Rating", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 5, + "type": "Int", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", + }, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Rating", + "type": "EnumMember", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - ], - "name": "HeaderPartner", - "navigationProperties": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner", - "isCollection": false, - "name": "owner", - "partner": "_Partner", - "referentialConstraint": Array [ + "collection": Array [ Object { - "sourceProperty": "owner_ID", - "sourceTypeName": "HeaderPartner", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Header", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "HeaderInfo", + "type": "String", + }, + }, + Object { + "name": "Facets", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ID", + "value": Object { + "String": "GeneralInfo", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "General Information", + "type": "String", + }, + }, + Object { + "name": "Facets", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Order Data", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "OrderData", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#OrderData", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Ship-To", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "AddressData", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_ShipToParty/@UI.FieldGroup#AddressData", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Terms & Conditions", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "TermsConditions", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#TermsConditions", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "Path": "High", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Business Partners", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "SalesOrderHeaderPartner", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Partner/@UI.LineItem", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", - "maxLength": 10, - "name": "BusinessPartner", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", - "maxLength": 40, - "name": "CityName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", - "name": "isHidden", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", - "maxLength": 60, - "name": "StreetName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", - "maxLength": 10, - "name": "HouseNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "HeaderShipToParty", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/_ShipToPartyVH", - "isCollection": false, - "name": "_ShipToPartyVH", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "BusinessPartner", - "sourceTypeName": "HeaderShipToParty", - "targetProperty": "Customer", - "targetTypeName": "com.c_salesordermanage_sd.Customer", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Items", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "SalesOrderItems", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.LineItem", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, ], - "targetTypeName": "com.c_salesordermanage_sd.Customer", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", - "maxLength": 20, - "name": "DistributionChannel_Text", - "type": "Edm.String", + "qualifier": "OrderData", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBNWithContext", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Facet Form Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.FacetFormAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SoldToParty", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PurchaseOrderByCustomer", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderDate", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ShippingCondition", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OverallSDProcessStatus", + "type": "Path", + }, + }, + Object { + "name": "Criticality", + "value": Object { + "Path": "StatusCriticality", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "DescriptionFieldForOPACleanup", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_DistributionChannel", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", - "maxLength": 20, - "name": "Division_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_OrganizationDivision", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", - "maxLength": 20, - "name": "SalesOrganization_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", - "maxLength": 5, - "name": "SalesOrganizationCurrency", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", - "maxLength": 4, - "name": "CompanyCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", - "maxLength": 10, - "name": "IntercompanyBillingCustomer", - "type": "Edm.String", + "qualifier": "OrgData", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrganization", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "DistributionChannel", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OrganizationDivision", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", + "qualifier": "OrgDataHeader", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, - ], - "name": "I_SalesOrganization", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "nullable": false, - "type": "Edm.String", + "qualifier": "TermsConditions", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "IncotermsClassification", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "IncotermsVersion", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "IncotermsLocation1", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "IncotermsLocation2", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CustomerPaymentTerms", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CompleteDeliveryIsDefined", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PricingDate", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", - "maxLength": 30, - "name": "IncotermsClassification_Text", - "type": "Edm.String", + "qualifier": "multipleActionFields", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_SoldToParty/@Communication.Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", - "name": "LocationIsMandatory", - "type": "Edm.Boolean", + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Sales Area", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "OrganizationalDataHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#OrgData", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "NetValueDataHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#NetValue", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Contact Info", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "ContactHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_SoldToParty/@Communication.Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "CreditLimitConsumption", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "CreditLimitChartHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#CreditLimitChart", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Comparison MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "ComparisonMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#ComparisonPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Radial MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "RadialMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPathHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Rating Value", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "RatingHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HeaderFacets", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "nullable": false, - "type": "Edm.String", + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Column MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "ColumnMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#ColumnMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Area MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "AreaMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#AreaMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "HarveyBall MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "HarveyBallMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#HarveyBallCriticalityPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Line MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "LineMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#LineMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Radial MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "RadialMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Stacked Bar MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "BarStackedMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#BarStackedPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": "MicroCharts", + "term": "com.sap.vocabularies.UI.v1.HeaderFacets", }, - ], - "name": "IncotermsClassification", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderTypeName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "ImageUrl", + "value": Object { + "Path": "ImageUrl", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrder", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "TypeName", + "value": Object { + "String": "Sales Order", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Sales Orders", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", - "maxLength": 30, - "name": "IncotermsVersion_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "IncotermsVersion", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", - "maxLength": 18, - "name": "Material", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/isHidden", - "name": "isHidden", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material_Text", - "maxLength": 40, - "name": "Material_Text", - "type": "Edm.String", + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "editActionIsEnabled", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Enable Edit", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.EnableEditAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "editActionIsDisabled", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Status (Header)", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ChangeOrderStatus", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "editActionIsDisabled", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Status (Footer)", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ChangeOrderStatus", + "type": "String", + }, + }, + Object { + "name": "Determining", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Type", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN with context", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderType", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SoldToParty", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrganization", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "DistributionChannel", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OrganizationDivision", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PurchaseOrderByCustomer", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup_MaterialGroup", - "maxLength": 9, - "name": "_MaterialGroup_MaterialGroup", - "type": "Edm.String", + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Type", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Unbound Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/UnboundAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Return In Process", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/ReturnInProcess", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "v4Freestyle", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "Inbound", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN with context", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ID", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ImageUrl", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#multipleActionFields", + "type": "AnnotationPath", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sold-To Party", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "_ShipToParty/isHidden", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderType", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OverallSDProcessStatus", + "type": "Path", + }, + }, + Object { + "name": "Criticality", + "value": Object { + "Path": "StatusCriticality", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.Material", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", - "maxLength": 18, - "name": "Material", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "MaxItems", + "value": Object { + "Int": 30, + "type": "Int", + }, + }, + Object { + "name": "RequestAtLeast", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrder", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "SortOrder", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Property", + "value": Object { + "PropertyPath": "ID", + "type": "PropertyPath", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SortOrderType", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", + }, + "term": "com.sap.vocabularies.UI.v1.PresentationVariant", }, - ], - "name": "Material", - "navigationProperties": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup", - "isCollection": false, - "name": "_MaterialGroup", - "partner": undefined, - "referentialConstraint": Array [ + "collection": Array [ Object { - "sourceProperty": "_MaterialGroup_MaterialGroup", - "sourceTypeName": "Material", - "targetProperty": "MaterialGroup", - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "PropertyPath": "SalesOrder", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallSDProcessStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SalesOrderDate", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "LastChangedDateTime", + "type": "PropertyPath", }, ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.SelectionFields", }, ], + "target": "com.c_salesordermanage_sd.SalesOrderManage", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", - "maxLength": 9, - "name": "MaterialGroup", - "nullable": false, - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", - "maxLength": 20, - "name": "MaterialGroup_Text", - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "RestrictedProperties", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "NavigationProperty", + "value": Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + }, + Object { + "name": "InsertRestrictions", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + }, + "type": "Record", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.NavigationPropertyRestriction", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.NavigationRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.NavigationRestrictions", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", - "maxLength": 9, - "name": "MaterialGroup", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "ActivationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftActivate", + "type": "String", + }, + }, + Object { + "name": "EditAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftEdit", + "type": "String", + }, + }, + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftRootType", + }, + "term": "com.sap.vocabularies.Common.v1.DraftRoot", }, ], - "name": "MaterialGroup", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Inapplicable", + "type": "EnumMember", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", - "maxLength": 20, - "name": "Division_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextOnly", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrder", + "type": "Path", + }, }, ], - "name": "OrganizationDivision", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ID", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", - "maxLength": 1, - "name": "OverallBillingBlockStatus", - "nullable": false, - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", - "maxLength": 20, - "name": "OverallBillingBlockStatus_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", - "maxLength": 1, - "name": "OverallBillingBlockStatus", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "OverallBillingBlockStatus", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "OverallDeliveryBlockStatus", - "nullable": false, - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", - "maxLength": 20, - "name": "OverallDeliveryBlockStatus_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Status", + "type": "String", + }, }, ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "keys": Array [ + "target": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "OverallDeliveryBlockStatus", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Return Status", + "type": "String", + }, }, ], - "name": "OverallDeliveryBlockStatus", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", - "maxLength": 1, - "name": "OverallSDProcessStatus", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", - "maxLength": 20, - "name": "OverallSDProcessStatus_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Order Type", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", - "maxLength": 1, - "name": "OverallSDProcessStatus", - "nullable": false, - "type": "Edm.String", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_SalesOrderType/SalesOrderType_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "OverallSDProcessStatus", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", - "maxLength": 3, - "name": "SDDocumentReason", - "nullable": false, - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", - "maxLength": 40, - "name": "SDDocumentReason_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Image", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", - "maxLength": 3, - "name": "SDDocumentReason", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.IsImageURL", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "SDDocumentReason", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", - "maxLength": 6, - "name": "SalesDistrict", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", - "maxLength": 20, - "name": "SalesDistrict_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Sold-To", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", - "maxLength": 6, - "name": "SalesDistrict", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, - ], - "name": "SalesDistrict", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", - "maxLength": 3, - "name": "SalesGroup", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sold-To Party", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", - "maxLength": 20, - "name": "SalesGroup_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", - "maxLength": 3, - "name": "SalesGroup", - "nullable": false, - "type": "Edm.String", + "qualifier": "customer", + "term": "com.sap.vocabularies.Common.v1.SemanticObject", + "value": Object { + "String": "Customer", + "type": "String", + }, }, - ], - "name": "SalesGroup", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", - "maxLength": 4, - "name": "SalesOffice", - "nullable": false, - "type": "Edm.String", + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + }, + Object { + "name": "SemanticObjectProperty", + "value": Object { + "String": "SoldToParty", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", - "maxLength": 20, - "name": "SalesOffice_Text", - "type": "Edm.String", + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + }, + Object { + "name": "SemanticObjectProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", + }, + ], + "qualifier": "customer", + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", - "maxLength": 4, - "name": "SalesOffice", - "nullable": false, - "type": "Edm.String", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_SoldToParty/CustomerName", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sold-to Party", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName1", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName2", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "BusinessPartnerImageURL", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "PostalCode", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CityName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "InternationalPhoneNumber", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "EmailAddress", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, ], - "name": "SalesOffice", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/Rating", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", - "maxLength": 6, - "name": "SalesOrderItem", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Progress", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/Progress", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", - "maxLength": 6, - "name": "HigherLevelItem", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", - "maxLength": 4, - "name": "SalesOrderItemCategory", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemText", - "maxLength": 40, - "name": "SalesOrderItemText", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer Reference", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", - "name": "fieldControlType_item", - "type": "Edm.Int32", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Pricing Date", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Material", - "maxLength": 40, - "name": "Material", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SC", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PurchaseOrderByCustomer", - "maxLength": 35, - "name": "PurchaseOrderByCustomer", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", - "name": "RequestedDeliveryDate", - "type": "Edm.Date", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ConfirmedDeliveryDate", - "name": "ConfirmedDeliveryDate", - "type": "Edm.Date", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_ShippingCondition/ShippingCondition_Text", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", - "name": "RequestedQuantity", - "precision": 15, - "scale": 3, - "type": "Edm.Decimal", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "SalesOrderManage", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Shipping Condition", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ShippingCondition", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SoldToParty", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", - "maxLength": 40, - "name": "RequestedQuantityUnit", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", - "name": "PricingDate", - "type": "Edm.Date", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Complete Delivery", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/MaterialGroup", - "maxLength": 9, - "name": "MaterialGroup", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Batch", - "maxLength": 10, - "name": "Batch", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Plant", - "maxLength": 4, - "name": "Plant", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_IncotermsClassification/IncotermsClassification_Text", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/StorageLocation", - "maxLength": 4, - "name": "StorageLocation", - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "IncotermsClassification", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Incoterms Classification", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "IncotermsClassification", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsClassification", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsClassification_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "LocationIsMandatory", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingPoint", - "maxLength": 4, - "name": "ShippingPoint", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Version", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeliveryPriority", - "maxLength": 2, - "name": "DeliveryPriority", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_IncotermsVersion/IncotermsVersion_Text", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "IncotermsVersion", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Incoterms Version", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "IncotermsVersion", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsVersion", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsVersion_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation1", - "maxLength": 70, - "name": "IncotermsLocation1", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "fieldControlType", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation2", - "maxLength": 70, - "name": "IncotermsLocation2", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "Path": "fieldControlType", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Version 1", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Location 2", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ItemBillingBlockReason", - "maxLength": 2, - "name": "ItemBillingBlockReason", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TransactionCurrency", - "maxLength": 5, - "name": "TransactionCurrency", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Terms of Payment", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", - "name": "NetAmount", - "precision": 15, - "scale": 2, - "type": "Edm.Decimal", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_CustomerPaymentTerms/CustomerPaymentTerms_Text", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", - "name": "NetAmountHidden", - "precision": 15, - "scale": 10, - "type": "Edm.Decimal", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "CustomerPaymentTerms", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Customer Payment Terms", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "CustomerPaymentTerms", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerPaymentTerms", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerPaymentTerms_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount_text", - "maxLength": 10, - "name": "NetAmount_text", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", - "name": "TargetAmount", - "precision": 15, - "scale": 2, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Amount", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeLow", - "name": "ToleranceRangeLow", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeHigh", - "name": "ToleranceRangeHigh", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeLow", - "name": "DeviationRangeLow", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeHigh", - "name": "DeviationRangeHigh", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeLow", - "name": "AcceptanceRangeLow", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeHigh", - "name": "AcceptanceRangeHigh", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Criticality", - "name": "Criticality", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Curr.", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms_CustomerPaymentTerms", - "maxLength": 4, - "name": "_CustomerPaymentTerms_CustomerPaymentTerms", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Document Currency", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority_DeliveryPriority", - "maxLength": 2, - "name": "_DeliveryPriority_DeliveryPriority", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "SD document currency", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification_IncotermsClassification", - "maxLength": 3, - "name": "_IncotermsClassification_IncotermsClassification", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion_IncotermsVersion", - "maxLength": 4, - "name": "_IncotermsVersion_IncotermsVersion", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Status", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason_BillingBlockReason", - "maxLength": 2, - "name": "_ItemBillingBlockReason_BillingBlockReason", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_OverallSDProcessStatus/OverallSDProcessStatus_Text", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory_SalesDocumentItemCategory", - "maxLength": 4, - "name": "_ItemCategory_SalesDocumentItemCategory", - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Overall SD Process Status", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "OverallSDProcessStatus", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup_MaterialGroup", - "maxLength": 9, - "name": "_MaterialGroup_MaterialGroup", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder_SalesOrderType", - "maxLength": 4, - "name": "_SalesOrder_SalesOrderType", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Last Change Date", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint_ShippingPoint", - "maxLength": 4, - "name": "_ShippingPoint_ShippingPoint", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Document Date", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType_ShippingType", - "maxLength": 2, - "name": "_ShippingType_ShippingType", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Document Type", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner_ID", - "name": "owner_ID", - "type": "Edm.Guid", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", - "name": "HasActiveEntity", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", - "name": "HasDraftEntity", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem", - "keys": Array [ + "target": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "name": "SalesOrderItem", - "navigationProperties": Array [ + "target": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", + }, + Object { + "annotations": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms", - "isCollection": false, - "name": "_CustomerPaymentTerms", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_CustomerPaymentTerms_CustomerPaymentTerms", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "CustomerPaymentTerms", - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsActionCritical", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority", - "isCollection": false, - "name": "_DeliveryPriority", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_DeliveryPriority_DeliveryPriority", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "DeliveryPriority", - "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification", - "isCollection": false, - "name": "_IncotermsClassification", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_IncotermsClassification_IncotermsClassification", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "IncotermsClassification", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion", - "isCollection": false, - "name": "_IncotermsVersion", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_IncotermsVersion_IncotermsVersion", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "IncotermsVersion", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "type": "Null", + }, }, + ], + "target": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason", - "isCollection": false, - "name": "_ItemBillingBlockReason", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ItemBillingBlockReason_BillingBlockReason", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "BillingBlockReason", - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "editActionIsEnabled", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "editActionIsDisabled", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, + ], + "target": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory", - "isCollection": false, - "name": "_ItemCategory", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ItemCategory_SalesDocumentItemCategory", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "SalesDocumentItemCategory", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsActionCritical", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_Material", - "isCollection": false, - "name": "_Material", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "Material", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "Material", - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Material", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/isVerified", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup", - "isCollection": false, - "name": "_MaterialGroup", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_MaterialGroup_MaterialGroup", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "MaterialGroup", - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, }, Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_RequestedQuantityUnit", - "isCollection": false, - "name": "_RequestedQuantityUnit", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "RequestedQuantityUnit", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "UnitOfMeasure", - "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder", - "isCollection": false, - "name": "_SalesOrder", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_SalesOrder_SalesOrderType", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "SalesOrderType", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Type", + "type": "String", + }, }, Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint", - "isCollection": false, - "name": "_ShippingPoint", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ShippingPoint_ShippingPoint", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "ShippingPoint", - "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "C_NotLockedSalesOrderTypeVH", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sales Order Types", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrderType", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrderType", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrderType_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesDocumentTypeLangDepdnt", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType", - "isCollection": false, - "name": "_ShippingType", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ShippingType_ShippingType", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "ShippingType", - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.ParameterDefaultValue", + "value": Object { + "Path": "_it/SalesOrderType", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", + }, + Object { + "annotations": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner", - "isCollection": false, - "name": "owner", - "partner": "_Item", - "referentialConstraint": Array [ - Object { - "sourceProperty": "owner_ID", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, }, Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_SalesOrganization", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganizationCurrency", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CompanyCode", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IntercompanyBillingCustomer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.ParameterDefaultValue", + "value": Object { + "String": "0002", + "type": "String", + }, }, ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", - "maxLength": 4, - "name": "SalesDocumentItemCategory", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dv", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", - "maxLength": 20, - "name": "SalesDocumentItemCategory_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", - "name": "ScheduleLineIsAllowed", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", - "maxLength": 4, - "name": "SalesDocumentItemCategory", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_OrganizationDivision", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "OrganizationDivision", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Division_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, ], - "name": "SalesOrderItemCategory", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DChl", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", - "name": "ReturnInProcess", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_DistributionChannel", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "DistributionChannel", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "DistributionChannel", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "DistributionChannel_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", - "name": "ImageUrl", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/_ShipToParty/isVerified", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", - "maxLength": 10, - "name": "SoldToParty", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Status", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Rating", - "name": "Rating", - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallSDProcessStatus_Text", + "type": "Path", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Progress", - "name": "Progress", - "precision": 4, - "scale": 1, - "type": "Edm.Decimal", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Overall SD Process Status", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "OverallSDProcessStatus", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", - "maxLength": 2, - "name": "OrganizationDivision", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/_ShipToParty/isVerified", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOffice", - "maxLength": 4, - "name": "SalesOffice", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SC", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesGroup", - "maxLength": 3, - "name": "SalesGroup", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesDistrict", - "maxLength": 6, - "name": "SalesDistrict", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", - "maxLength": 35, - "name": "PurchaseOrderByCustomer", - "type": "Edm.String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "ShippingCondition", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ShippingCondition", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ShippingCondition_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderType", - "maxLength": 4, - "name": "CustomerPurchaseOrderType", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Types", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderDate", - "name": "CustomerPurchaseOrderDate", - "type": "Edm.Date", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SDDocumentReason", - "maxLength": 3, - "name": "SDDocumentReason", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Type", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", - "name": "PricingDate", - "type": "Edm.Date", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrderType_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", - "maxLength": 2, - "name": "ShippingCondition", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Document Type", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", - "name": "CompleteDeliveryIsDefined", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Sales Document Type Description", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "C", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", - "name": "fieldControlType", - "type": "Edm.Int32", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Indicator", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", - "maxLength": 70, - "name": "IncotermsLocation1", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Sales document indicator (for display in TVAK only)", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", - "maxLength": 70, - "name": "IncotermsLocation2", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Req.", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HeaderBillingBlockReason", - "maxLength": 2, - "name": "HeaderBillingBlockReason", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockReason", - "maxLength": 2, - "name": "DeliveryBlockReason", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Billing Request", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Order type for request for billing", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PaymentMethod", - "maxLength": 1, - "name": "PaymentMethod", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", - "name": "TotalNetAmount", - "precision": 15, - "scale": 10, - "type": "Edm.Decimal", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrganization_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", - "maxLength": 5, - "name": "TransactionCurrency", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Condition", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingCondition", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", - "maxLength": 1, - "name": "OverallSDProcessStatus", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SC", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/StatusCriticality", - "name": "StatusCriticality", - "type": "Edm.Int32", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "OverallDeliveryBlockStatus", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallBillingBlockStatus", - "maxLength": 1, - "name": "OverallBillingBlockStatus", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "ShippingCondition_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", - "name": "LastChangedDateTime", - "type": "Edm.DateTimeOffset", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", - "name": "SalesOrderDate", - "type": "Edm.Date", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Shipping Conditions Description", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", - "maxLength": 20, - "name": "SalesOrderTypeName", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockCriticality", - "maxLength": 1, - "name": "DeliveryBlockCriticality", - "type": "Edm.Binary", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Point", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingPoint", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/BillingBlockCriticality", - "maxLength": 1, - "name": "BillingBlockCriticality", - "type": "Edm.Binary", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "ShPt", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", - "maxLength": 40, - "name": "DescriptionFieldForOPACleanup", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Point", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsEnabled", - "name": "editActionIsEnabled", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Shipping Point / Receiving Point", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsDisabled", - "name": "editActionIsDisabled", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "ShippingPoint_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType_CustomerPurchaseOrderType", - "maxLength": 4, - "name": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason_DeliveryBlockReason", - "maxLength": 2, - "name": "_DeliveryBlockReason_DeliveryBlockReason", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel_DistributionChannel", - "maxLength": 2, - "name": "_DistributionChannel_DistributionChannel", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Type", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingType", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason_BillingBlockReason", - "maxLength": 2, - "name": "_HeaderBillingBlockReason_BillingBlockReason", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "ST", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision_Division", - "maxLength": 2, - "name": "_OrganizationDivision_Division", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus_OverallBillingBlockStatus", - "maxLength": 1, - "name": "_OverallBillingBlockStatus_OverallBillingBlockStatus", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Type", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "ShippingType_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingType/ShippingType", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict_SalesDistrict", - "maxLength": 6, - "name": "_SalesDistrict_SalesDistrict", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup_SalesGroup", - "maxLength": 3, - "name": "_SalesGroup_SalesGroup", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Shipping Type Description", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice_SalesOffice", - "maxLength": 4, - "name": "_SalesOffice_SalesOffice", - "type": "Edm.String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization_SalesOrganization", - "maxLength": 4, - "name": "_SalesOrganization_SalesOrganization", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Message", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.UnboundAction()/MessageText", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason_SDDocumentReason", - "maxLength": 3, - "name": "_SDDocumentReason_SDDocumentReason", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Unit of Measure", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType_ShippingType", - "maxLength": 2, - "name": "_ShippingType_ShippingType", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "MU", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Internal UoM", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", - "name": "HasActiveEntity", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Unit of Measurement", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", - "name": "HasDraftEntity", - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "UnitOfMeasure_Text", + "type": "Path", + }, }, ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage", - "keys": Array [ + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", + }, + Object { + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Measurement unit text", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "UoM Text", + "type": "String", + }, }, - ], - "name": "SalesOrderManage", - "navigationProperties": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPaymentTerms", - "isCollection": false, - "name": "_CustomerPaymentTerms", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "CustomerPaymentTerms", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "CustomerPaymentTerms", - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Unit of Measurement Text (Maximum 30 Characters)", + "type": "String", + }, }, Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType", - "isCollection": false, - "name": "_CustomerPurchaseOrderType", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "CustomerPurchaseOrderType", - "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", + }, + Object { + "annotations": Array [ Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason", - "isCollection": false, - "name": "_DeliveryBlockReason", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_DeliveryBlockReason_DeliveryBlockReason", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "DeliveryBlockReason", - "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel", - "isCollection": false, - "name": "_DistributionChannel", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_DistributionChannel_DistributionChannel", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "DistributionChannel", - "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason", - "isCollection": false, - "name": "_HeaderBillingBlockReason", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_HeaderBillingBlockReason_BillingBlockReason", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "BillingBlockReason", - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsClassification", - "isCollection": false, - "name": "_IncotermsClassification", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "IncotermsClassification", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "IncotermsClassification", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsVersion", - "isCollection": false, - "name": "_IncotermsVersion", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "IncotermsVersion", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "IncotermsVersion", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Item", - "isCollection": true, - "name": "_Item", - "partner": "owner", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision", - "isCollection": false, - "name": "_OrganizationDivision", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_OrganizationDivision_Division", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "Division", - "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus", - "isCollection": false, - "name": "_OverallBillingBlockStatus", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_OverallBillingBlockStatus_OverallBillingBlockStatus", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "OverallBillingBlockStatus", - "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus", - "isCollection": false, - "name": "_OverallDeliveryBlockStatus", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "OverallDeliveryBlockStatus", - "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallSDProcessStatus", - "isCollection": false, - "name": "_OverallSDProcessStatus", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "OverallSDProcessStatus", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "OverallSDProcessStatus", - "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Partner", - "isCollection": true, - "name": "_Partner", - "partner": "owner", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CreditLimitDetails", - "isCollection": false, - "name": "_CreditLimitDetails", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "SalesOrder", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesDocument", - "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict", - "isCollection": false, - "name": "_SalesDistrict", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_SalesDistrict_SalesDistrict", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesDistrict", - "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup", - "isCollection": false, - "name": "_SalesGroup", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_SalesGroup_SalesGroup", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesGroup", - "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice", - "isCollection": false, - "name": "_SalesOffice", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_SalesOffice_SalesOffice", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOffice", - "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrderType", - "isCollection": false, - "name": "_SalesOrderType", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "SalesOrderType", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOrderType", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization", - "isCollection": false, - "name": "_SalesOrganization", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_SalesOrganization_SalesOrganization", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOrganization", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason", - "isCollection": false, - "name": "_SDDocumentReason", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_SDDocumentReason_SDDocumentReason", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SDDocumentReason", - "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingCondition", - "isCollection": false, - "name": "_ShippingCondition", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "ShippingCondition", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "ShippingCondition", - "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType", - "isCollection": false, - "name": "_ShippingType", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ShippingType_ShippingType", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "ShippingType", - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShipToParty", - "isCollection": false, - "name": "_ShipToParty", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "SalesOrder", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOrder", - "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SoldToParty", - "isCollection": false, - "name": "_SoldToParty", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "SoldToParty", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "Customer", - "targetTypeName": "com.c_salesordermanage_sd.Customer", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Customer", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", - "maxLength": 20, - "name": "SalesOrderType_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", - "maxLength": 1, - "name": "SalesOrderProcessingType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", - "maxLength": 4, - "name": "OrderTypeForBillingRequest", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesOrderType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization_Text", - "maxLength": 20, - "name": "SalesOrganization_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganizationCurrency", - "maxLength": 5, - "name": "SalesOrganizationCurrency", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dimen.", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/CompanyCode", - "maxLength": 4, - "name": "CompanyCode", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/IntercompanyBillingCustomer", - "maxLength": 10, - "name": "IntercompanyBillingCustomer", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dimension", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Dimension Key", + "type": "String", + }, }, ], - "name": "SalesOrganization", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", - "maxLength": 2, - "name": "ShippingCondition", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", - "maxLength": 20, - "name": "ShippingCondition_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition", - "keys": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", - "maxLength": 2, - "name": "ShippingCondition", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "ISO", + "type": "String", + }, }, - ], - "name": "ShippingCondition", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", - "maxLength": 4, - "name": "ShippingPoint", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", - "maxLength": 30, - "name": "ShippingPoint_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "ISO Code", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", - "maxLength": 4, - "name": "ShippingPoint", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "ISO Code for Unit of Measurement", + "type": "String", + }, }, ], - "name": "ShippingPoint", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DeR", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", - "maxLength": 20, - "name": "ShippingType_Text", - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Decimal Rounding", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Number of Decimal Places for Rounding", + "type": "String", + }, }, ], - "name": "ShippingType", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", - "maxLength": 40, - "name": "UnitOfMeasure", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", - "maxLength": 30, - "name": "UnitOfMeasure_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", - "maxLength": 6, - "name": "UnitOfMeasureDimension", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", - "maxLength": 3, - "name": "UnitOfMeasureISOCode", - "type": "Edm.String", - }, + "annotations": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", - "name": "UnitOfMeasureNumberOfDecimals", - "type": "Edm.Int32", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dec", + "type": "String", + }, }, Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", - "name": "UnitOfMeasureDspNmbrOfDcmls", - "type": "Edm.Int32", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Decimal Places", + "type": "String", + }, }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure", - "keys": Array [ Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", - "maxLength": 40, - "name": "UnitOfMeasure", - "nullable": false, - "type": "Edm.String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Number of Decimal Places for Number Display", + "type": "String", + }, }, ], - "name": "UnitOfMeasure", - "navigationProperties": Array [], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", }, ], - "namespace": "com.c_salesordermanage_sd", - "singletons": Array [], - "typeDefinitions": Array [], }, - "version": "4.0", -} -`; - -exports[`Parser can convertTypes an v3 edmx file 1`] = ` -RawMetadataInstance { - "identification": "serviceFile", - "references": Array [], - "schema": Object { - "actions": Array [], - "annotations": Object { - "serviceFile": Array [], + "_associationSets": Array [], + "_associations": Array [], + "_complexTypes": Array [], + "_entityContainer": Object { + "_type": "EntityContainer", + "fullyQualifiedName": "", + "name": "EntityContainer", + }, + "_entitySets": Array [ + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - "associationSets": Array [ - Object { - "association": "NorthwindModel.FK_Products_Categories", - "associationEnd": Array [ - Object { - "entitySet": "Categories", - "role": "Categories", - }, - Object { - "entitySet": "Products", - "role": "Products", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Products_Categories", - "name": "FK_Products_Categories", - }, - Object { - "association": "NorthwindModel.CustomerCustomerDemo", - "associationEnd": Array [ - Object { - "entitySet": "CustomerDemographics", - "role": "CustomerDemographics", - }, - Object { - "entitySet": "Customers", - "role": "Customers", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.CustomerCustomerDemo", - "name": "CustomerCustomerDemo", - }, - Object { - "association": "NorthwindModel.FK_Orders_Customers", - "associationEnd": Array [ - Object { - "entitySet": "Customers", - "role": "Customers", - }, - Object { - "entitySet": "Orders", - "role": "Orders", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Orders_Customers", - "name": "FK_Orders_Customers", - }, - Object { - "association": "NorthwindModel.FK_Employees_Employees", - "associationEnd": Array [ - Object { - "entitySet": "Employees", - "role": "Employees", - }, - Object { - "entitySet": "Employees", - "role": "Employees1", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Employees_Employees", - "name": "FK_Employees_Employees", - }, - Object { - "association": "NorthwindModel.FK_Orders_Employees", - "associationEnd": Array [ - Object { - "entitySet": "Employees", - "role": "Employees", - }, - Object { - "entitySet": "Orders", - "role": "Orders", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Orders_Employees", - "name": "FK_Orders_Employees", - }, - Object { - "association": "NorthwindModel.EmployeeTerritories", - "associationEnd": Array [ - Object { - "entitySet": "Employees", - "role": "Employees", - }, - Object { - "entitySet": "Territories", - "role": "Territories", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.EmployeeTerritories", - "name": "EmployeeTerritories", - }, - Object { - "association": "NorthwindModel.FK_Order_Details_Orders", - "associationEnd": Array [ - Object { - "entitySet": "Order_Details", - "role": "Order_Details", - }, - Object { - "entitySet": "Orders", - "role": "Orders", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Order_Details_Orders", - "name": "FK_Order_Details_Orders", - }, - Object { - "association": "NorthwindModel.FK_Order_Details_Products", - "associationEnd": Array [ - Object { - "entitySet": "Order_Details", - "role": "Order_Details", - }, - Object { - "entitySet": "Products", - "role": "Products", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Order_Details_Products", - "name": "FK_Order_Details_Products", - }, - Object { - "association": "NorthwindModel.FK_Orders_Shippers", - "associationEnd": Array [ - Object { - "entitySet": "Orders", - "role": "Orders", - }, - Object { - "entitySet": "Shippers", - "role": "Shippers", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Orders_Shippers", - "name": "FK_Orders_Shippers", - }, - Object { - "association": "NorthwindModel.FK_Products_Suppliers", - "associationEnd": Array [ - Object { - "entitySet": "Products", - "role": "Products", - }, - Object { - "entitySet": "Suppliers", - "role": "Suppliers", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Products_Suppliers", - "name": "FK_Products_Suppliers", - }, - Object { - "association": "NorthwindModel.FK_Territories_Region", - "associationEnd": Array [ - Object { - "entitySet": "Regions", - "role": "Region", - }, - Object { - "entitySet": "Territories", - "role": "Territories", - }, - ], - "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Territories_Region", - "name": "FK_Territories_Region", - }, - ], - "associations": Array [ - Object { - "associationEnd": Array [ - Object { - "multiplicity": "0..1", - "role": "Categories", - "type": "NorthwindModel.Category", - }, - Object { - "multiplicity": "*", - "role": "Products", - "type": "NorthwindModel.Product", - }, - ], - "fullyQualifiedName": "NorthwindModel.FK_Products_Categories", - "name": "FK_Products_Categories", - "referentialConstraints": Array [ - Object { - "sourceProperty": "CategoryID", - "sourceTypeName": "NorthwindModel.Product", - "targetProperty": "CategoryID", - "targetTypeName": "NorthwindModel.Category", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "*", - "role": "Customers", - "type": "NorthwindModel.Customer", - }, - Object { - "multiplicity": "*", - "role": "CustomerDemographics", - "type": "NorthwindModel.CustomerDemographic", - }, - ], - "fullyQualifiedName": "NorthwindModel.CustomerCustomerDemo", - "name": "CustomerCustomerDemo", - "referentialConstraints": Array [], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "0..1", - "role": "Customers", - "type": "NorthwindModel.Customer", - }, - Object { - "multiplicity": "*", - "role": "Orders", - "type": "NorthwindModel.Order", - }, - ], - "fullyQualifiedName": "NorthwindModel.FK_Orders_Customers", - "name": "FK_Orders_Customers", - "referentialConstraints": Array [ - Object { - "sourceProperty": "CustomerID", - "sourceTypeName": "NorthwindModel.Order", - "targetProperty": "CustomerID", - "targetTypeName": "NorthwindModel.Customer", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "0..1", - "role": "Employees", - "type": "NorthwindModel.Employee", - }, - Object { - "multiplicity": "*", - "role": "Employees1", - "type": "NorthwindModel.Employee", - }, - ], - "fullyQualifiedName": "NorthwindModel.FK_Employees_Employees", - "name": "FK_Employees_Employees", - "referentialConstraints": Array [ - Object { - "sourceProperty": "ReportsTo", - "sourceTypeName": "NorthwindModel.Employee", - "targetProperty": "EmployeeID", - "targetTypeName": "NorthwindModel.Employee", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "0..1", - "role": "Employees", - "type": "NorthwindModel.Employee", - }, - Object { - "multiplicity": "*", - "role": "Orders", - "type": "NorthwindModel.Order", - }, - ], - "fullyQualifiedName": "NorthwindModel.FK_Orders_Employees", - "name": "FK_Orders_Employees", - "referentialConstraints": Array [ - Object { - "sourceProperty": "EmployeeID", - "sourceTypeName": "NorthwindModel.Order", - "targetProperty": "EmployeeID", - "targetTypeName": "NorthwindModel.Employee", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "*", - "role": "Territories", - "type": "NorthwindModel.Territory", - }, - Object { - "multiplicity": "*", - "role": "Employees", - "type": "NorthwindModel.Employee", - }, - ], - "fullyQualifiedName": "NorthwindModel.EmployeeTerritories", - "name": "EmployeeTerritories", - "referentialConstraints": Array [], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "Orders", - "type": "NorthwindModel.Order", - }, - Object { - "multiplicity": "*", - "role": "Order_Details", - "type": "NorthwindModel.Order_Detail", - }, - ], - "fullyQualifiedName": "NorthwindModel.FK_Order_Details_Orders", - "name": "FK_Order_Details_Orders", - "referentialConstraints": Array [ - Object { - "sourceProperty": "OrderID", - "sourceTypeName": "NorthwindModel.Order", - "targetProperty": "OrderID", - "targetTypeName": "NorthwindModel.Order_Detail", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "Products", - "type": "NorthwindModel.Product", - }, - Object { - "multiplicity": "*", - "role": "Order_Details", - "type": "NorthwindModel.Order_Detail", - }, - ], - "fullyQualifiedName": "NorthwindModel.FK_Order_Details_Products", - "name": "FK_Order_Details_Products", - "referentialConstraints": Array [ - Object { - "sourceProperty": "ProductID", - "sourceTypeName": "NorthwindModel.Product", - "targetProperty": "ProductID", - "targetTypeName": "NorthwindModel.Order_Detail", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "0..1", - "role": "Shippers", - "type": "NorthwindModel.Shipper", - }, - Object { - "multiplicity": "*", - "role": "Orders", - "type": "NorthwindModel.Order", - }, - ], - "fullyQualifiedName": "NorthwindModel.FK_Orders_Shippers", - "name": "FK_Orders_Shippers", - "referentialConstraints": Array [ - Object { - "sourceProperty": "ShipVia", - "sourceTypeName": "NorthwindModel.Order", - "targetProperty": "ShipperID", - "targetTypeName": "NorthwindModel.Shipper", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "0..1", - "role": "Suppliers", - "type": "NorthwindModel.Supplier", - }, - Object { - "multiplicity": "*", - "role": "Products", - "type": "NorthwindModel.Product", - }, - ], - "fullyQualifiedName": "NorthwindModel.FK_Products_Suppliers", - "name": "FK_Products_Suppliers", - "referentialConstraints": Array [ - Object { - "sourceProperty": "SupplierID", - "sourceTypeName": "NorthwindModel.Product", - "targetProperty": "SupplierID", - "targetTypeName": "NorthwindModel.Supplier", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "Region", - "type": "NorthwindModel.Region", - }, - Object { - "multiplicity": "*", - "role": "Territories", - "type": "NorthwindModel.Territory", - }, - ], - "fullyQualifiedName": "NorthwindModel.FK_Territories_Region", - "name": "FK_Territories_Region", - "referentialConstraints": Array [ - Object { - "sourceProperty": "RegionID", - "sourceTypeName": "NorthwindModel.Region", - "targetProperty": "RegionID", - "targetTypeName": "NorthwindModel.Territory", - }, - ], - }, - ], - "complexTypes": Array [], - "entityContainer": Object { - "_type": "EntityContainer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities", - "name": "NorthwindEntities", + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BusinessPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BusinessPartner", + "name": "BusinessPartner", + "navigationPropertyBinding": Object {}, }, - "entitySets": Array [ - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": [Circular], - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], - }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_MaterialBySlsOrgDistrChnl", + "name": "C_MaterialBySlsOrgDistrChnl", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_NotLockedSalesOrderTypeVH", + "name": "C_NotLockedSalesOrderTypeVH", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_ProductUnitsOfMeasureVH", + "name": "C_ProductUnitsOfMeasureVH", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], }, - "Orders": [Circular], }, - }, - "Employee": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": [Circular], - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": [Circular], - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], - }, - }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "owner": [Circular], }, }, }, - "Order_Details": [Circular], - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], - }, - }, }, }, - "Product": [Circular], - }, - }, - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], }, - }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": [Circular], - "Orders": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": [Circular], - "Employee": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": [Circular], - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": [Circular], - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], - }, - }, - }, - }, + "_MaterialDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, }, - }, - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": [Circular], - "Product": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, }, + "materialrating": [Circular], }, - "Order_Details": [Circular], - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, + "_MaterialRatings": [Circular], }, }, + "materialdetail": [Circular], }, }, - }, - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - }, - }, - }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], - }, - }, - "Orders": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": [Circular], - "Employee": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": [Circular], - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": [Circular], - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], - }, - }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - }, - }, - }, - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": [Circular], - "Product": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - }, - "Order_Details": [Circular], - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], + }, }, }, }, + "owner": [Circular], }, }, - }, - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], - }, - }, - "Orders": [Circular], + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, }, - }, - "Employee": [Circular], - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": [Circular], - "Product": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, - "Order_Details": [Circular], - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, - }, - }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, }, - }, - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, }, + "owner": [Circular], }, }, - }, - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": [Circular], - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": [Circular], + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, }, }, }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], - }, - }, - "Orders": [Circular], - }, - }, - "Employee": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": [Circular], - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": [Circular], - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], - }, - }, - }, - }, - }, - }, - "Order_Details": [Circular], - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], - }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.I_DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_DistributionChannel", + "name": "I_DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.I_OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_OrganizationDivision", + "name": "I_OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.I_SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_SalesOrganization", + "name": "I_SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], }, }, - }, - "Product": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, }, - }, - "Order_Details": [Circular], - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, }, - }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - }, - "Orders": [Circular], - }, - }, - "Employee": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": [Circular], - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": [Circular], - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], - }, - }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - }, - }, - }, - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": [Circular], - "Product": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], + "material": [Circular], + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - }, - "Order_Details": [Circular], - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, }, - }, - }, - }, - }, - }, - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], - }, - }, - "Orders": [Circular], + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - }, - "Employee": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": [Circular], - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": [Circular], - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], - }, - }, - }, - }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - }, - "Order_Details": [Circular], - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - }, - }, - "Product": [Circular], - }, - }, - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], - }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": [Circular], + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], }, - "Orders": [Circular], }, - }, - "Employee": [Circular], - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": [Circular], - "Product": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, - "Order_Details": [Circular], - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, }, - }, - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, }, }, - "Territories": [Circular], }, }, - "Region": [Circular], }, }, }, }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, + "_MaterialRatings": [Circular], }, - "Orders": [Circular], }, + "materialrating": [Circular], }, - "Employee": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": [Circular], - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": [Circular], - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], - }, - }, - }, - }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, + "_MaterialRatings": [Circular], }, - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": [Circular], - "Product": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, - "Order_Details": [Circular], - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, - }, + }, + "materialdetail": [Circular], + }, + }, + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], }, }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], }, - "Shipper": [Circular], }, }, }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], - }, - }, - "Orders": [Circular], - }, - }, - "Employee": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": [Circular], - "Territories": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": [Circular], - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], - }, - }, - }, - }, - }, - }, - "Order_Details": [Circular], - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], - }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], }, }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], }, - "Product": [Circular], }, }, - "Supplier": [Circular], + }, + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], + }, + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, }, }, }, }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Territory", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", - "name": "Territories", - "navigationPropertyBinding": Object { - "Employees": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Employee", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", - "name": "Employees", - "navigationPropertyBinding": Object { - "Orders": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", - "name": "Orders", - "navigationPropertyBinding": Object { - "Customer": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", - "name": "Customers", - "navigationPropertyBinding": Object { - "CustomerDemographics": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.CustomerDemographic", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", - "name": "CustomerDemographics", - "navigationPropertyBinding": Object { - "Customers": [Circular], - }, - }, - "Orders": [Circular], + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, + "_MaterialRatings": [Circular], }, - "Employee": [Circular], - "Order_Details": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Detail", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", - "name": "Order_Details", - "navigationPropertyBinding": Object { - "Order": [Circular], - "Product": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", - "name": "Products", - "navigationPropertyBinding": Object { - "Category": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", - "name": "Categories", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, - "Order_Details": [Circular], - "Supplier": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Supplier", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", - "name": "Suppliers", - "navigationPropertyBinding": Object { - "Products": [Circular], - }, - }, + }, + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], + }, + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, }, - }, - "Shipper": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Shipper", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", - "name": "Shippers", - "navigationPropertyBinding": Object { - "Orders": [Circular], + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, }, }, - "Territories": [Circular], - }, - }, - "Region": Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Region", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", - "name": "Regions", - "navigationPropertyBinding": Object { - "Territories": [Circular], }, }, }, }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Alphabetical_list_of_product", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Alphabetical_list_of_products", - "name": "Alphabetical_list_of_products", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Category_Sales_for_1997", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Category_Sales_for_1997", - "name": "Category_Sales_for_1997", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Current_Product_List", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Current_Product_Lists", - "name": "Current_Product_Lists", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Customer_and_Suppliers_by_City", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customer_and_Suppliers_by_Cities", - "name": "Customer_and_Suppliers_by_Cities", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Invoice", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Invoices", - "name": "Invoices", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Details_Extended", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details_Extendeds", - "name": "Order_Details_Extendeds", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Order_Subtotal", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Subtotals", - "name": "Order_Subtotals", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Orders_Qry", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders_Qries", - "name": "Orders_Qries", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Product_Sales_for_1997", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Product_Sales_for_1997", - "name": "Product_Sales_for_1997", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Products_Above_Average_Price", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products_Above_Average_Prices", - "name": "Products_Above_Average_Prices", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Products_by_Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products_by_Categories", - "name": "Products_by_Categories", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Sales_by_Category", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Sales_by_Categories", - "name": "Sales_by_Categories", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Sales_Totals_by_Amount", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Sales_Totals_by_Amounts", - "name": "Sales_Totals_by_Amounts", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Summary_of_Sales_by_Quarter", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Summary_of_Sales_by_Quarters", - "name": "Summary_of_Sales_by_Quarters", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "NorthwindModel.Summary_of_Sales_by_Year", - "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Summary_of_Sales_by_Years", - "name": "Summary_of_Sales_by_Years", - "navigationPropertyBinding": Object {}, - }, - ], - "entityTypes": Array [ - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Category/CategoryID", - "name": "CategoryID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Category/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Category/Description", - "maxLength": NaN, - "name": "Description", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Category/Picture", - "maxLength": NaN, - "name": "Picture", - "type": "Edm.Binary", - }, - ], - "fullyQualifiedName": "NorthwindModel.Category", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Category/CategoryID", - "name": "CategoryID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Category", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Categories", - "fullyQualifiedName": "NorthwindModel.Category/Products", - "name": "Products", - "referentialConstraint": Array [ - Object { - "sourceProperty": "CategoryID", - "sourceTypeName": "NorthwindModel.Category", - "targetProperty": "CategoryID", - "targetTypeName": "NorthwindModel.Product", - }, - ], - "relationship": "NorthwindModel.FK_Products_Categories", - "toRole": "Products", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.CustomerDemographic/CustomerTypeID", - "maxLength": 10, - "name": "CustomerTypeID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.CustomerDemographic/CustomerDesc", - "maxLength": NaN, - "name": "CustomerDesc", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.CustomerDemographic", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.CustomerDemographic/CustomerTypeID", - "maxLength": 10, - "name": "CustomerTypeID", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "CustomerDemographic", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "CustomerDemographics", - "fullyQualifiedName": "NorthwindModel.CustomerDemographic/Customers", - "name": "Customers", - "relationship": "NorthwindModel.CustomerCustomerDemo", - "toRole": "Customers", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/CustomerID", - "maxLength": 5, - "name": "CustomerID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/CompanyName", - "maxLength": 40, - "name": "CompanyName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/ContactName", - "maxLength": 30, - "name": "ContactName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/ContactTitle", - "maxLength": 30, - "name": "ContactTitle", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/Address", - "maxLength": 60, - "name": "Address", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/City", - "maxLength": 15, - "name": "City", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/Region", - "maxLength": 15, - "name": "Region", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/Country", - "maxLength": 15, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/Phone", - "maxLength": 24, - "name": "Phone", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/Fax", - "maxLength": 24, - "name": "Fax", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.Customer", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer/CustomerID", - "maxLength": 5, - "name": "CustomerID", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Customer", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Customers", - "fullyQualifiedName": "NorthwindModel.Customer/Orders", - "name": "Orders", - "referentialConstraint": Array [ - Object { - "sourceProperty": "CustomerID", - "sourceTypeName": "NorthwindModel.Customer", - "targetProperty": "CustomerID", - "targetTypeName": "NorthwindModel.Order", - }, - ], - "relationship": "NorthwindModel.FK_Orders_Customers", - "toRole": "Orders", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "Customers", - "fullyQualifiedName": "NorthwindModel.Customer/CustomerDemographics", - "name": "CustomerDemographics", - "relationship": "NorthwindModel.CustomerCustomerDemo", - "toRole": "CustomerDemographics", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/EmployeeID", - "name": "EmployeeID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/LastName", - "maxLength": 20, - "name": "LastName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/FirstName", - "maxLength": 10, - "name": "FirstName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/Title", - "maxLength": 30, - "name": "Title", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/TitleOfCourtesy", - "maxLength": 25, - "name": "TitleOfCourtesy", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/BirthDate", - "name": "BirthDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/HireDate", - "name": "HireDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/Address", - "maxLength": 60, - "name": "Address", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/City", - "maxLength": 15, - "name": "City", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/Region", - "maxLength": 15, - "name": "Region", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/Country", - "maxLength": 15, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/HomePhone", - "maxLength": 24, - "name": "HomePhone", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/Extension", - "maxLength": 4, - "name": "Extension", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/Photo", - "maxLength": NaN, - "name": "Photo", - "type": "Edm.Binary", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/Notes", - "maxLength": NaN, - "name": "Notes", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/ReportsTo", - "name": "ReportsTo", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/PhotoPath", - "maxLength": 255, - "name": "PhotoPath", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.Employee", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Employee/EmployeeID", - "name": "EmployeeID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Employee", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Employees", - "fullyQualifiedName": "NorthwindModel.Employee/Employees1", - "name": "Employees1", - "referentialConstraint": Array [ - Object { - "sourceProperty": "ReportsTo", - "sourceTypeName": "NorthwindModel.Employee", - "targetProperty": "EmployeeID", - "targetTypeName": "NorthwindModel.Employee", + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": [Circular], + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": [Circular], + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], + }, + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + }, + }, + }, + }, }, - ], - "relationship": "NorthwindModel.FK_Employees_Employees", - "toRole": "Employees1", + }, }, - Object { - "_type": "NavigationProperty", - "fromRole": "Employees1", - "fullyQualifiedName": "NorthwindModel.Employee/Employee1", - "name": "Employee1", - "referentialConstraint": Array [ - Object { - "sourceProperty": "ReportsTo", - "sourceTypeName": "NorthwindModel.Employee", - "targetProperty": "EmployeeID", - "targetTypeName": "NorthwindModel.Employee", + }, + "materialrating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": [Circular], + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], }, - ], - "relationship": "NorthwindModel.FK_Employees_Employees", - "toRole": "Employees", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "Employees", - "fullyQualifiedName": "NorthwindModel.Employee/Orders", - "name": "Orders", - "referentialConstraint": Array [ - Object { - "sourceProperty": "EmployeeID", - "sourceTypeName": "NorthwindModel.Employee", - "targetProperty": "EmployeeID", - "targetTypeName": "NorthwindModel.Order", + }, + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], + }, + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + }, + }, }, - ], - "relationship": "NorthwindModel.FK_Orders_Employees", - "toRole": "Orders", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "Employees", - "fullyQualifiedName": "NorthwindModel.Employee/Territories", - "name": "Territories", - "relationship": "NorthwindModel.EmployeeTerritories", - "toRole": "Territories", + }, }, - ], + }, }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Detail/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Detail/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Detail/UnitPrice", - "name": "UnitPrice", - "nullable": false, - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Detail/Quantity", - "name": "Quantity", - "nullable": false, - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Detail/Discount", - "name": "Discount", - "nullable": false, - "type": "Edm.Single", - }, - ], - "fullyQualifiedName": "NorthwindModel.Order_Detail", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Detail/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Detail/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Order_Detail", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Order_Details", - "fullyQualifiedName": "NorthwindModel.Order_Detail/Order", - "name": "Order", - "referentialConstraint": Array [ - Object { - "sourceProperty": "OrderID", - "sourceTypeName": "NorthwindModel.Order_Detail", - "targetProperty": "OrderID", - "targetTypeName": "NorthwindModel.Order", - }, - ], - "relationship": "NorthwindModel.FK_Order_Details_Orders", - "toRole": "Orders", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "Order_Details", - "fullyQualifiedName": "NorthwindModel.Order_Detail/Product", - "name": "Product", - "referentialConstraint": Array [ - Object { - "sourceProperty": "ProductID", - "sourceTypeName": "NorthwindModel.Order_Detail", - "targetProperty": "ProductID", - "targetTypeName": "NorthwindModel.Product", - }, - ], - "relationship": "NorthwindModel.FK_Order_Details_Products", - "toRole": "Products", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/CustomerID", - "maxLength": 5, - "name": "CustomerID", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/EmployeeID", - "name": "EmployeeID", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/OrderDate", - "name": "OrderDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/RequiredDate", - "name": "RequiredDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/ShippedDate", - "name": "ShippedDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/ShipVia", - "name": "ShipVia", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/Freight", - "name": "Freight", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/ShipName", - "maxLength": 40, - "name": "ShipName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/ShipAddress", - "maxLength": 60, - "name": "ShipAddress", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/ShipCity", - "maxLength": 15, - "name": "ShipCity", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/ShipRegion", - "maxLength": 15, - "name": "ShipRegion", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/ShipPostalCode", - "maxLength": 10, - "name": "ShipPostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/ShipCountry", - "maxLength": 15, - "name": "ShipCountry", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.Order", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Order", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Orders", - "fullyQualifiedName": "NorthwindModel.Order/Customer", - "name": "Customer", - "referentialConstraint": Array [ - Object { - "sourceProperty": "CustomerID", - "sourceTypeName": "NorthwindModel.Order", - "targetProperty": "CustomerID", - "targetTypeName": "NorthwindModel.Customer", - }, - ], - "relationship": "NorthwindModel.FK_Orders_Customers", - "toRole": "Customers", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "Orders", - "fullyQualifiedName": "NorthwindModel.Order/Employee", - "name": "Employee", - "referentialConstraint": Array [ - Object { - "sourceProperty": "EmployeeID", - "sourceTypeName": "NorthwindModel.Order", - "targetProperty": "EmployeeID", - "targetTypeName": "NorthwindModel.Employee", - }, - ], - "relationship": "NorthwindModel.FK_Orders_Employees", - "toRole": "Employees", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "Orders", - "fullyQualifiedName": "NorthwindModel.Order/Order_Details", - "name": "Order_Details", - "referentialConstraint": Array [ - Object { - "sourceProperty": "OrderID", - "sourceTypeName": "NorthwindModel.Order", - "targetProperty": "OrderID", - "targetTypeName": "NorthwindModel.Order_Detail", - }, - ], - "relationship": "NorthwindModel.FK_Order_Details_Orders", - "toRole": "Order_Details", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "Orders", - "fullyQualifiedName": "NorthwindModel.Order/Shipper", - "name": "Shipper", - "referentialConstraint": Array [ - Object { - "sourceProperty": "ShipVia", - "sourceTypeName": "NorthwindModel.Order", - "targetProperty": "ShipperID", - "targetTypeName": "NorthwindModel.Shipper", + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "owner": [Circular], + }, + }, }, - ], - "relationship": "NorthwindModel.FK_Orders_Shippers", - "toRole": "Shippers", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/SupplierID", - "name": "SupplierID", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/CategoryID", - "name": "CategoryID", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/QuantityPerUnit", - "maxLength": 20, - "name": "QuantityPerUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/UnitPrice", - "name": "UnitPrice", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/UnitsInStock", - "name": "UnitsInStock", - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/UnitsOnOrder", - "name": "UnitsOnOrder", - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/ReorderLevel", - "name": "ReorderLevel", - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/Discontinued", - "name": "Discontinued", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "NorthwindModel.Product", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", + }, }, - ], - "name": "Product", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Products", - "fullyQualifiedName": "NorthwindModel.Product/Category", - "name": "Category", - "referentialConstraint": Array [ - Object { - "sourceProperty": "CategoryID", - "sourceTypeName": "NorthwindModel.Product", - "targetProperty": "CategoryID", - "targetTypeName": "NorthwindModel.Category", + }, + "_MaterialDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialdetail": [Circular], }, - ], - "relationship": "NorthwindModel.FK_Products_Categories", - "toRole": "Categories", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "Products", - "fullyQualifiedName": "NorthwindModel.Product/Order_Details", - "name": "Order_Details", - "referentialConstraint": Array [ - Object { - "sourceProperty": "ProductID", - "sourceTypeName": "NorthwindModel.Product", - "targetProperty": "ProductID", - "targetTypeName": "NorthwindModel.Order_Detail", + }, + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], + }, + }, }, - ], - "relationship": "NorthwindModel.FK_Order_Details_Products", - "toRole": "Order_Details", + }, + "owner": [Circular], }, - Object { - "_type": "NavigationProperty", - "fromRole": "Products", - "fullyQualifiedName": "NorthwindModel.Product/Supplier", - "name": "Supplier", - "referentialConstraint": Array [ - Object { - "sourceProperty": "SupplierID", - "sourceTypeName": "NorthwindModel.Product", - "targetProperty": "SupplierID", - "targetTypeName": "NorthwindModel.Supplier", + }, + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], }, - ], - "relationship": "NorthwindModel.FK_Products_Suppliers", - "toRole": "Suppliers", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Region/RegionID", - "name": "RegionID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Region/RegionDescription", - "maxLength": 50, - "name": "RegionDescription", - "nullable": false, - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.Region", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Region/RegionID", - "name": "RegionID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Region", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Region", - "fullyQualifiedName": "NorthwindModel.Region/Territories", - "name": "Territories", - "referentialConstraint": Array [ - Object { - "sourceProperty": "RegionID", - "sourceTypeName": "NorthwindModel.Region", - "targetProperty": "RegionID", - "targetTypeName": "NorthwindModel.Territory", + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, }, - ], - "relationship": "NorthwindModel.FK_Territories_Region", - "toRole": "Territories", + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, }, - ], + }, }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Shipper/ShipperID", - "name": "ShipperID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Shipper/CompanyName", - "maxLength": 40, - "name": "CompanyName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Shipper/Phone", - "maxLength": 24, - "name": "Phone", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.Shipper", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Shipper/ShipperID", - "name": "ShipperID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Shipper", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Shippers", - "fullyQualifiedName": "NorthwindModel.Shipper/Orders", - "name": "Orders", - "referentialConstraint": Array [ - Object { - "sourceProperty": "ShipperID", - "sourceTypeName": "NorthwindModel.Shipper", - "targetProperty": "ShipVia", - "targetTypeName": "NorthwindModel.Order", - }, - ], - "relationship": "NorthwindModel.FK_Orders_Shippers", - "toRole": "Orders", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/SupplierID", - "name": "SupplierID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/CompanyName", - "maxLength": 40, - "name": "CompanyName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/ContactName", - "maxLength": 30, - "name": "ContactName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/ContactTitle", - "maxLength": 30, - "name": "ContactTitle", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/Address", - "maxLength": 60, - "name": "Address", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/City", - "maxLength": 15, - "name": "City", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/Region", - "maxLength": 15, - "name": "Region", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/Country", - "maxLength": 15, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/Phone", - "maxLength": 24, - "name": "Phone", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/Fax", - "maxLength": 24, - "name": "Fax", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/HomePage", - "maxLength": NaN, - "name": "HomePage", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.Supplier", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Supplier/SupplierID", - "name": "SupplierID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Supplier", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Suppliers", - "fullyQualifiedName": "NorthwindModel.Supplier/Products", - "name": "Products", - "referentialConstraint": Array [ - Object { - "sourceProperty": "SupplierID", - "sourceTypeName": "NorthwindModel.Supplier", - "targetProperty": "SupplierID", - "targetTypeName": "NorthwindModel.Product", + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "owner": [Circular], + }, + }, + }, + }, }, - ], - "relationship": "NorthwindModel.FK_Products_Suppliers", - "toRole": "Products", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Territory/TerritoryID", - "maxLength": 20, - "name": "TerritoryID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Territory/TerritoryDescription", - "maxLength": 50, - "name": "TerritoryDescription", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Territory/RegionID", - "name": "RegionID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "fullyQualifiedName": "NorthwindModel.Territory", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Territory/TerritoryID", - "maxLength": 20, - "name": "TerritoryID", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Territory", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "Territories", - "fullyQualifiedName": "NorthwindModel.Territory/Region", - "name": "Region", - "referentialConstraint": Array [ - Object { - "sourceProperty": "RegionID", - "sourceTypeName": "NorthwindModel.Territory", - "targetProperty": "RegionID", - "targetTypeName": "NorthwindModel.Region", + }, + "_MaterialDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialdetail": [Circular], + }, + }, + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], + }, + }, + }, + }, + "owner": [Circular], }, - ], - "relationship": "NorthwindModel.FK_Territories_Region", - "toRole": "Region", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "Territories", - "fullyQualifiedName": "NorthwindModel.Territory/Employees", - "name": "Employees", - "relationship": "NorthwindModel.EmployeeTerritories", - "toRole": "Employees", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/SupplierID", - "name": "SupplierID", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/CategoryID", - "name": "CategoryID", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/QuantityPerUnit", - "maxLength": 20, - "name": "QuantityPerUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/UnitPrice", - "name": "UnitPrice", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/UnitsInStock", - "name": "UnitsInStock", - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/UnitsOnOrder", - "name": "UnitsOnOrder", - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ReorderLevel", - "name": "ReorderLevel", - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/Discontinued", - "name": "Discontinued", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/Discontinued", - "name": "Discontinued", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Alphabetical_list_of_product", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Category_Sales_for_1997/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Category_Sales_for_1997/CategorySales", - "name": "CategorySales", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "NorthwindModel.Category_Sales_for_1997", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Category_Sales_for_1997/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Category_Sales_for_1997", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Current_Product_List/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Current_Product_List/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.Current_Product_List", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Current_Product_List/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Current_Product_List/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Current_Product_List", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/City", - "maxLength": 15, - "name": "City", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/CompanyName", - "maxLength": 40, - "name": "CompanyName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/ContactName", - "maxLength": 30, - "name": "ContactName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/Relationship", - "maxLength": 9, - "name": "Relationship", - "nullable": false, - "type": "Edm.String", + }, + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": [Circular], }, - ], - "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/CompanyName", - "maxLength": 40, - "name": "CompanyName", - "nullable": false, - "type": "Edm.String", + }, + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/Relationship", - "maxLength": 9, - "name": "Relationship", - "nullable": false, - "type": "Edm.String", + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, }, - ], - "name": "Customer_and_Suppliers_by_City", - "navigationProperties": Array [], + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ShipName", - "maxLength": 40, - "name": "ShipName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ShipAddress", - "maxLength": 60, - "name": "ShipAddress", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ShipCity", - "maxLength": 15, - "name": "ShipCity", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ShipRegion", - "maxLength": 15, - "name": "ShipRegion", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ShipPostalCode", - "maxLength": 10, - "name": "ShipPostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ShipCountry", - "maxLength": 15, - "name": "ShipCountry", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/CustomerID", - "maxLength": 5, - "name": "CustomerID", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/CustomerName", - "maxLength": 40, - "name": "CustomerName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Address", - "maxLength": 60, - "name": "Address", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/City", - "maxLength": 15, - "name": "City", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Region", - "maxLength": 15, - "name": "Region", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Country", - "maxLength": 15, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Salesperson", - "maxLength": 31, - "name": "Salesperson", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/OrderDate", - "name": "OrderDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/RequiredDate", - "name": "RequiredDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ShippedDate", - "name": "ShippedDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ShipperName", - "maxLength": 40, - "name": "ShipperName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/UnitPrice", - "name": "UnitPrice", - "nullable": false, - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Quantity", - "name": "Quantity", - "nullable": false, - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Discount", - "name": "Discount", - "nullable": false, - "type": "Edm.Single", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ExtendedPrice", - "name": "ExtendedPrice", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Freight", - "name": "Freight", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "NorthwindModel.Invoice", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/CustomerName", - "maxLength": 40, - "name": "CustomerName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Salesperson", - "maxLength": 31, - "name": "Salesperson", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ShipperName", - "maxLength": 40, - "name": "ShipperName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/UnitPrice", - "name": "UnitPrice", - "nullable": false, - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Quantity", - "name": "Quantity", - "nullable": false, - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Invoice/Discount", - "name": "Discount", - "nullable": false, - "type": "Edm.Single", - }, - ], - "name": "Invoice", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/UnitPrice", - "name": "UnitPrice", - "nullable": false, - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/Quantity", - "name": "Quantity", - "nullable": false, - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/Discount", - "name": "Discount", - "nullable": false, - "type": "Edm.Single", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ExtendedPrice", - "name": "ExtendedPrice", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ProductID", - "name": "ProductID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/UnitPrice", - "name": "UnitPrice", - "nullable": false, - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/Quantity", - "name": "Quantity", - "nullable": false, - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/Discount", - "name": "Discount", - "nullable": false, - "type": "Edm.Single", - }, - ], - "name": "Order_Details_Extended", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Subtotal/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Subtotal/Subtotal", - "name": "Subtotal", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "NorthwindModel.Order_Subtotal", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Order_Subtotal/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Order_Subtotal", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/CustomerID", - "maxLength": 5, - "name": "CustomerID", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/EmployeeID", - "name": "EmployeeID", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/OrderDate", - "name": "OrderDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/RequiredDate", - "name": "RequiredDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShippedDate", - "name": "ShippedDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipVia", - "name": "ShipVia", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/Freight", - "name": "Freight", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipName", - "maxLength": 40, - "name": "ShipName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipAddress", - "maxLength": 60, - "name": "ShipAddress", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipCity", - "maxLength": 15, - "name": "ShipCity", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipRegion", - "maxLength": 15, - "name": "ShipRegion", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipPostalCode", - "maxLength": 10, - "name": "ShipPostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipCountry", - "maxLength": 15, - "name": "ShipCountry", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/CompanyName", - "maxLength": 40, - "name": "CompanyName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/Address", - "maxLength": 60, - "name": "Address", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/City", - "maxLength": 15, - "name": "City", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/Region", - "maxLength": 15, - "name": "Region", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/Country", - "maxLength": 15, - "name": "Country", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "NorthwindModel.Orders_Qry", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Orders_Qry/CompanyName", - "maxLength": 40, - "name": "CompanyName", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Orders_Qry", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/ProductSales", - "name": "ProductSales", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Product_Sales_for_1997", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_Above_Average_Price/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_Above_Average_Price/UnitPrice", - "name": "UnitPrice", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "NorthwindModel.Products_Above_Average_Price", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_Above_Average_Price/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Products_Above_Average_Price", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_by_Category/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_by_Category/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_by_Category/QuantityPerUnit", - "maxLength": 20, - "name": "QuantityPerUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_by_Category/UnitsInStock", - "name": "UnitsInStock", - "type": "Edm.Int16", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_by_Category/Discontinued", - "name": "Discontinued", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "NorthwindModel.Products_by_Category", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_by_Category/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_by_Category/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Products_by_Category/Discontinued", - "name": "Discontinued", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "name": "Products_by_Category", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_by_Category/CategoryID", - "name": "CategoryID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_by_Category/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_by_Category/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_by_Category/ProductSales", - "name": "ProductSales", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "NorthwindModel.Sales_by_Category", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_by_Category/CategoryID", - "name": "CategoryID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_by_Category/CategoryName", - "maxLength": 15, - "name": "CategoryName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_by_Category/ProductName", - "maxLength": 40, - "name": "ProductName", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Sales_by_Category", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/SaleAmount", - "name": "SaleAmount", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/CompanyName", - "maxLength": 40, - "name": "CompanyName", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/ShippedDate", - "name": "ShippedDate", - "type": "Edm.DateTime", - }, - ], - "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/CompanyName", - "maxLength": 40, - "name": "CompanyName", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Sales_Totals_by_Amount", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter/ShippedDate", - "name": "ShippedDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter/Subtotal", - "name": "Subtotal", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Summary_of_Sales_by_Quarter", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year/ShippedDate", - "name": "ShippedDate", - "type": "Edm.DateTime", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year/Subtotal", - "name": "Subtotal", - "precision": 19, - "scale": 4, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year/OrderID", - "name": "OrderID", - "nullable": false, - "type": "Edm.Int32", - }, - ], - "name": "Summary_of_Sales_by_Year", - "navigationProperties": Array [], - }, - ], - "namespace": "ODataWebV3.Northwind.Model", - "singletons": Array [], - "typeDefinitions": Array [], - }, - "version": "1.0", -} -`; - -exports[`Parser can convertTypes the worklist edmx file 1`] = ` -RawMetadataInstance { - "identification": "serviceFile", - "references": Array [ - Object { - "alias": "Common", - "namespace": "com.sap.vocabularies.Common.v1", - "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMON',Version='0001',SAP__Origin='LOCAL')/$value", }, Object { - "alias": "Capabilities", - "namespace": "Org.OData.Capabilities.V1", - "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_CAPABILITIES',Version='0001',SAP__Origin='LOCAL')/$value", + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, }, Object { - "alias": "Communication", - "namespace": "com.sap.vocabularies.Communication.v1", - "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMUNICATION',Version='0001',SAP__Origin='LOCAL')/$value", + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, }, Object { - "alias": "Aggregation", - "namespace": "Org.OData.Aggregation.V1", - "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_AGGREGATION',Version='0001',SAP__Origin='LOCAL')/$value", + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, }, Object { - "alias": "PersonalData", - "namespace": "com.sap.vocabularies.PersonalData.v1", - "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_PERSONALDATA',Version='0001',SAP__Origin='LOCAL')/$value", + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, }, Object { - "alias": "Validation", - "namespace": "Org.OData.Validation.V1", - "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_VALIDATION',Version='0001',SAP__Origin='LOCAL')/$value", + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, }, Object { - "alias": "Analytics", - "namespace": "com.sap.vocabularies.Analytics.v1", - "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_ANALYTICS',Version='0001',SAP__Origin='LOCAL')/$value", + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, }, + ], + "_entityTypes": Array [ Object { - "alias": "Measures", - "namespace": "Org.OData.Measures.V1", - "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_MEASURES',Version='0001',SAP__Origin='LOCAL')/$value", + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + "maxLength": 2, + "name": "BillingBlockReason", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", + "maxLength": 20, + "name": "BillingBlockReason_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + "maxLength": 2, + "name": "BillingBlockReason", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "BillingBlockReason", + "navigationProperties": Array [], }, Object { - "alias": "UI", - "namespace": "com.sap.vocabularies.UI.v1", - "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_UI',Version='0001',SAP__Origin='LOCAL')/$value", - }, - ], - "schema": Object { - "actions": Array [ - Object { - "_type": "Action", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/AFF8CCF97ADelete_stta_i_so_salesorder_nd()", - "isBound": false, - "isFunction": false, - "name": "AFF8CCF97ADelete_stta_i_so_salesorder_nd", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/AFF8CCF97ADelete_stta_i_so_salesorder_nd()/SalesOrderID", - "isEntitySet": false, - "name": "SalesOrderID", - "type": "Edm.String", - }, - ], - "returnType": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult", - "sourceType": "", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/AFF8CCF97ACESave_stta_i_so_salesorder_nd()", - "isBound": false, - "isFunction": false, - "name": "AFF8CCF97ACESave_stta_i_so_salesorder_nd", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/AFF8CCF97ACESave_stta_i_so_salesorder_nd()/SalesOrderID", - "isEntitySet": false, - "name": "SalesOrderID", - "type": "Edm.String", - }, - ], - "returnType": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "sourceType": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSetopportunityid()", - "isBound": false, - "isFunction": false, - "name": "STTA_C_SO_SalesOrder_NDSetopportunityid", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSetopportunityid()/SalesOrderID", - "isEntitySet": false, - "name": "SalesOrderID", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSetopportunityid()/OpId", - "isEntitySet": false, - "name": "OpId", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSetopportunityid()/OpidFc", - "isEntitySet": false, - "name": "OpidFc", - "type": "Edm.Byte", - }, - ], - "returnType": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "sourceType": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()", - "isBound": false, - "isFunction": false, - "name": "STTA_C_SO_SalesOrder_NDSet_currency_code", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/SalesOrderID", - "isEntitySet": false, - "name": "SalesOrderID", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/CurrencyCode", - "isEntitySet": false, - "name": "CurrencyCode", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/Areyousure", - "isEntitySet": false, - "name": "Areyousure", - "type": "Edm.Boolean", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/Timetochange", - "isEntitySet": false, - "name": "Timetochange", - "type": "Edm.DateTime", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/Datetochange", - "isEntitySet": false, - "name": "Datetochange", - "type": "Edm.DateTime", - }, - ], - "returnType": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult", - "sourceType": "", - }, - ], - "annotations": Object { - "serviceFile": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Lower Value", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Status_Text", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Short Descript.", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status_Text", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", + "maxLength": 2, + "name": "PartnerFunction", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Item ATP Status", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/BusinessPartner", + "maxLength": 10, + "name": "BusinessPartner", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Lower Value", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Status_Text", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/FullName", + "maxLength": 80, + "name": "FullName", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Short Descript.", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status_Text", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PhoneNumber", + "maxLength": 30, + "name": "PhoneNumber", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Confirmation Status", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/MobilePhoneNumber", + "maxLength": 30, + "name": "MobilePhoneNumber", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Lower Value", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Status_Text", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/EmailAddress", + "maxLength": 241, + "name": "EmailAddress", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Short Descript.", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status_Text", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Delivery Status", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Lower Value", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Status_Text", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", + "maxLength": 2, + "name": "PartnerFunction", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "BusinessPartner", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Short Descript.", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status_Text", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Lifecycle Status", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Business Partner ID", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CompanyName", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + "maxLength": 40, + "name": "Material", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Bus. Part. Role", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerRole", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", + "maxLength": 40, + "name": "MaterialName", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Email", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/MailAddress", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", + "maxLength": 40, + "name": "RequestedQuantityUnit", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Phone", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/PhoneNumber", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", + "maxLength": 40, + "name": "MaterialBaseUnit", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Phone", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/FaxNumber", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", + "maxLength": 40, + "name": "SalesMeasureUnit", + "type": "Edm.String", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Company", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/CompanyName", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Legal Form", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/LegalForm", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Currency Code", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/CurrencyCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + "maxLength": 40, + "name": "Material", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "C_MaterialBySlsOrgDistrChnl", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Business Partner", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Currency", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Currency_Text", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", + "maxLength": 20, + "name": "SalesOrderType_Text", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Short Text", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency_Text", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", + "maxLength": 4, + "name": "SalesDocumentTypeLangDepdnt", + "nullable": false, + "type": "Edm.String", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "ISO Code", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/CurrencyISOCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "C_NotLockedSalesOrderTypeVH", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Currency", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + "maxLength": 18, + "name": "Product", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Product ID", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ProductID_Text", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + "maxLength": 40, + "name": "AlternativeUnit", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID_Text", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", + "maxLength": 30, + "name": "AlternativeUnit_Text", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Type Code", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/TypeCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", + "name": "QuantityNumerator", + "precision": 5, + "scale": 0, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Category", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Category", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", + "name": "QuantityDenominator", + "precision": 5, + "scale": 0, + "type": "Edm.Decimal", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Tax Tariff Code", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/TaxTarifCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + "maxLength": 18, + "name": "Product", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Unit of Measure", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/MeasureUnit", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + "maxLength": 40, + "name": "AlternativeUnit", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "C_ProductUnitsOfMeasureVH", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Weight", - "type": "String", - }, - }, - Object { - "term": "Org.OData.Measures.V1.Unit", - "value": Object { - "Path": "WeightUnit", - "type": "Path", - }, - }, - Object { - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "WeightUnit", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/WeightMeasure", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Unit of Measure", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/WeightUnit", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", + "name": "CustomerCreditExposureAmount", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Price", - "type": "String", - }, - }, - Object { - "term": "Org.OData.Measures.V1.Unit", - "value": Object { - "Path": "CurrencyCode", - "type": "Path", - }, - }, - Object { - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "CurrencyCode", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Price", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Currency Code", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/CurrencyCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", + "name": "CustomerCreditExposureAmountHidden", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Image", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/PictureURL", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", + "name": "CustomerCreditForecast", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Width", - "type": "String", - }, - }, - Object { - "term": "Org.OData.Measures.V1.Unit", - "value": Object { - "Path": "DimensionUnit", - "type": "Path", - }, - }, - Object { - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "DimensionUnit", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Width", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount_text", + "maxLength": 15, + "name": "CustomerCreditExposureAmount_text", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Depth", - "type": "String", - }, - }, - Object { - "term": "Org.OData.Measures.V1.Unit", - "value": Object { - "Path": "DimensionUnit", - "type": "Path", - }, - }, - Object { - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "DimensionUnit", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Depth", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", + "name": "CustomerCreditLimitAmount", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Height", - "type": "String", - }, - }, - Object { - "term": "Org.OData.Measures.V1.Unit", - "value": Object { - "Path": "DimensionUnit", - "type": "Path", - }, - }, - Object { - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "DimensionUnit", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Height", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/MaximumCreditValue", + "name": "MaximumCreditValue", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dimension Unit", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/DimensionUnit", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount_text", + "maxLength": 15, + "name": "CustomerCreditLimitAmount_text", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Product", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/TransactionCurrency", + "maxLength": 5, + "name": "TransactionCurrency", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Internal UoM", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "UnitOfMeasure_Text", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerIsAboveThreshold", + "name": "CustomerIsAboveThreshold", + "type": "Edm.Int32", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Technical", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure_Text", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeLow", + "name": "ToleranceRangeLow", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dimension", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "UnitOfMeasureDimension_Text", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasureDimension", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeHigh", + "name": "ToleranceRangeHigh", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dimension text", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasureDimension_Text", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeLow", + "name": "DeviationRangeLow", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Unit of Measure", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeHigh", + "name": "DeviationRangeHigh", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order ID", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeLow", + "name": "AcceptanceRangeLow", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item Position", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderItemID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeHigh", + "name": "AcceptanceRangeHigh", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Product ID", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "to_Product/ProductID_Text", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/ProductID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "CreditLimitDetails", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Quantity", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/Quantity", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", + "maxLength": 10, + "name": "Customer", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Internal UoM", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "to_UnitOfMeasure/UnitOfMeasure_Text", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/QuantityUnitCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CustomerName", + "maxLength": 80, + "name": "CustomerName", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/DeliveryDate", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Currency", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CurrencyCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", + "maxLength": 35, + "name": "OrganizationBPName1", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Gross Amount", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/GrossAmount", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", + "maxLength": 35, + "name": "OrganizationBPName2", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/NetAmount", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", + "name": "BusinessPartnerImageURL", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Tax Amount", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/TaxAmount", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "ATP Status", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "to_AvailableToPromiseStatus/Status_Text", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/AvailableToPromiseStatus", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CityName", + "maxLength": 40, + "name": "CityName", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item Position", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/OpportunityItemID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CreationDateTime", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", + "maxLength": 30, + "name": "InternationalPhoneNumber", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "User Name", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CreationUserName", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/EmailAddress", + "maxLength": 241, + "name": "EmailAddress", + "type": "Edm.String", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/LastChangedDateTime", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", + "maxLength": 10, + "name": "Customer", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "Customer", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "User Name", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/LastChangedUserName", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Item non draft", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", + "maxLength": 30, + "name": "CustomerPaymentTerms_Text", + "type": "Edm.String", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order ID", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "CustomerPaymentTerms", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item Position", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderItemID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", + "maxLength": 4, + "name": "CustomerPurchaseOrderType", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/DeliveryDate", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", + "maxLength": 20, + "name": "CustomerPurchaseOrderType_Text", + "type": "Edm.String", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Quantity", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/Quantity", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", + "maxLength": 4, + "name": "CustomerPurchaseOrderType", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "CustomerPurchaseOrderType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Internal UoM", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "to_UnitOfMeasure/UnitOfMeasure_Text", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/QuantityUnitCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", + "maxLength": 2, + "name": "DeliveryBlockReason", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/CreationDateTime", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", + "maxLength": 20, + "name": "DeliveryBlockReason_Text", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "User Name", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/CreationUserName", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", + "name": "DeliveryDueListBlock", + "type": "Edm.Boolean", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/LastChangedDateTime", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", + "maxLength": 2, + "name": "DeliveryBlockReason", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "DeliveryBlockReason", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "User Name", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/LastChangedUserName", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", + "maxLength": 2, + "name": "DeliveryPriority", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order ScheduleLine non draft", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", + "maxLength": 20, + "name": "DeliveryPriority_Text", + "type": "Edm.String", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonFilterableProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Delete_stta_i_so_salesorder_nd_ac", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.FilterRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonSortableProperties", - "value": Object { - "PropertyPath": "Delete_stta_i_so_salesorder_nd_ac", - "type": "PropertyPath", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SortRestrictions", - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dyn. Action Control", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Delete_stta_i_so_salesorder_nd_ac", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", + "maxLength": 2, + "name": "DeliveryPriority", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "DeliveryPriority", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonFilterableProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Save_stta_i_so_salesorder_nd_ac", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.FilterRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonSortableProperties", - "value": Object { - "PropertyPath": "Save_stta_i_so_salesorder_nd_ac", - "type": "PropertyPath", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SortRestrictions", - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dyn. Action Control", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Save_stta_i_so_salesorder_nd_ac", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonFilterableProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Setopportunityid_ac", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.FilterRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonSortableProperties", - "value": Object { - "PropertyPath": "Setopportunityid_ac", - "type": "PropertyPath", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SortRestrictions", - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dyn. Action Control", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Setopportunityid_ac", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", + "maxLength": 20, + "name": "DistributionChannel_Text", + "type": "Edm.String", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonFilterableProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Set_currency_code_ac", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.FilterRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonSortableProperties", - "value": Object { - "PropertyPath": "Set_currency_code_ac", - "type": "PropertyPath", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SortRestrictions", - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dyn. Action Control", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Set_currency_code_ac", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "DistributionChannel", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonFilterableProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Update_mc", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.FilterRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonSortableProperties", - "value": Object { - "PropertyPath": "Update_mc", - "type": "PropertyPath", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SortRestrictions", - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dyn. Method Control", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Update_mc", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", + "name": "DraftUUID", + "nullable": false, + "type": "Edm.Guid", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order ID", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID", - }, - Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Business Partner ID", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "to_BusinessPartner/CompanyName", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BusinessPartnerID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreationDateTime", + "name": "CreationDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Currency", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "to_Currency/Currency_Text", - "type": "Path", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CurrencyCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreatedByUser", + "maxLength": 256, + "name": "CreatedByUser", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Gross Amount", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/GrossAmount", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsCreatedByMe", + "name": "DraftIsCreatedByMe", + "type": "Edm.Boolean", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/NetAmount", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangeDateTime", + "name": "LastChangeDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Tax Amount", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/TaxAmount", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangedByUser", + "maxLength": 256, + "name": "LastChangedByUser", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Lifecycle Status", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "to_LifecycleStatus/Status_Text", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LifecycleStatus", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/InProcessByUser", + "maxLength": 256, + "name": "InProcessByUser", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Confirmation Status", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "to_BillingStatus/Status_Text", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BillingStatus", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsProcessedByMe", + "name": "DraftIsProcessedByMe", + "type": "Edm.Boolean", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData", + "keys": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "to_DeliveryStatus/Status_Text", - "type": "Path", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/DeliveryStatus", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", + "name": "DraftUUID", + "nullable": false, + "type": "Edm.Guid", }, + ], + "name": "DraftAdministrativeData", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Opportunity ID", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/OpportunityID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "TRUE", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Approved", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "COMMENT", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/ApprovalComment", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", + "maxLength": 2, + "name": "PartnerFunction", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CreationDateTime", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", + "maxLength": 10, + "name": "BusinessPartner", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "User Name", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CreationUserName", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Rating", + "name": "Rating", + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LastChangedDateTime", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Progress", + "name": "Progress", + "precision": 4, + "scale": 1, + "type": "Edm.Decimal", }, Object { - "annotations": Array [ - Object { - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "User Name", - "type": "String", - }, - }, - Object { - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LastChangedUserName", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SemanticObject", + "maxLength": 15, + "name": "SemanticObject", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID2", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/AddressID", + "maxLength": 10, + "name": "AddressID", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order non draft", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/FullName", + "maxLength": 80, + "name": "FullName", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "TRUE", - "type": "String", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult/IsInvalid", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", + "maxLength": 30, + "name": "PhoneNumber", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/CityName", + "maxLength": 40, + "name": "CityName", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", }, Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner_ID", + "name": "owner_ID", + "type": "Edm.Guid", }, Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", }, Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", }, Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner", + "keys": Array [ Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", }, Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderSL_ND", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", }, + ], + "name": "HeaderPartner", + "navigationProperties": Array [ Object { - "annotations": Array [ - Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Path": "Update_mc", - "type": "Path", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner", + "isCollection": false, + "name": "owner", + "partner": "_Partner", + "referentialConstraint": Array [ Object { - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", + "sourceProperty": "owner_ID", + "sourceTypeName": "HeaderPartner", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", }, ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Product", - "type": "String", - }, - }, - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_PrototypeProduct", - "type": "String", - }, - }, - Object { - "name": "SearchSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ProductID_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "ProductID", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ProductID", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/ProductID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Unit of Measure", - "type": "String", - }, - }, - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_PrototypeUnitOfMeasure", - "type": "String", - }, - }, - Object { - "name": "SearchSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "QuantityUnitCode", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "UnitOfMeasure", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "UnitOfMeasure_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "UnitOfMeasureDimension_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/QuantityUnitCode", + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Sales Order Item ATP Status", - "type": "String", - }, - }, - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_AIS_SOI_Atp_Status", - "type": "String", - }, - }, - Object { - "name": "SearchSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "AvailableToPromiseStatus", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Status", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Status_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/AvailableToPromiseStatus", + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Unit of Measure", - "type": "String", - }, - }, - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_PrototypeUnitOfMeasure", - "type": "String", - }, - }, - Object { - "name": "SearchSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "QuantityUnitCode", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "UnitOfMeasure", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "UnitOfMeasure_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "UnitOfMeasureDimension_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/QuantityUnitCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Business Partner", - "type": "String", - }, - }, - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_PrototypeBusinessPartner", - "type": "String", - }, - }, - Object { - "name": "SearchSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CompanyName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "BusinessPartnerID", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "BusinessPartnerID", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BusinessPartnerID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", + "maxLength": 10, + "name": "BusinessPartner", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Currency", - "type": "String", - }, - }, - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_PrototypeCurrency", - "type": "String", - }, - }, - Object { - "name": "SearchSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "CurrencyCode", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Currency", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Currency_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CurrencyCode", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Sales Order Lifecycle Status", - "type": "String", - }, - }, - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_AIS_SO_Lifecycle_Status", - "type": "String", - }, - }, - Object { - "name": "SearchSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "LifecycleStatus", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Status", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Status_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LifecycleStatus", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", + "maxLength": 40, + "name": "CityName", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Sales Order Confirmation Status", - "type": "String", - }, - }, - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_AIS_SO_Confirmation_Status", - "type": "String", - }, - }, - Object { - "name": "SearchSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "BillingStatus", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Status", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Status_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BillingStatus", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", + "name": "isHidden", + "type": "Edm.Boolean", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Sales Order Delivery Status", - "type": "String", - }, - }, - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_AIS_SO_Delivery_Status", - "type": "String", - }, - }, - Object { - "name": "SearchSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "DeliveryStatus", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Status", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Status_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/DeliveryStatus", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.ApplyMultiUnitBehaviorForSortingAndFiltering", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Transformations", - "value": Object { - "Collection": Array [ - "aggregate", - "groupby", - "filter", - ], - "type": "Collection", - }, - }, - Object { - "name": "Rollup", - "value": Object { - "EnumMember": "None", - "type": "EnumMember", - }, - }, - ], - "type": undefined, - }, - "term": "Org.OData.Aggregation.V1.ApplySupported", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", + "maxLength": 60, + "name": "StreetName", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderItemID", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", + "maxLength": 10, + "name": "HouseNumber", + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/DeliveryDate", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty", + "keys": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/GrossAmount", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "HeaderShipToParty", + "navigationProperties": Array [ Object { - "annotations": Array [ + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/_ShipToPartyVH", + "isCollection": false, + "name": "_ShipToPartyVH", + "partner": undefined, + "referentialConstraint": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, + "sourceProperty": "BusinessPartner", + "sourceTypeName": "HeaderShipToParty", + "targetProperty": "Customer", + "targetTypeName": "com.c_salesordermanage_sd.Customer", }, ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/NetAmount", + "targetTypeName": "com.c_salesordermanage_sd.Customer", }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/TaxAmount", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonFilterableProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Delete_stta_i_so_salesorder_nd_ac", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Save_stta_i_so_salesorder_nd_ac", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Setopportunityid_ac", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Set_currency_code_ac", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Update_mc", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "Org.OData.Capabilities.V1.FilterRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "NonSortableProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Delete_stta_i_so_salesorder_nd_ac", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Save_stta_i_so_salesorder_nd_ac", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Setopportunityid_ac", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Set_currency_code_ac", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Update_mc", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "Org.OData.Capabilities.V1.SortRestrictions", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", + "maxLength": 20, + "name": "DistributionChannel_Text", + "type": "Edm.String", }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel", + "keys": Array [ Object { - "annotations": Array [ - Object { - "collection": Array [ - Object { - "PropertyPath": "SalesOrderItemID", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SalesOrderID", - "type": "PropertyPath", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticKey", - }, - ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "I_DistributionChannel", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "annotations": Array [ - Object { - "collection": Array [ - Object { - "PropertyPath": "DeliveryDate", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SalesOrderItemID", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SalesOrderID", - "type": "PropertyPath", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticKey", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", + "maxLength": 20, + "name": "Division_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_OrganizationDivision", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", + "maxLength": 20, + "name": "SalesOrganization_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", + "maxLength": 5, + "name": "SalesOrganizationCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", + "maxLength": 4, + "name": "CompanyCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", + "maxLength": 10, + "name": "IntercompanyBillingCustomer", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_SalesOrganization", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", + "maxLength": 30, + "name": "IncotermsClassification_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", + "name": "LocationIsMandatory", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "IncotermsClassification", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", + "maxLength": 30, + "name": "IncotermsVersion_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "IncotermsVersion", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", + "maxLength": 18, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/isHidden", + "name": "isHidden", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material_Text", + "maxLength": 40, + "name": "Material_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup_MaterialGroup", + "maxLength": 9, + "name": "_MaterialGroup_MaterialGroup", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.Material", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", + "maxLength": 18, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Material", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup", + "isCollection": false, + "name": "_MaterialGroup", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_MaterialGroup_MaterialGroup", + "sourceTypeName": "Material", + "targetProperty": "MaterialGroup", + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", }, ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", }, Object { - "annotations": Array [ + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialRatings", + "isCollection": true, + "name": "_MaterialRatings", + "partner": "material", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category", + "maxLength": 2, + "name": "Category", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category_Text", + "maxLength": 20, + "name": "Category_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category", + "maxLength": 2, + "name": "Category", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "MaterialCategory", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country", + "maxLength": 2, + "name": "Country", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country_Text", + "maxLength": 20, + "name": "Country_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country", + "maxLength": 2, + "name": "Country", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "MaterialCountry", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ModelYear", + "maxLength": 4, + "name": "ModelYear", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/WarrantyYear", + "maxLength": 4, + "name": "WarrantyYear", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/BrandCategory", + "maxLength": 20, + "name": "BrandCategory", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/FabricationCountry", + "maxLength": 20, + "name": "FabricationCountry", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/material_Material", + "maxLength": 18, + "name": "material_Material", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/owner_ID", + "name": "owner_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_WarrantyYear_Model_Year", + "maxLength": 4, + "name": "_WarrantyYear_Model_Year", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "MaterialDetails", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/material", + "isCollection": false, + "name": "material", + "partner": undefined, + "referentialConstraint": Array [ Object { - "collection": Array [ - Object { - "PropertyPath": "SalesOrderID", - "type": "PropertyPath", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticKey", + "sourceProperty": "material_Material", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Material", + "targetTypeName": "com.c_salesordermanage_sd.Material", }, ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetTypeName": "com.c_salesordermanage_sd.Material", }, Object { - "annotations": Array [ + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/owner", + "isCollection": false, + "name": "owner", + "partner": "_MaterialDetails", + "referentialConstraint": Array [ Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "ReferencesAcrossChangeSetsSupported", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.BatchSupportType", - }, - "term": "Org.OData.Capabilities.V1.BatchSupport", + "sourceProperty": "owner_ID", + "sourceTypeName": "MaterialDetails", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", }, ], - "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_ModelYear", + "isCollection": false, + "name": "_ModelYear", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "ModelYear", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Model_Year", + "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_WarrantyYear", + "isCollection": false, + "name": "_WarrantyYear", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_WarrantyYear_Model_Year", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Model_Year", + "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialCountry", + "isCollection": false, + "name": "_MaterialCountry", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "FabricationCountry", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Country", + "targetTypeName": "com.c_salesordermanage_sd.MaterialCountry", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialCountry", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialCategory", + "isCollection": false, + "name": "_MaterialCategory", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "BrandCategory", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Category", + "targetTypeName": "com.c_salesordermanage_sd.MaterialCategory", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialCategory", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialRatings", + "isCollection": true, + "name": "_MaterialRatings", + "partner": "materialdetail", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", }, ], }, - "associationSets": Array [ - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_98B619DC575EE026387B36061DC79CA9", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrderItem_ND", - "role": "FromRole_assoc_98B619DC575EE026387B36061DC79CA9", - }, - Object { - "entitySet": "I_PrototypeCurrency", - "role": "ToRole_assoc_98B619DC575EE026387B36061DC79CA9", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_98B619DC575EE026387B36061DC79CA9", - "name": "assoc_98B619DC575EE026387B36061DC79CA9", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrder_ND", - "role": "FromRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - }, - Object { - "entitySet": "I_AIS_SO_Delivery_Status", - "role": "ToRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - "name": "assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrderItem_ND", - "role": "FromRole_assoc_B31EA5B76B2BE17336008E744602BB4A", - }, - Object { - "entitySet": "STTA_C_SO_SalesOrderSL_ND", - "role": "ToRole_assoc_B31EA5B76B2BE17336008E744602BB4A", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", - "name": "assoc_B31EA5B76B2BE17336008E744602BB4A", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrder_ND", - "role": "FromRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - }, - Object { - "entitySet": "STTA_C_SO_SalesOrder_ND", - "role": "ToRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - "name": "assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrder_ND", - "role": "FromRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - }, - Object { - "entitySet": "I_AIS_SO_Confirmation_Status", - "role": "ToRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - "name": "assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_B634F826B442E2FE38BD915BE0F1A337", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrderItem_ND", - "role": "FromRole_assoc_B634F826B442E2FE38BD915BE0F1A337", - }, - Object { - "entitySet": "I_PrototypeProduct", - "role": "ToRole_assoc_B634F826B442E2FE38BD915BE0F1A337", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_B634F826B442E2FE38BD915BE0F1A337", - "name": "assoc_B634F826B442E2FE38BD915BE0F1A337", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrder_ND", - "role": "FromRole_assoc_308674C33787A2E145F672046AE274B5", - }, - Object { - "entitySet": "STTA_C_SO_SalesOrderItem_ND", - "role": "ToRole_assoc_308674C33787A2E145F672046AE274B5", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", - "name": "assoc_308674C33787A2E145F672046AE274B5", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrderItem_ND", - "role": "FromRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - }, - Object { - "entitySet": "I_PrototypeUnitOfMeasure", - "role": "ToRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - "name": "assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_5020648A266404A9C9B80BF09D1A788E", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrderItem_ND", - "role": "FromRole_assoc_5020648A266404A9C9B80BF09D1A788E", - }, - Object { - "entitySet": "I_AIS_SOI_Atp_Status", - "role": "ToRole_assoc_5020648A266404A9C9B80BF09D1A788E", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_5020648A266404A9C9B80BF09D1A788E", - "name": "assoc_5020648A266404A9C9B80BF09D1A788E", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_CC1C658404B4508AA84831191CB1DE1E", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrderSL_ND", - "role": "FromRole_assoc_CC1C658404B4508AA84831191CB1DE1E", - }, - Object { - "entitySet": "STTA_C_SO_SalesOrder_ND", - "role": "ToRole_assoc_CC1C658404B4508AA84831191CB1DE1E", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_CC1C658404B4508AA84831191CB1DE1E", - "name": "assoc_CC1C658404B4508AA84831191CB1DE1E", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_C877CEF05B1D2D410C087D994993DFD0", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrder_ND", - "role": "FromRole_assoc_C877CEF05B1D2D410C087D994993DFD0", - }, - Object { - "entitySet": "I_PrototypeBusinessPartner", - "role": "ToRole_assoc_C877CEF05B1D2D410C087D994993DFD0", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_C877CEF05B1D2D410C087D994993DFD0", - "name": "assoc_C877CEF05B1D2D410C087D994993DFD0", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_A215B0A473F9686ACB5DDA8698C751DD", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrder_ND", - "role": "FromRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", - }, - Object { - "entitySet": "I_AIS_SO_Lifecycle_Status", - "role": "ToRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_A215B0A473F9686ACB5DDA8698C751DD", - "name": "assoc_A215B0A473F9686ACB5DDA8698C751DD", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrderSL_ND", - "role": "FromRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - }, - Object { - "entitySet": "I_PrototypeUnitOfMeasure", - "role": "ToRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - "name": "assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - }, - Object { - "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - "associationEnd": Array [ - Object { - "entitySet": "STTA_C_SO_SalesOrder_ND", - "role": "FromRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - }, - Object { - "entitySet": "I_PrototypeCurrency", - "role": "ToRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - "name": "assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - }, - ], - "associations": Array [ - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_CC1C658404B4508AA84831191CB1DE1E", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - }, - Object { - "multiplicity": "1", - "role": "ToRole_assoc_CC1C658404B4508AA84831191CB1DE1E", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_CC1C658404B4508AA84831191CB1DE1E", - "name": "assoc_CC1C658404B4508AA84831191CB1DE1E", - "referentialConstraints": Array [ - Object { - "sourceProperty": "SalesOrderID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "SalesOrderID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - "name": "assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - "referentialConstraints": Array [ - Object { - "sourceProperty": "QuantityUnitCode", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - "targetProperty": "UnitOfMeasure", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_98B619DC575EE026387B36061DC79CA9", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_98B619DC575EE026387B36061DC79CA9", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_98B619DC575EE026387B36061DC79CA9", - "name": "assoc_98B619DC575EE026387B36061DC79CA9", - "referentialConstraints": Array [], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_B634F826B442E2FE38BD915BE0F1A337", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_B634F826B442E2FE38BD915BE0F1A337", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_B634F826B442E2FE38BD915BE0F1A337", - "name": "assoc_B634F826B442E2FE38BD915BE0F1A337", - "referentialConstraints": Array [ - Object { - "sourceProperty": "ProductID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "ProductID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_B31EA5B76B2BE17336008E744602BB4A", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - Object { - "multiplicity": "*", - "role": "ToRole_assoc_B31EA5B76B2BE17336008E744602BB4A", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", - "name": "assoc_B31EA5B76B2BE17336008E744602BB4A", - "referentialConstraints": Array [ - Object { - "sourceProperty": "SalesOrderItemID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "SalesOrderItemID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - }, - Object { - "sourceProperty": "SalesOrderID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "SalesOrderID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - "name": "assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - "referentialConstraints": Array [ - Object { - "sourceProperty": "QuantityUnitCode", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "UnitOfMeasure", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_5020648A266404A9C9B80BF09D1A788E", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_5020648A266404A9C9B80BF09D1A788E", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_5020648A266404A9C9B80BF09D1A788E", - "name": "assoc_5020648A266404A9C9B80BF09D1A788E", - "referentialConstraints": Array [ - Object { - "sourceProperty": "AvailableToPromiseStatus", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "Status", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - "name": "assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - "referentialConstraints": Array [ - Object { - "sourceProperty": "BillingStatus", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "Status", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_C877CEF05B1D2D410C087D994993DFD0", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_C877CEF05B1D2D410C087D994993DFD0", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_C877CEF05B1D2D410C087D994993DFD0", - "name": "assoc_C877CEF05B1D2D410C087D994993DFD0", - "referentialConstraints": Array [ - Object { - "sourceProperty": "BusinessPartnerID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "BusinessPartnerID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - "name": "assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - "referentialConstraints": Array [ - Object { - "sourceProperty": "CurrencyCode", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "Currency", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - "name": "assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - "referentialConstraints": Array [ - Object { - "sourceProperty": "DeliveryStatus", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "Status", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_308674C33787A2E145F672046AE274B5", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - Object { - "multiplicity": "*", - "role": "ToRole_assoc_308674C33787A2E145F672046AE274B5", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", - "name": "assoc_308674C33787A2E145F672046AE274B5", - "referentialConstraints": Array [ - Object { - "sourceProperty": "SalesOrderID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "SalesOrderID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", - "type": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_A215B0A473F9686ACB5DDA8698C751DD", - "name": "assoc_A215B0A473F9686ACB5DDA8698C751DD", - "referentialConstraints": Array [ - Object { - "sourceProperty": "LifecycleStatus", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "Status", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - }, - ], - }, - Object { - "associationEnd": Array [ - Object { - "multiplicity": "1", - "role": "FromRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - Object { - "multiplicity": "0..1", - "role": "ToRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - "name": "assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - "referentialConstraints": Array [], - }, - ], - "complexTypes": Array [ - Object { - "_type": "ComplexType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult", - "name": "DummyFunctionImportResult", - "navigationProperties": Array [], - "properties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult/IsInvalid", - "name": "IsInvalid", - "type": "Edm.Boolean", - }, - ], - }, - ], - "entityContainer": Object { - "_type": "EntityContainer", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities", - "name": "STTA_SALES_ORDER_ND_SRV_01_Entities", + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + "maxLength": 9, + "name": "MaterialGroup", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", + "maxLength": 20, + "name": "MaterialGroup_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + "maxLength": 9, + "name": "MaterialGroup", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "MaterialGroup", + "navigationProperties": Array [], }, - "entitySets": Array [ - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", - "name": "I_AIS_SOI_Atp_Status", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", - "name": "I_AIS_SO_Confirmation_Status", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", - "name": "I_AIS_SO_Delivery_Status", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", - "name": "I_AIS_SO_Lifecycle_Status", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", - "name": "I_PrototypeBusinessPartner", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", - "name": "I_PrototypeProduct", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", - "name": "I_PrototypeUnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", - "name": "STTA_C_SO_SalesOrderItem_ND", - "navigationPropertyBinding": Object { - "to_AvailableToPromiseStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", - "name": "I_AIS_SOI_Atp_Status", - "navigationPropertyBinding": Object {}, - }, - "to_Currency": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - "to_Product": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", - "name": "I_PrototypeProduct", - "navigationPropertyBinding": Object {}, - }, - "to_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", - "name": "STTA_C_SO_SalesOrder_ND", - "navigationPropertyBinding": Object { - "to_BillingStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", - "name": "I_AIS_SO_Confirmation_Status", - "navigationPropertyBinding": Object {}, - }, - "to_BusinessPartner": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", - "name": "I_PrototypeBusinessPartner", - "navigationPropertyBinding": Object {}, - }, - "to_Currency": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - "to_DeliveryStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", - "name": "I_AIS_SO_Delivery_Status", - "navigationPropertyBinding": Object {}, - }, - "to_Item": [Circular], - "to_LifecycleStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", - "name": "I_AIS_SO_Lifecycle_Status", - "navigationPropertyBinding": Object {}, - }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/Rating", + "name": "Rating", + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/Title", + "maxLength": 100, + "name": "Title", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/materialdetail_ID", + "name": "materialdetail_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/material_Material", + "maxLength": 18, + "name": "material_Material", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "MaterialRatings", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/_Rating", + "isCollection": false, + "name": "_Rating", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "Rating", + "sourceTypeName": "MaterialRatings", + "targetProperty": "Rating", + "targetTypeName": "com.c_salesordermanage_sd.Rating", }, - }, - "to_ScheduleLine": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderSL_ND", - "name": "STTA_C_SO_SalesOrderSL_ND", - "navigationPropertyBinding": Object { - "to_Item": [Circular], - "to_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", - "name": "STTA_C_SO_SalesOrder_ND", - "navigationPropertyBinding": Object { - "to_BillingStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", - "name": "I_AIS_SO_Confirmation_Status", - "navigationPropertyBinding": Object {}, - }, - "to_BusinessPartner": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", - "name": "I_PrototypeBusinessPartner", - "navigationPropertyBinding": Object {}, - }, - "to_Currency": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - "to_DeliveryStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", - "name": "I_AIS_SO_Delivery_Status", - "navigationPropertyBinding": Object {}, - }, - "to_Item": [Circular], - "to_LifecycleStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", - "name": "I_AIS_SO_Lifecycle_Status", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "to_UnitOfMeasure": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", - "name": "I_PrototypeUnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Rating", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/materialdetail", + "isCollection": false, + "name": "materialdetail", + "partner": "_MaterialRatings", + "referentialConstraint": Array [ + Object { + "sourceProperty": "materialdetail_ID", + "sourceTypeName": "MaterialRatings", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", }, - }, - "to_UnitOfMeasure": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", - "name": "I_PrototypeUnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderSL_ND", - "name": "STTA_C_SO_SalesOrderSL_ND", - "navigationPropertyBinding": Object { - "to_Item": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", - "name": "STTA_C_SO_SalesOrderItem_ND", - "navigationPropertyBinding": Object { - "to_AvailableToPromiseStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", - "name": "I_AIS_SOI_Atp_Status", - "navigationPropertyBinding": Object {}, - }, - "to_Currency": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - "to_Product": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", - "name": "I_PrototypeProduct", - "navigationPropertyBinding": Object {}, - }, - "to_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", - "name": "STTA_C_SO_SalesOrder_ND", - "navigationPropertyBinding": Object { - "to_BillingStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", - "name": "I_AIS_SO_Confirmation_Status", - "navigationPropertyBinding": Object {}, - }, - "to_BusinessPartner": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", - "name": "I_PrototypeBusinessPartner", - "navigationPropertyBinding": Object {}, - }, - "to_Currency": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - "to_DeliveryStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", - "name": "I_AIS_SO_Delivery_Status", - "navigationPropertyBinding": Object {}, - }, - "to_Item": [Circular], - "to_LifecycleStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", - "name": "I_AIS_SO_Lifecycle_Status", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "to_ScheduleLine": [Circular], - "to_UnitOfMeasure": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", - "name": "I_PrototypeUnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/material", + "isCollection": false, + "name": "material", + "partner": "_MaterialRatings", + "referentialConstraint": Array [ + Object { + "sourceProperty": "material_Material", + "sourceTypeName": "MaterialRatings", + "targetProperty": "Material", + "targetTypeName": "com.c_salesordermanage_sd.Material", }, - }, - "to_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", - "name": "STTA_C_SO_SalesOrder_ND", - "navigationPropertyBinding": Object { - "to_BillingStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", - "name": "I_AIS_SO_Confirmation_Status", - "navigationPropertyBinding": Object {}, - }, - "to_BusinessPartner": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", - "name": "I_PrototypeBusinessPartner", - "navigationPropertyBinding": Object {}, - }, - "to_Currency": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - "to_DeliveryStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", - "name": "I_AIS_SO_Delivery_Status", - "navigationPropertyBinding": Object {}, - }, - "to_Item": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", - "name": "STTA_C_SO_SalesOrderItem_ND", - "navigationPropertyBinding": Object { - "to_AvailableToPromiseStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", - "name": "I_AIS_SOI_Atp_Status", - "navigationPropertyBinding": Object {}, - }, - "to_Currency": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - "to_Product": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", - "name": "I_PrototypeProduct", - "navigationPropertyBinding": Object {}, - }, - "to_SalesOrder": [Circular], - "to_ScheduleLine": [Circular], - "to_UnitOfMeasure": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", - "name": "I_PrototypeUnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "to_LifecycleStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", - "name": "I_AIS_SO_Lifecycle_Status", - "navigationPropertyBinding": Object {}, - }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/_MaterialRatingsDetails", + "isCollection": true, + "name": "_MaterialRatingsDetails", + "partner": "materialrating", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/Comments", + "maxLength": 1000, + "name": "Comments", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/CREATEDAT", + "name": "CREATEDAT", + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDAT", + "name": "MODIFIEDAT", + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDBY", + "maxLength": 241, + "name": "MODIFIEDBY", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/materialrating_ID", + "name": "materialrating_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/material_Material", + "maxLength": 18, + "name": "material_Material", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "MaterialRatingsDetails", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/materialrating", + "isCollection": false, + "name": "materialrating", + "partner": "_MaterialRatingsDetails", + "referentialConstraint": Array [ + Object { + "sourceProperty": "materialrating_ID", + "sourceTypeName": "MaterialRatingsDetails", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", }, - }, - "to_UnitOfMeasure": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", - "name": "I_PrototypeUnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", - "name": "STTA_C_SO_SalesOrder_ND", - "navigationPropertyBinding": Object { - "to_BillingStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", - "name": "I_AIS_SO_Confirmation_Status", - "navigationPropertyBinding": Object {}, - }, - "to_BusinessPartner": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", - "name": "I_PrototypeBusinessPartner", - "navigationPropertyBinding": Object {}, - }, - "to_Currency": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - "to_DeliveryStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", - "name": "I_AIS_SO_Delivery_Status", - "navigationPropertyBinding": Object {}, - }, - "to_Item": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", - "name": "STTA_C_SO_SalesOrderItem_ND", - "navigationPropertyBinding": Object { - "to_AvailableToPromiseStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", - "name": "I_AIS_SOI_Atp_Status", - "navigationPropertyBinding": Object {}, - }, - "to_Currency": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", - "name": "I_PrototypeCurrency", - "navigationPropertyBinding": Object {}, - }, - "to_Product": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", - "name": "I_PrototypeProduct", - "navigationPropertyBinding": Object {}, - }, - "to_SalesOrder": [Circular], - "to_ScheduleLine": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderSL_ND", - "name": "STTA_C_SO_SalesOrderSL_ND", - "navigationPropertyBinding": Object { - "to_Item": [Circular], - "to_SalesOrder": [Circular], - "to_UnitOfMeasure": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", - "name": "I_PrototypeUnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "to_UnitOfMeasure": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", - "name": "I_PrototypeUnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/material", + "isCollection": false, + "name": "material", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "material_Material", + "sourceTypeName": "MaterialRatingsDetails", + "targetProperty": "Material", + "targetTypeName": "com.c_salesordermanage_sd.Material", }, - }, - "to_LifecycleStatus": Object { - "_type": "EntitySet", - "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", - "name": "I_AIS_SO_Lifecycle_Status", - "navigationPropertyBinding": Object {}, - }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Material", }, - }, - ], - "entityTypes": Array [ - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status", - "maxLength": 10, - "name": "Status", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status_Text", - "maxLength": 60, - "name": "Status_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status", - "maxLength": 10, - "name": "Status", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_AIS_SOI_Atp_StatusType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status", - "maxLength": 10, - "name": "Status", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status_Text", - "maxLength": 60, - "name": "Status_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status", - "maxLength": 10, - "name": "Status", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_AIS_SO_Confirmation_StatusType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status", - "maxLength": 10, - "name": "Status", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status_Text", - "maxLength": 60, - "name": "Status_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status", - "maxLength": 10, - "name": "Status", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_AIS_SO_Delivery_StatusType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status", - "maxLength": 10, - "name": "Status", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status_Text", - "maxLength": 60, - "name": "Status_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status", - "maxLength": 10, - "name": "Status", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_AIS_SO_Lifecycle_StatusType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerID", - "maxLength": 10, - "name": "BusinessPartnerID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerRole", - "maxLength": 3, - "name": "BusinessPartnerRole", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/MailAddress", - "maxLength": 255, - "name": "MailAddress", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/PhoneNumber", - "maxLength": 30, - "name": "PhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/FaxNumber", - "maxLength": 30, - "name": "FaxNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/CompanyName", - "maxLength": 80, - "name": "CompanyName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/LegalForm", - "maxLength": 10, - "name": "LegalForm", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/CurrencyCode", - "maxLength": 5, - "name": "CurrencyCode", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerID", - "maxLength": 10, - "name": "BusinessPartnerID", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_PrototypeBusinessPartnerType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency", - "maxLength": 5, - "name": "Currency", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency_Text", - "maxLength": 15, - "name": "Currency_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Decimals", - "name": "Decimals", - "type": "Edm.Byte", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/CurrencyISOCode", - "maxLength": 3, - "name": "CurrencyISOCode", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency", - "maxLength": 5, - "name": "Currency", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_PrototypeCurrencyType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID", - "maxLength": 10, - "name": "ProductID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID_Text", - "maxLength": 255, - "name": "ProductID_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/TypeCode", - "maxLength": 2, - "name": "TypeCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Category", - "maxLength": 40, - "name": "Category", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/TaxTarifCode", - "name": "TaxTarifCode", - "type": "Edm.Byte", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/MeasureUnit", - "maxLength": 3, - "name": "MeasureUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/WeightMeasure", - "name": "WeightMeasure", - "precision": 13, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/WeightUnit", - "maxLength": 3, - "name": "WeightUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Price", - "name": "Price", - "precision": 16, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/CurrencyCode", - "maxLength": 5, - "name": "CurrencyCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/PictureURL", - "maxLength": 255, - "name": "PictureURL", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Width", - "name": "Width", - "precision": 13, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Depth", - "name": "Depth", - "precision": 13, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Height", - "name": "Height", - "precision": 13, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/DimensionUnit", - "maxLength": 3, - "name": "DimensionUnit", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID", - "maxLength": 10, - "name": "ProductID", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_PrototypeProductType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure", - "maxLength": 3, - "name": "UnitOfMeasure", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure_Text", - "maxLength": 6, - "name": "UnitOfMeasure_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasureDimension", - "maxLength": 6, - "name": "UnitOfMeasureDimension", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasureDimension_Text", - "maxLength": 20, - "name": "UnitOfMeasureDimension_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure", - "maxLength": 3, - "name": "UnitOfMeasure", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_PrototypeUnitOfMeasureType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderID", - "maxLength": 10, - "name": "SalesOrderID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderItemID", - "maxLength": 10, - "name": "SalesOrderItemID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/ProductID", - "maxLength": 10, - "name": "ProductID", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/Quantity", - "name": "Quantity", - "precision": 13, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/QuantityUnitCode", - "maxLength": 3, - "name": "QuantityUnitCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/DeliveryDate", - "name": "DeliveryDate", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CurrencyCode", - "maxLength": 5, - "name": "CurrencyCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/GrossAmount", - "name": "GrossAmount", - "precision": 16, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/NetAmount", - "name": "NetAmount", - "precision": 16, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/TaxAmount", - "name": "TaxAmount", - "precision": 16, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/AvailableToPromiseStatus", - "maxLength": 1, - "name": "AvailableToPromiseStatus", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/OpportunityItemID", - "maxLength": 10, - "name": "OpportunityItemID", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CreationDateTime", - "name": "CreationDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CreationUserName", - "maxLength": 12, - "name": "CreationUserName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/LastChangedDateTime", - "name": "LastChangedDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/LastChangedUserName", - "maxLength": 12, - "name": "LastChangedUserName", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderID", - "maxLength": 10, - "name": "SalesOrderID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderItemID", - "maxLength": 10, - "name": "SalesOrderItemID", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "STTA_C_SO_SalesOrderItem_NDType", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_5020648A266404A9C9B80BF09D1A788E", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_AvailableToPromiseStatus", - "name": "to_AvailableToPromiseStatus", - "referentialConstraint": Array [ - Object { - "sourceProperty": "AvailableToPromiseStatus", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "Status", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_5020648A266404A9C9B80BF09D1A788E", - "toRole": "ToRole_assoc_5020648A266404A9C9B80BF09D1A788E", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_98B619DC575EE026387B36061DC79CA9", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_Currency", - "name": "to_Currency", - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_98B619DC575EE026387B36061DC79CA9", - "toRole": "ToRole_assoc_98B619DC575EE026387B36061DC79CA9", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_B634F826B442E2FE38BD915BE0F1A337", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_Product", - "name": "to_Product", - "referentialConstraint": Array [ - Object { - "sourceProperty": "ProductID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "ProductID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_B634F826B442E2FE38BD915BE0F1A337", - "toRole": "ToRole_assoc_B634F826B442E2FE38BD915BE0F1A337", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_B31EA5B76B2BE17336008E744602BB4A", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_ScheduleLine", - "name": "to_ScheduleLine", - "referentialConstraint": Array [ - Object { - "sourceProperty": "SalesOrderItemID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "SalesOrderItemID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - }, - Object { - "sourceProperty": "SalesOrderID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "SalesOrderID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", - "toRole": "ToRole_assoc_B31EA5B76B2BE17336008E744602BB4A", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_UnitOfMeasure", - "name": "to_UnitOfMeasure", - "referentialConstraint": Array [ - Object { - "sourceProperty": "QuantityUnitCode", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "UnitOfMeasure", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - "toRole": "ToRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "ToRole_assoc_308674C33787A2E145F672046AE274B5", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_SalesOrder", - "name": "to_SalesOrder", - "referentialConstraint": Array [ - Object { - "sourceProperty": "SalesOrderID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - "targetProperty": "SalesOrderID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", - "toRole": "FromRole_assoc_308674C33787A2E145F672046AE274B5", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderID", - "maxLength": 10, - "name": "SalesOrderID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderItemID", - "maxLength": 10, - "name": "SalesOrderItemID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/DeliveryDate", - "name": "DeliveryDate", - "nullable": false, - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/Quantity", - "name": "Quantity", - "precision": 13, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/QuantityUnitCode", - "maxLength": 3, - "name": "QuantityUnitCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/CreationDateTime", - "name": "CreationDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/CreationUserName", - "maxLength": 12, - "name": "CreationUserName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/LastChangedDateTime", - "name": "LastChangedDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/LastChangedUserName", - "maxLength": 12, - "name": "LastChangedUserName", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderID", - "maxLength": 10, - "name": "SalesOrderID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderItemID", - "maxLength": 10, - "name": "SalesOrderItemID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/DeliveryDate", - "name": "DeliveryDate", - "nullable": false, - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - ], - "name": "STTA_C_SO_SalesOrderSL_NDType", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "ToRole_assoc_B31EA5B76B2BE17336008E744602BB4A", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/to_Item", - "name": "to_Item", - "referentialConstraint": Array [ - Object { - "sourceProperty": "SalesOrderItemID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - "targetProperty": "SalesOrderItemID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - Object { - "sourceProperty": "SalesOrderID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - "targetProperty": "SalesOrderID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", - "toRole": "FromRole_assoc_B31EA5B76B2BE17336008E744602BB4A", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_CC1C658404B4508AA84831191CB1DE1E", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/to_SalesOrder", - "name": "to_SalesOrder", - "referentialConstraint": Array [ - Object { - "sourceProperty": "SalesOrderID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - "targetProperty": "SalesOrderID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_CC1C658404B4508AA84831191CB1DE1E", - "toRole": "ToRole_assoc_CC1C658404B4508AA84831191CB1DE1E", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/to_UnitOfMeasure", - "name": "to_UnitOfMeasure", - "referentialConstraint": Array [ - Object { - "sourceProperty": "QuantityUnitCode", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", - "targetProperty": "UnitOfMeasure", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - "toRole": "ToRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Delete_stta_i_so_salesorder_nd_ac", - "name": "Delete_stta_i_so_salesorder_nd_ac", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Save_stta_i_so_salesorder_nd_ac", - "name": "Save_stta_i_so_salesorder_nd_ac", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Setopportunityid_ac", - "name": "Setopportunityid_ac", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Set_currency_code_ac", - "name": "Set_currency_code_ac", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Update_mc", - "name": "Update_mc", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID", - "maxLength": 10, - "name": "SalesOrderID", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BusinessPartnerID", - "maxLength": 10, - "name": "BusinessPartnerID", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CurrencyCode", - "maxLength": 5, - "name": "CurrencyCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/GrossAmount", - "name": "GrossAmount", - "precision": 16, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/NetAmount", - "name": "NetAmount", - "precision": 16, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/TaxAmount", - "name": "TaxAmount", - "precision": 16, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LifecycleStatus", - "maxLength": 1, - "name": "LifecycleStatus", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BillingStatus", - "maxLength": 1, - "name": "BillingStatus", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/DeliveryStatus", - "maxLength": 1, - "name": "DeliveryStatus", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/OpportunityID", - "maxLength": 35, - "name": "OpportunityID", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Approved", - "name": "Approved", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/ApprovalComment", - "maxLength": 80, - "name": "ApprovalComment", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CreationDateTime", - "name": "CreationDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CreationUserName", - "maxLength": 12, - "name": "CreationUserName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LastChangedDateTime", - "name": "LastChangedDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LastChangedUserName", - "maxLength": 12, - "name": "LastChangedUserName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID2", - "maxLength": 10, - "name": "SalesOrderID2", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID", - "maxLength": 10, - "name": "SalesOrderID", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "STTA_C_SO_SalesOrder_NDType", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_BillingStatus", - "name": "to_BillingStatus", - "referentialConstraint": Array [ - Object { - "sourceProperty": "BillingStatus", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "Status", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - "toRole": "ToRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_C877CEF05B1D2D410C087D994993DFD0", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_BusinessPartner", - "name": "to_BusinessPartner", - "referentialConstraint": Array [ - Object { - "sourceProperty": "BusinessPartnerID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "BusinessPartnerID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_C877CEF05B1D2D410C087D994993DFD0", - "toRole": "ToRole_assoc_C877CEF05B1D2D410C087D994993DFD0", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_Currency", - "name": "to_Currency", - "referentialConstraint": Array [ - Object { - "sourceProperty": "CurrencyCode", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "Currency", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - "toRole": "ToRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_DeliveryStatus", - "name": "to_DeliveryStatus", - "referentialConstraint": Array [ - Object { - "sourceProperty": "DeliveryStatus", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "Status", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - "toRole": "ToRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_308674C33787A2E145F672046AE274B5", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_Item", - "name": "to_Item", - "referentialConstraint": Array [ - Object { - "sourceProperty": "SalesOrderID", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "SalesOrderID", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", - "toRole": "ToRole_assoc_308674C33787A2E145F672046AE274B5", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_LifecycleStatus", - "name": "to_LifecycleStatus", - "referentialConstraint": Array [ - Object { - "sourceProperty": "LifecycleStatus", - "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", - "targetProperty": "Status", - "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", - }, - ], - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_A215B0A473F9686ACB5DDA8698C751DD", - "toRole": "ToRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", - }, - Object { - "_type": "NavigationProperty", - "fromRole": "FromRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_SalesOrder", - "name": "to_SalesOrder", - "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - "toRole": "ToRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", - }, - ], - }, - ], - "namespace": "STTA_SALES_ORDER_ND_SRV_01", - "singletons": Array [], - "typeDefinitions": Array [], - }, - "version": "1.0", -} -`; - -exports[`Parser can parse an edmx file 1`] = ` -MergedRawMetadata { - "_actions": Array [ - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", - "isBound": true, - "isFunction": false, - "name": "ChangeOrderStatus", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.HeaderPartner", + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", }, ], - "returnType": "com.c_salesordermanage_sd.HeaderPartner", - "sourceType": "com.c_salesordermanage_sd.HeaderPartner", }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "ChangeOrderStatus", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Model_Year", + "maxLength": 4, + "name": "Model_Year", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", - "isEntitySet": false, - "name": "OverallSDProcessStatus", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Warranty_Expiration", + "maxLength": 4, + "name": "Warranty_Expiration", "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", - "isBound": true, - "isFunction": false, - "name": "ParentBasedAction", - "parameters": Array [ + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears", + "keys": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.HeaderPartner", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Model_Year", + "maxLength": 4, + "name": "Model_Year", + "nullable": false, + "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.HeaderPartner", - "sourceType": "com.c_salesordermanage_sd.HeaderPartner", + "name": "MaterialYears", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.HeaderPartner", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", + "maxLength": 20, + "name": "Division_Text", "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.HeaderPartner", - "sourceType": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OrganizationDivision", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.MaterialDetails", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + "maxLength": 1, + "name": "OverallBillingBlockStatus", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", + "maxLength": 20, + "name": "OverallBillingBlockStatus_Text", "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.MaterialDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + "maxLength": 1, + "name": "OverallBillingBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OverallBillingBlockStatus", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.MaterialRatings", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "OverallDeliveryBlockStatus", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", + "maxLength": 20, + "name": "OverallDeliveryBlockStatus_Text", "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.MaterialRatings", - "sourceType": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "OverallDeliveryBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OverallDeliveryBlockStatus", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + "maxLength": 1, + "name": "OverallSDProcessStatus", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", + "maxLength": 20, + "name": "OverallSDProcessStatus_Text", "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + "maxLength": 1, + "name": "OverallSDProcessStatus", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OverallSDProcessStatus", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderItem", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating", + "name": "Rating", + "nullable": false, + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating_Text", + "maxLength": 25, + "name": "Rating_Text", "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.SalesOrderItem", - "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.Rating", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating", + "name": "Rating", + "nullable": false, + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + ], + "name": "Rating", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + "maxLength": 3, + "name": "SDDocumentReason", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", + "maxLength": 40, + "name": "SDDocumentReason_Text", "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetailsBoundAction(com.c_salesordermanage_sd.MaterialDetails)", - "isBound": true, - "isFunction": false, - "name": "MaterialDetailsBoundAction", - "parameters": Array [ + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason", + "keys": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetailsBoundAction(com.c_salesordermanage_sd.MaterialDetails)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialDetails", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + "maxLength": 3, + "name": "SDDocumentReason", + "nullable": false, + "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.MaterialDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialDetails", + "name": "SDDocumentReason", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)", - "isBound": true, - "isFunction": false, - "name": "MaterialCategoryFormAction", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialDetails", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + "maxLength": 6, + "name": "SalesDistrict", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/BrandCategory", - "isEntitySet": false, - "name": "BrandCategory", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", + "maxLength": 20, + "name": "SalesDistrict_Text", "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.MaterialDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsBoundAction(com.c_salesordermanage_sd.MaterialRatings)", - "isBound": true, - "isFunction": false, - "name": "MaterialRatingsBoundAction", - "parameters": Array [ + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict", + "keys": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsBoundAction(com.c_salesordermanage_sd.MaterialRatings)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.MaterialRatings", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + "maxLength": 6, + "name": "SalesDistrict", + "nullable": false, + "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.MaterialRatings", - "sourceType": "com.c_salesordermanage_sd.MaterialRatings", + "name": "SalesDistrict", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)", - "isBound": true, - "isFunction": false, - "name": "RatingFormAction", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialRatings", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", + "maxLength": 3, + "name": "SalesGroup", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/Rating", - "isEntitySet": false, - "name": "Rating", - "type": "Edm.Decimal", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", + "maxLength": 20, + "name": "SalesGroup_Text", + "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.MaterialRatings", - "sourceType": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", - "isBound": true, - "isFunction": false, - "name": "MaterialRatingsDetailsBoundAction", - "parameters": Array [ + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup", + "keys": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", + "maxLength": 3, + "name": "SalesGroup", + "nullable": false, + "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "name": "SalesGroup", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", - "isBound": true, - "isFunction": false, - "name": "RatingCommentsFormAction", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", + "maxLength": 4, + "name": "SalesOffice", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/Comments", - "isEntitySet": false, - "name": "Comments", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", + "maxLength": 20, + "name": "SalesOffice_Text", "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)", - "isBound": true, - "isFunction": false, - "name": "DummyBoundAction", - "parameters": Array [ + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice", + "keys": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderItem", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", + "maxLength": 4, + "name": "SalesOffice", + "nullable": false, + "type": "Edm.String", }, ], - "returnType": "com.c_salesordermanage_sd.SalesOrderItem", - "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", + "name": "SalesOffice", + "navigationProperties": Array [], }, Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", - "isBound": true, - "isFunction": false, - "name": "IdentificationFormAction", - "parameters": Array [ + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderItem", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", - "isEntitySet": false, + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", + "maxLength": 6, + "name": "SalesOrderItem", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", + "maxLength": 6, + "name": "HigherLevelItem", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", + "maxLength": 4, + "name": "SalesOrderItemCategory", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemText", + "maxLength": 40, + "name": "SalesOrderItemText", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", + "name": "fieldControlType_item", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Material", + "maxLength": 40, + "name": "Material", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PurchaseOrderByCustomer", + "maxLength": 35, + "name": "PurchaseOrderByCustomer", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", + "name": "RequestedDeliveryDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ConfirmedDeliveryDate", + "name": "ConfirmedDeliveryDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", "name": "RequestedQuantity", + "precision": 15, + "scale": 3, "type": "Edm.Decimal", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderItem", - "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "OPAvailableTrueAction", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", + "maxLength": 40, + "name": "RequestedQuantityUnit", + "type": "Edm.String", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "OPAvailableFalseAction", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", + "name": "PricingDate", + "type": "Edm.Date", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "OPAvailableNullAction", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/MaterialGroup", + "maxLength": 9, + "name": "MaterialGroup", + "type": "Edm.String", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "EnableEditAction", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Batch", + "maxLength": 10, + "name": "Batch", + "type": "Edm.String", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "CreateWithSalesOrderType", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Plant", + "maxLength": 4, + "name": "Plant", + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", - "isEntitySet": false, - "name": "SalesOrderType", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/StorageLocation", + "maxLength": 4, + "name": "StorageLocation", "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", - "isEntitySet": false, - "name": "SalesOrganization", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingPoint", + "maxLength": 4, + "name": "ShippingPoint", "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", - "isEntitySet": false, - "name": "OrganizationDivision", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingType", + "maxLength": 2, + "name": "ShippingType", "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", - "isEntitySet": false, - "name": "DistributionChannel", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeliveryPriority", + "maxLength": 2, + "name": "DeliveryPriority", "type": "Edm.String", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "FacetFormAction", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", - "isEntitySet": false, - "name": "ShippingCondition", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation1", + "maxLength": 70, + "name": "IncotermsLocation1", "type": "Edm.String", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "draftActivate", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation2", + "maxLength": 70, + "name": "IncotermsLocation2", + "type": "Edm.String", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "draftEdit", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderManage", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "type": "Edm.String", }, Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/PreserveChanges", - "isEntitySet": false, - "name": "PreserveChanges", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ItemBillingBlockReason", + "maxLength": 2, + "name": "ItemBillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TransactionCurrency", + "maxLength": 5, + "name": "TransactionCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", + "name": "NetAmount", + "precision": 15, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", + "name": "NetAmountHidden", + "precision": 15, + "scale": 10, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount_text", + "maxLength": 10, + "name": "NetAmount_text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", + "name": "TargetAmount", + "precision": 15, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Delivered", + "name": "Delivered", "type": "Edm.Boolean", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "ReturnInProcess()", - "isBound": false, - "isFunction": false, - "name": "ReturnInProcess", - "parameters": Array [], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "UnboundAction()", - "isBound": false, - "isFunction": false, - "name": "UnboundAction", - "parameters": Array [ Object { - "_type": "ActionParameter", - "fullyQualifiedName": "UnboundAction()/MessageText", - "isEntitySet": false, - "name": "MessageText", + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeLow", + "name": "ToleranceRangeLow", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeHigh", + "name": "ToleranceRangeHigh", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeLow", + "name": "DeviationRangeLow", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeHigh", + "name": "DeviationRangeHigh", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeLow", + "name": "AcceptanceRangeLow", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeHigh", + "name": "AcceptanceRangeHigh", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Criticality", + "name": "Criticality", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", "type": "Edm.String", }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "", - }, - ], - "_annotations": Object { - "annoFile": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "in/editActionIsEnabled", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Type", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Unbound Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/UnboundAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Return In Process", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/ReturnInProcess", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "toappnavsampleParam", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN with context", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "name": "Mapping", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "Delivered", - "type": "PropertyPath", - }, - }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "Completed", - "type": "String", - }, - }, - ], - "type": undefined, - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ID", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ImageUrl", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#multipleActionFields", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sold-To Party", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "_ShipToParty/isHidden", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderType", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OverallSDProcessStatus", - "type": "Path", - }, - }, - Object { - "name": "Criticality", - "value": Object { - "Path": "StatusCriticality", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TotalNetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "annotations": Array [ - Object { - "qualifier": "Messages", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": undefined, - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SAP__Messages", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms_CustomerPaymentTerms", + "maxLength": 4, + "name": "_CustomerPaymentTerms_CustomerPaymentTerms", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority_DeliveryPriority", + "maxLength": 2, + "name": "_DeliveryPriority_DeliveryPriority", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification_IncotermsClassification", + "maxLength": 3, + "name": "_IncotermsClassification_IncotermsClassification", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion_IncotermsVersion", + "maxLength": 4, + "name": "_IncotermsVersion_IncotermsVersion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason_BillingBlockReason", + "maxLength": 2, + "name": "_ItemBillingBlockReason_BillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory_SalesDocumentItemCategory", + "maxLength": 4, + "name": "_ItemCategory_SalesDocumentItemCategory", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup_MaterialGroup", + "maxLength": 9, + "name": "_MaterialGroup_MaterialGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder_SalesOrderType", + "maxLength": 4, + "name": "_SalesOrder_SalesOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint_ShippingPoint", + "maxLength": 4, + "name": "_ShippingPoint_ShippingPoint", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType_ShippingType", + "maxLength": 2, + "name": "_ShippingType_ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner_ID", + "name": "owner_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "SalesOrderItem", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms", + "isCollection": false, + "name": "_CustomerPaymentTerms", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_CustomerPaymentTerms_CustomerPaymentTerms", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "CustomerPaymentTerms", + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "SoldToChangeSalesAreaShipTo", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DistributionChannel", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OrganizationDivision", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "TransactionCurrency", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "CustomerPaymentTerms", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "IncotermsClassification", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "IncotermsVersion", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "IncotermsLocation1", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "IncotermsLocation2", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "CompleteDeliveryIsDefined", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SetBillingBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SetDeliveryBlockIsHidden", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": undefined, - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_CreditLimitDetails", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority", + "isCollection": false, + "name": "_DeliveryPriority", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_DeliveryPriority_DeliveryPriority", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "DeliveryPriority", + "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ItemCreationOrDeletion", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification", + "isCollection": false, + "name": "_IncotermsClassification", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_IncotermsClassification_IncotermsClassification", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "IncotermsClassification", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ItemUpdateAnyField", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion", + "isCollection": false, + "name": "_IncotermsVersion", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_IncotermsVersion_IncotermsVersion", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "IncotermsVersion", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ShipToPartyChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_ShipToParty/BusinessPartner", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason", + "isCollection": false, + "name": "_ItemBillingBlockReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ItemBillingBlockReason_BillingBlockReason", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "BillingBlockReason", + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "SalesOrder.SalesOrderManageType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": "Messages", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": undefined, - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SAP__Messages", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory", + "isCollection": false, + "name": "_ItemCategory", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ItemCategory_SalesDocumentItemCategory", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "SalesDocumentItemCategory", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "PricingDateChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "PricingDate", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_Material", + "isCollection": false, + "name": "_Material", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "Material", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "Material", + "targetTypeName": "com.c_salesordermanage_sd.Material", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "PlantChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Plant", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Plant", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "ShippingPoint", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Route", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialDetails", + "isCollection": true, + "name": "_MaterialDetails", + "partner": "owner", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup", + "isCollection": false, + "name": "_MaterialGroup", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_MaterialGroup_MaterialGroup", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "MaterialGroup", + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "StorageLocationChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "StorageLocation", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_RequestedQuantityUnit", + "isCollection": false, + "name": "_RequestedQuantityUnit", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "RequestedQuantityUnit", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "UnitOfMeasure", + "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ShippingPointChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ShippingPoint", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Route", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder", + "isCollection": false, + "name": "_SalesOrder", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesOrder_SalesOrderType", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "SalesOrderType", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "RouteChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Route", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint", + "isCollection": false, + "name": "_ShippingPoint", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ShippingPoint_ShippingPoint", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "ShippingPoint", + "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "RequestedQuantityChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "RequestedQuantity", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": undefined, - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "RequestedDeliveryDateChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "RequestedDeliveryDate", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType", + "isCollection": false, + "name": "_ShippingType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ShippingType_ShippingType", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "ShippingType", + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "SalesOrder.SalesOrderItemType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner", + "isCollection": false, + "name": "owner", + "partner": "_Item", + "referentialConstraint": Array [ + Object { + "sourceProperty": "owner_ID", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", }, - "term": "com.sap.vocabularies.UI.v1.DataFieldDefault", - }, - ], - "target": "SalesOrder.SalesOrderItemType/NetAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "RequestedQuantity", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", + "maxLength": 4, + "name": "SalesDocumentItemCategory", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", + "maxLength": 20, + "name": "SalesDocumentItemCategory_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", + "name": "ScheduleLineIsAllowed", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", + "maxLength": 4, + "name": "SalesDocumentItemCategory", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOrderItemCategory", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", + "name": "ReturnInProcess", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", + "name": "ImageUrl", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", + "maxLength": 10, + "name": "SoldToParty", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Rating", + "name": "Rating", + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Progress", + "name": "Progress", + "precision": 4, + "scale": 1, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", + "maxLength": 2, + "name": "OrganizationDivision", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOffice", + "maxLength": 4, + "name": "SalesOffice", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesGroup", + "maxLength": 3, + "name": "SalesGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesDistrict", + "maxLength": 6, + "name": "SalesDistrict", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", + "maxLength": 35, + "name": "PurchaseOrderByCustomer", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderType", + "maxLength": 4, + "name": "CustomerPurchaseOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderDate", + "name": "CustomerPurchaseOrderDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SDDocumentReason", + "maxLength": 3, + "name": "SDDocumentReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", + "name": "PricingDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", + "maxLength": 2, + "name": "ShippingCondition", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", + "name": "CompleteDeliveryIsDefined", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", + "name": "fieldControlType", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", + "maxLength": 70, + "name": "IncotermsLocation1", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", + "maxLength": 70, + "name": "IncotermsLocation2", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HeaderBillingBlockReason", + "maxLength": 2, + "name": "HeaderBillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockReason", + "maxLength": 2, + "name": "DeliveryBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PaymentMethod", + "maxLength": 1, + "name": "PaymentMethod", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", + "name": "TotalNetAmount", + "precision": 15, + "scale": 10, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", + "maxLength": 5, + "name": "TransactionCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", + "maxLength": 1, + "name": "OverallSDProcessStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/StatusCriticality", + "name": "StatusCriticality", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "OverallDeliveryBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallBillingBlockStatus", + "maxLength": 1, + "name": "OverallBillingBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", + "name": "LastChangedDateTime", + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", + "name": "SalesOrderDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", + "maxLength": 20, + "name": "SalesOrderTypeName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockCriticality", + "name": "DeliveryBlockCriticality", + "type": "Edm.Byte", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/BillingBlockCriticality", + "name": "BillingBlockCriticality", + "type": "Edm.Byte", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", + "maxLength": 40, + "name": "DescriptionFieldForOPACleanup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsEnabled", + "name": "editActionIsEnabled", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsDisabled", + "name": "editActionIsDisabled", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType_CustomerPurchaseOrderType", + "maxLength": 4, + "name": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason_DeliveryBlockReason", + "maxLength": 2, + "name": "_DeliveryBlockReason_DeliveryBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel_DistributionChannel", + "maxLength": 2, + "name": "_DistributionChannel_DistributionChannel", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason_BillingBlockReason", + "maxLength": 2, + "name": "_HeaderBillingBlockReason_BillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision_Division", + "maxLength": 2, + "name": "_OrganizationDivision_Division", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus_OverallBillingBlockStatus", + "maxLength": 1, + "name": "_OverallBillingBlockStatus_OverallBillingBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict_SalesDistrict", + "maxLength": 6, + "name": "_SalesDistrict_SalesDistrict", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup_SalesGroup", + "maxLength": 3, + "name": "_SalesGroup_SalesGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice_SalesOffice", + "maxLength": 4, + "name": "_SalesOffice_SalesOffice", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization_SalesOrganization", + "maxLength": 4, + "name": "_SalesOrganization_SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason_SDDocumentReason", + "maxLength": 3, + "name": "_SDDocumentReason_SDDocumentReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType_ShippingType", + "maxLength": 2, + "name": "_ShippingType_ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "SalesOrderManage", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPaymentTerms", + "isCollection": false, + "name": "_CustomerPaymentTerms", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "CustomerPaymentTerms", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "CustomerPaymentTerms", + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", }, - "term": "com.sap.vocabularies.UI.v1.DataFieldDefault", - }, - ], - "target": "SalesOrder.SalesOrderItemType/RequestedQuantity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "HeaderBillingBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallBillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveBillingBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType", + "isCollection": false, + "name": "_CustomerPurchaseOrderType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "CustomerPurchaseOrderType", + "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "HeaderBillingBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallBillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveBillingBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason", + "isCollection": false, + "name": "_DeliveryBlockReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_DeliveryBlockReason_DeliveryBlockReason", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "DeliveryBlockReason", + "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "DeliveryBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallDeliveryBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveDeliveryBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DeliveryBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DeliveryBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel", + "isCollection": false, + "name": "_DistributionChannel", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_DistributionChannel_DistributionChannel", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "DistributionChannel", + "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetDeliveryBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "DeliveryBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallDeliveryBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveDeliveryBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DeliveryBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DeliveryBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason", + "isCollection": false, + "name": "_HeaderBillingBlockReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_HeaderBillingBlockReason_BillingBlockReason", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "BillingBlockReason", + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveDeliveryBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ItemBillingBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveBillingBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "_SalesOrder/OverallBillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "_SalesOrder/BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsClassification", + "isCollection": false, + "name": "_IncotermsClassification", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "IncotermsClassification", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "IncotermsClassification", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlockItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ItemBillingBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveBillingBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "_SalesOrder/OverallBillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "_SalesOrder/BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsVersion", + "isCollection": false, + "name": "_IncotermsVersion", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "IncotermsVersion", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "IncotermsVersion", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlockItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Item", + "isCollection": true, + "name": "_Item", + "partner": "owner", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision", + "isCollection": false, + "name": "_OrganizationDivision", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_OrganizationDivision_Division", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "Division", + "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.DeleteRestrictionsType", + ], + "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus", + "isCollection": false, + "name": "_OverallBillingBlockStatus", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_OverallBillingBlockStatus_OverallBillingBlockStatus", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "OverallBillingBlockStatus", + "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - }, - ], - "serviceFile": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Value Help for Billing Block Reason", - "type": "String", + ], + "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus", + "isCollection": false, + "name": "_OverallDeliveryBlockStatus", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "OverallDeliveryBlockStatus", + "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", }, - }, - ], - "target": "com.c_salesordermanage_sd.BillingBlockReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Block", - "type": "String", + ], + "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallSDProcessStatus", + "isCollection": false, + "name": "_OverallSDProcessStatus", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "OverallSDProcessStatus", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "OverallSDProcessStatus", + "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + ], + "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Partner", + "isCollection": true, + "name": "_Partner", + "partner": "owner", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CreditLimitDetails", + "isCollection": false, + "name": "_CreditLimitDetails", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrder", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesDocument", + "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Billing Block", - "type": "String", + ], + "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict", + "isCollection": false, + "name": "_SalesDistrict", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesDistrict_SalesDistrict", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesDistrict", + "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "BillingBlockReason_Text", - "type": "Path", + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup", + "isCollection": false, + "name": "_SalesGroup", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesGroup_SalesGroup", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesGroup", + "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", }, - }, - ], - "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice", + "isCollection": false, + "name": "_SalesOffice", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesOffice_SalesOffice", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOffice", + "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", }, - }, - ], - "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Materials By Sales Org and Distr Channel", - "type": "String", + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrderType", + "isCollection": false, + "name": "_SalesOrderType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrderType", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOrderType", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SOrg.", - "type": "String", + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization", + "isCollection": false, + "name": "_SalesOrganization", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesOrganization_SalesOrganization", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOrganization", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason", + "isCollection": false, + "name": "_SDDocumentReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SDDocumentReason_SDDocumentReason", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SDDocumentReason", + "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", + ], + "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingCondition", + "isCollection": false, + "name": "_ShippingCondition", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "ShippingCondition", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "ShippingCondition", + "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType", + "isCollection": false, + "name": "_ShippingType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ShippingType_ShippingType", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "ShippingType", + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShipToParty", + "isCollection": false, + "name": "_ShipToParty", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrder", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOrder", + "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", + ], + "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SoldToParty", + "isCollection": false, + "name": "_SoldToParty", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SoldToParty", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "Customer", + "targetTypeName": "com.c_salesordermanage_sd.Customer", }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Customer", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", + "maxLength": 20, + "name": "SalesOrderType_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", + "maxLength": 1, + "name": "SalesOrderProcessingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", + "maxLength": 4, + "name": "OrderTypeForBillingRequest", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOrderType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization_Text", + "maxLength": 20, + "name": "SalesOrganization_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganizationCurrency", + "maxLength": 5, + "name": "SalesOrganizationCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/CompanyCode", + "maxLength": 4, + "name": "CompanyCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/IntercompanyBillingCustomer", + "maxLength": 10, + "name": "IntercompanyBillingCustomer", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOrganization", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", + "maxLength": 2, + "name": "ShippingCondition", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", + "maxLength": 20, + "name": "ShippingCondition_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", + "maxLength": 2, + "name": "ShippingCondition", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "ShippingCondition", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", + "maxLength": 4, + "name": "ShippingPoint", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", + "maxLength": 30, + "name": "ShippingPoint_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", + "maxLength": 4, + "name": "ShippingPoint", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "ShippingPoint", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", + "maxLength": 20, + "name": "ShippingType_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "ShippingType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", + "maxLength": 40, + "name": "UnitOfMeasure", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", + "maxLength": 30, + "name": "UnitOfMeasure_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", + "maxLength": 6, + "name": "UnitOfMeasureDimension", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", + "maxLength": 3, + "name": "UnitOfMeasureISOCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", + "name": "UnitOfMeasureNumberOfDecimals", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", + "name": "UnitOfMeasureDspNmbrOfDcmls", + "type": "Edm.Int32", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", + "maxLength": 40, + "name": "UnitOfMeasure", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "UnitOfMeasure", + "navigationProperties": Array [], + }, + ], + "_namespace": "com.c_salesordermanage_sd", + "_parserOutput": Array [ + RawMetadataInstance { + "identification": "serviceFile", + "references": Array [ + Object { + "alias": "Analytics", + "namespace": "com.sap.vocabularies.Analytics.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Analytics.xml", + }, + Object { + "alias": "Capabilities", + "namespace": "Org.OData.Capabilities.V1", + "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.xml", + }, + Object { + "alias": "Common", + "namespace": "com.sap.vocabularies.Common.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Common.xml", + }, + Object { + "alias": "Communication", + "namespace": "com.sap.vocabularies.Communication.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Communication.xml", + }, + Object { + "alias": "Core", + "namespace": "Org.OData.Core.V1", + "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml", + }, + Object { + "alias": "Measures", + "namespace": "Org.OData.Measures.V1", + "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Measures.V1.xml", + }, + Object { + "alias": "PersonalData", + "namespace": "com.sap.vocabularies.PersonalData.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/PersonalData.xml", + }, + Object { + "alias": "UI", + "namespace": "com.sap.vocabularies.UI.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/UI.xml", + }, + ], + "schema": Object { + "actions": Array [ + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", + "isBound": true, + "isFunction": false, + "name": "ChangeOrderStatus", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.HeaderPartner", + }, + ], + "returnType": "com.c_salesordermanage_sd.HeaderPartner", + "sourceType": "com.c_salesordermanage_sd.HeaderPartner", }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "ChangeOrderStatus", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", + "isCollection": false, + "isEntitySet": false, + "name": "OverallSDProcessStatus", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", + "isBound": true, + "isFunction": false, + "name": "ParentBasedAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.HeaderPartner", + }, + ], + "returnType": "com.c_salesordermanage_sd.HeaderPartner", + "sourceType": "com.c_salesordermanage_sd.HeaderPartner", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Material Number", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.HeaderPartner", + "sourceType": "com.c_salesordermanage_sd.HeaderPartner", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "MaterialName", - "type": "Path", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialDetails", }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Description", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatings", + "sourceType": "com.c_salesordermanage_sd.MaterialRatings", }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "RQ Unit", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Unit", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderItem", + "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Requested Quantity Unit", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Base Unit of Measure", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Unit", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Types", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetailsBoundAction(com.c_salesordermanage_sd.MaterialDetails)", + "isBound": true, + "isFunction": false, + "name": "MaterialDetailsBoundAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetailsBoundAction(com.c_salesordermanage_sd.MaterialDetails)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialDetails", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialDetails", }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)", + "isBound": true, + "isFunction": false, + "name": "MaterialCategoryFormAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/BrandCategory", + "isCollection": false, + "isEntitySet": false, + "name": "BrandCategory", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialDetails", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Type", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsBoundAction(com.c_salesordermanage_sd.MaterialRatings)", + "isBound": true, + "isFunction": false, + "name": "MaterialRatingsBoundAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsBoundAction(com.c_salesordermanage_sd.MaterialRatings)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.MaterialRatings", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatings", + "sourceType": "com.c_salesordermanage_sd.MaterialRatings", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrderType_Text", - "type": "Path", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)", + "isBound": true, + "isFunction": false, + "name": "RatingFormAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/Rating", + "isCollection": false, + "isEntitySet": false, + "name": "Rating", + "type": "Edm.Decimal", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatings", + "sourceType": "com.c_salesordermanage_sd.MaterialRatings", }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", + "isBound": true, + "isFunction": false, + "name": "MaterialRatingsDetailsBoundAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", }, Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", + "isBound": true, + "isFunction": false, + "name": "RatingCommentsFormAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/Comments", + "isCollection": false, + "isEntitySet": false, + "name": "Comments", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)", + "isBound": true, + "isFunction": false, + "name": "DummyBoundAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderItem", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderItem", + "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Language Key", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", + "isBound": true, + "isFunction": false, + "name": "IdentificationFormAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", + "isCollection": false, + "isEntitySet": false, + "name": "RequestedQuantity", + "type": "Edm.Decimal", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderItem", + "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "OPAvailableTrueAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "OPAvailableFalseAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "OPAvailableNullAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "AlternativeUnit", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "EnableEditAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "AlternativeUnit_Text", - "type": "Path", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "CreateWithSalesOrderType", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrderType", + "type": "Edm.String", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", + "isCollection": false, + "isEntitySet": false, + "name": "OrganizationDivision", + "type": "Edm.String", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", + "isCollection": false, + "isEntitySet": false, + "name": "DistributionChannel", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "FacetFormAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", + "isCollection": false, + "isEntitySet": false, + "name": "ShippingCondition", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "UoM Text", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "draftActivate", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "draftEdit", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/PreserveChanges", + "isCollection": false, + "isEntitySet": false, + "name": "PreserveChanges", + "type": "Edm.Boolean", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Numerator", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "ReturnInProcess()", + "isBound": false, + "isFunction": false, + "name": "ReturnInProcess", + "parameters": Array [], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "", }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Denominator", - "type": "String", - }, + "_type": "Action", + "fullyQualifiedName": "UnboundAction()", + "isBound": false, + "isFunction": false, + "name": "UnboundAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "UnboundAction()/MessageText", + "isCollection": false, + "isEntitySet": false, + "name": "MessageText", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "", }, ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Bullet Chart", - "type": "String", - }, - }, - Object { - "qualifier": "CreditLimitChart", - "record": Object { - "propertyValues": Array [ + "annotations": Object { + "serviceFile": Array [ + Object { + "annotations": Array [ Object { - "name": "ChartType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "EnumMember": "UI.ChartType/Bullet", - "type": "EnumMember", + "String": "Value Help for Billing Block Reason", + "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Credit Exposure", + "String": "Block", "type": "String", }, }, Object { - "name": "MeasureAttributes", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#CustomerCreditExposureAmount", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Measures", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Billing Block", + "type": "String", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "String": "Credit Limit Consumption", - "type": "String", + "Path": "BillingBlockReason_Text", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "HarveyBallCriticalityPath", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "ChartType", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "EnumMember": "UI.ChartType/Pie", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", + }, + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Testing HarveyBall MicroChart", + "String": "Materials By Sales Org and Distr Channel", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + }, + Object { + "annotations": Array [ Object { - "name": "MeasureAttributes", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#HarveyBallValuePath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", + "String": "SOrg.", + "type": "String", }, }, Object { - "name": "Measures", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Credit Limit HarveyBall MicroChart", + "String": "Sales Organization", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "RadialCriticalityPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Donut", - "type": "EnumMember", - }, - }, + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Testing Radial MicroChart", + "String": "DChl", "type": "String", }, }, Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#RadialValuePath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Credit Limit Radial MicroChart", + "String": "Distribution Channel", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "RadialCriticalityPathHidden", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "ChartType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "EnumMember": "UI.ChartType/Donut", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Testing Radial MicroChart Hidden", + "String": "Material", "type": "String", }, }, Object { - "name": "MeasureAttributes", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmountHidden", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#RadialValuePathHidden", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", + "String": "Material Number", + "type": "String", }, }, Object { - "name": "Measures", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmountHidden", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Path": "MaterialName", + "type": "Path", }, }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Credit Limit Radial MicroChart Hidden", + "String": "Material Description", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "CustomerCreditExposureAmount", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CriticalityCalculation", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "AcceptanceRangeHighValue", - "value": Object { - "Path": "AcceptanceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "AcceptanceRangeLowValue", - "value": Object { - "Path": "AcceptanceRangeLow", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeHighValue", - "value": Object { - "Path": "DeviationRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeLowValue", - "value": Object { - "Path": "DeviationRangeLow", - "type": "Path", - }, - }, - Object { - "name": "ImprovementDirection", - "value": Object { - "EnumMember": "UI.ImprovementDirectionType/Maximize", - "type": "EnumMember", - }, - }, - Object { - "name": "ToleranceRangeHighValue", - "value": Object { - "Path": "ToleranceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "ToleranceRangeLowValue", - "value": Object { - "Path": "ToleranceRangeLow", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", - }, - "type": "Record", + "String": "RQ Unit", + "type": "String", }, }, Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Bullet Micro Chart", + "String": "Sales Unit", "type": "String", }, }, Object { - "name": "ForecastValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Path": "CustomerCreditForecast", - "type": "Path", + "String": "Requested Quantity Unit", + "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", + }, + Object { + "annotations": Array [ Object { - "name": "MaximumValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Decimal": 7000, - "type": "Decimal", + "String": "Base Unit of Measure", + "type": "String", }, }, Object { - "name": "MinimumValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "Decimal": 200, - "type": "Decimal", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "TargetValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Exposure Amount", + "String": "Sales Unit", "type": "String", }, }, Object { - "name": "Value", - "value": Object { - "Path": "CustomerCreditExposureAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "HarveyBallValuePath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "Path": "CustomerIsAboveThreshold", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "MaximumValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", + }, + Object { + "annotations": Array [ Object { - "name": "Value", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Path": "CustomerCreditExposureAmount", - "type": "Path", + "String": "Sales Order Types", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "RadialValuePath", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Criticality", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Path": "CustomerIsAboveThreshold", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "TargetValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", + "String": "Sales Order Type", + "type": "String", }, }, Object { - "name": "Value", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Path": "CustomerCreditExposureAmount", + "Path": "SalesOrderType_Text", "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "RadialValuePathHidden", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "CustomerIsAboveThreshold", - "type": "Path", - }, - }, + Object { + "annotations": Array [ Object { - "name": "TargetValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", + "String": "Description", + "type": "String", }, }, Object { - "name": "Value", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "Path": "CustomerCreditExposureAmountHidden", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sold-to Party", - "type": "String", + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "email", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "type", - "value": Object { - "EnumMember": "Communication.ContactInformationType/work", - "type": "EnumMember", - }, - }, - Object { - "name": "address", - "value": Object { - "Path": "EmailAddress", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "fn", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Path": "CustomerName", - "type": "Path", + "String": "Language Key", + "type": "String", }, }, Object { - "name": "tel", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "type", - "value": Object { - "EnumMember": "Communication.PhoneType/fax", - "type": "EnumMember", - }, - }, - Object { - "name": "uri", - "value": Object { - "Path": "InternationalPhoneNumber", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.Communication.v1.PhoneNumberType", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.Communication.v1.ContactType", + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", }, - "term": "com.sap.vocabularies.Communication.v1.Contact", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Header", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "HeaderInfo", - "type": "String", - }, - }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ID", - "value": Object { - "String": "GeneralInfo", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "General Information", - "type": "String", - }, - }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Adress", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "Adress", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Contact", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "Partner", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#Contact", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", - }, - ], - "type": "Collection", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": "SoldToQuickView", - "record": Object { - "propertyValues": Array [ + }, Object { - "name": "Data", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PostalCode", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CityName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Country", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "type": "Collection", + "String": "Material", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CustomerName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "String": "AlternativeUnit", + "type": "String", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Customer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "Path": "AlternativeUnit_Text", + "type": "Path", }, }, Object { - "name": "TypeName", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "String": "Customer", - "type": "String", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + }, + Object { + "annotations": Array [ Object { - "name": "TypeNamePlural", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Customers", + "String": "UoM Text", "type": "String", }, }, - ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", - }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Customer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CustomerName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationBPName1", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationBPName2", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "BusinessPartnerImageURL", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PostalCode", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CityName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Country", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "InternationalPhoneNumber", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "EmailAddress", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Customer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Address", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@Communication.Contact", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Address", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.QuickViewFacets", - }, - Object { - "collection": Array [ - Object { - "PropertyPath": "CustomerName", - "type": "PropertyPath", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.SelectionFields", - }, - ], - "target": "com.c_salesordermanage_sd.Customer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ Object { - "name": "Searchable", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { "Bool": true, "type": "Bool", }, }, ], - "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/Customer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Customer Number", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CustomerName", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/Customer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Name", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Name of Customer", - "type": "String", + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Customer", + "String": "Numerator", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", + }, + Object { + "annotations": Array [ Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Customer", + "String": "Denominator", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", + }, + Object { + "annotations": Array [ Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ + "String": "Bullet Chart", + "type": "String", + }, + }, + Object { + "qualifier": "CreditLimitChart", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Customer", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Bullet", + "type": "EnumMember", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "CustomerName", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "Description", + "value": Object { + "String": "Credit Exposure", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "CityName", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CityName", - "type": "String", + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#CustomerCreditExposureAmount", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Country", + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmount", "type": "PropertyPath", }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "EmailAddress", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "EmailAddress", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "Title", + "value": Object { + "String": "Credit Limit Consumption", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.Customer/CustomerName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/Delivered", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Name 1", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Name", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Name 1", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Name 2", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Post. Code", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Postal Code", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "City Postal Code", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/PostalCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "City", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/CityName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Ctr", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Key", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Telephone Number", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Complete Number: Dialling Code+Number+Extension", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Email Address", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/EmailAddress", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer Payment Terms", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPaymentTerms", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "PayT", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Payment Terms", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Terms of Payment Key", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CustomerPaymentTerms_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Description of terms of payment", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer Purchase Order Type", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "POtyp", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Purchase Order Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Customer Purchase Order Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CustomerPurchaseOrderType_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Block Reason", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DB", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Block", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Default Delivery Block", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DeliveryBlockReason_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Delivery Block Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Block Desc.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delv. Due List Block", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Delivery Due List Block", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Priority", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryPriority", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DPrio", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Priority", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DeliveryPriority_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DistributionChannel_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Manage Sales Order Header Partner", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ Object { - "name": "email", - "value": Object { - "Collection": Array [ + "qualifier": "HarveyBallCriticalityPath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "type", - "value": Object { - "EnumMember": "Communication.ContactInformationType/work", - "type": "EnumMember", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Pie", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing HarveyBall MicroChart", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#HarveyBallValuePath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - Object { - "name": "address", - "value": Object { - "Path": "BusinessPartner", - "type": "Path", + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit HarveyBall MicroChart", + "type": "String", + }, }, ], - "type": "Collection", - }, - }, - Object { - "name": "fn", - "value": Object { - "Path": "FullName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.Communication.v1.ContactType", - }, - "term": "com.sap.vocabularies.Communication.v1.Contact", - }, - Object { - "qualifier": "Progress2", - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetValue", - "value": Object { - "Int": 100, - "type": "Int", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Progress", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "Progress", - "type": "Path", - }, - }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Progress", - "type": "EnumMember", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "Rating2", - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetValue", - "value": Object { - "Int": 5, - "type": "Int", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "Rating", - "type": "Path", - }, - }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Rating", - "type": "EnumMember", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "multipleActionFields", - "record": Object { - "propertyValues": Array [ Object { - "name": "Data", - "value": Object { - "Collection": Array [ + "qualifier": "RadialCriticalityPath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PartnerFunction", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Donut", + "type": "EnumMember", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating2", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + "name": "Description", + "value": Object { + "String": "Testing Radial MicroChart", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Status (Parent)", - "type": "String", + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#RadialValuePath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ParentBasedAction", - "type": "String", + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit Radial MicroChart", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Dummy Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ChangeOrderStatus", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#multipleActionFields", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Partner function", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@Communication.Contact", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Supplier", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "BusinessPartner", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "FullName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "isVerified", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Partner UUID", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/ID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Partner function", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "ID", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Progress", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/Progress", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Address", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/AddressID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Full Name", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/FullName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Telephone", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Postal Code", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Key", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsActionCritical", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/isVerified", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/owner/isVerified", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": "AddressData", - "record": Object { - "propertyValues": Array [ Object { - "name": "Data", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Ship To Party", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "BusinessPartner", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "StreetName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, + "qualifier": "RadialCriticalityPathHidden", + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "FLP", - "type": "String", - }, - }, - Object { - "name": "Url", - "value": Object { - "String": "http://shell.example", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "String": "Shell Home", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldWithUrl", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Donut", + "type": "EnumMember", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "HouseNumber", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Description", + "value": Object { + "String": "Testing Radial MicroChart Hidden", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PostalCode", - "type": "Path", + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmountHidden", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#RadialValuePathHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + ], + "type": "Collection", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CityName", - "type": "Path", + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmountHidden", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + ], + "type": "Collection", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Country", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Title", + "value": Object { + "String": "Credit Limit Radial MicroChart Hidden", + "type": "String", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Customer Number", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "qualifier": "customer", - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "SoldToParty", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "BusinessPartner", - "type": "PropertyPath", - }, - }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", - }, - ], - "qualifier": "customer", - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_ShipToPartyVH/CustomerName", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Ship-to Party", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "qualifier": "CustomerCreditExposureAmount", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "BusinessPartner", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, + "name": "CriticalityCalculation", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "AcceptanceRangeHighValue", + "value": Object { + "Path": "AcceptanceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "AcceptanceRangeLowValue", + "value": Object { + "Path": "AcceptanceRangeLow", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeHighValue", + "value": Object { + "Path": "DeviationRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeLowValue", + "value": Object { + "Path": "DeviationRangeLow", + "type": "Path", + }, + }, + Object { + "name": "ImprovementDirection", + "value": Object { + "EnumMember": "UI.ImprovementDirectionType/Maximize", + "type": "EnumMember", + }, + }, + Object { + "name": "ToleranceRangeHighValue", + "value": Object { + "Path": "ToleranceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "ToleranceRangeLowValue", + "value": Object { + "Path": "ToleranceRangeLow", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "type": "Record", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Description", + "value": Object { + "String": "Bullet Micro Chart", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName1", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ForecastValue", + "value": Object { + "Path": "CustomerCreditForecast", + "type": "Path", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName2", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "MaximumValue", + "value": Object { + "Decimal": 7000, + "type": "Decimal", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "BusinessPartnerImageURL", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "MinimumValue", + "value": Object { + "Decimal": 200, + "type": "Decimal", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "PostalCode", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "TargetValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CityName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Title", + "value": Object { + "String": "Exposure Amount", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmount", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "HarveyBallValuePath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "InternationalPhoneNumber", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Criticality", + "value": Object { + "Path": "CustomerIsAboveThreshold", + "type": "Path", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "EmailAddress", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "MaximumValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmount", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Postal Code", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "City", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Is Hidden", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Key", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Street", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "House Number", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextOnly", - "type": "EnumMember", + Object { + "qualifier": "RadialValuePath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "CustomerIsAboveThreshold", + "type": "Path", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DistributionChannel_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Organization Division", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dv", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextLast", - "type": "EnumMember", + Object { + "qualifier": "RadialValuePathHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "CustomerIsAboveThreshold", + "type": "Path", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmountHidden", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrganization_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails", }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextLast", - "type": "EnumMember", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrganization_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization Description", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization Currency", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Company Code", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Intercompany Billing Customer", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Classification", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "IncoT", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Incoterms (Part 1)", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "IncotermsClassification_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Cty", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Location Mandatory", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Location is mandatory", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Version", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsVersion", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "IncoV", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms version", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "IncotermsVersion_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Material", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Material_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Material/Material", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Is Hidden", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Material/isHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Material/Material_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material category", - "type": "String", + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Deletable", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Bool": true, - "type": "Bool", + "String": "Delivery Status", + "type": "String", }, }, ], - "type": "Org.OData.Capabilities.V1.DeleteRestrictionsType", + "target": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Insertable", + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", "value": Object { - "Bool": false, - "type": "Bool", + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", }, }, ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Updatable", + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", "value": Object { - "Bool": true, - "type": "Bool", + "Path": "TransactionCurrency", + "type": "Path", }, }, ], - "type": "Org.OData.Capabilities.V1.UpdateRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Category", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategory/Category", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Category Code", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategory/Category_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material country", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCountry", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Code", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCountry/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Fabrication Country", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCountry/Country_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Details", - "type": "String", + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", }, - }, - Object { - "qualifier": "MaterialDetailsModelYearChange", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "SourceProperties", + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ModelYear", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Path": "TransactionCurrency", + "type": "Path", }, }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", + }, + Object { + "annotations": Array [ Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ + "String": "Sold-to Party", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "WarrantyYear", - "type": "PropertyPath", + "name": "email", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "type", + "value": Object { + "EnumMember": "Communication.ContactInformationType/work", + "type": "EnumMember", + }, + }, + Object { + "name": "address", + "value": Object { + "Path": "EmailAddress", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "fn", + "value": Object { + "Path": "CustomerName", + "type": "Path", + }, + }, + Object { + "name": "tel", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "type", + "value": Object { + "EnumMember": "Communication.PhoneType/fax", + "type": "EnumMember", + }, + }, + Object { + "name": "uri", + "value": Object { + "Path": "InternationalPhoneNumber", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.PhoneNumberType", + }, + ], + "type": "Collection", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Communication.v1.ContactType", }, + "term": "com.sap.vocabularies.Communication.v1.Contact", }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Information", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.Identification", - "type": "AnnotationPath", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "MaterialDetailsFacet", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Reviews", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "MaterialRatingsFacet", - "type": "String", + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Header", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "HeaderInfo", + "type": "String", + }, + }, + Object { + "name": "Facets", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ID", + "value": Object { + "String": "GeneralInfo", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "General Information", + "type": "String", + }, + }, + Object { + "name": "Facets", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Adress", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "Adress", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Contact", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "Partner", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": "SoldToQuickView", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PostalCode", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CityName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Country", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_MaterialRatings/@UI.LineItem", - "type": "AnnotationPath", - }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CustomerName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Customer", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "TypeName", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Customers", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, Object { - "name": "Description", - "value": Object { - "Record": Object { + "collection": Array [ + Object { "propertyValues": Array [ Object { "name": "Value", "value": Object { - "Path": "material/Material_Text", + "Path": "Customer", "type": "Path", }, }, ], "type": "com.sap.vocabularies.UI.v1.DataField", }, - "type": "Record", - }, - }, - Object { - "name": "Title", - "value": Object { - "Record": Object { + Object { "propertyValues": Array [ Object { "name": "Value", "value": Object { - "Path": "material/Material", + "Path": "CustomerName", "type": "Path", }, }, ], "type": "com.sap.vocabularies.UI.v1.DataField", }, - "type": "Record", - }, - }, - Object { - "name": "TypeName", - "value": Object { - "String": "Material Details", - "type": "String", - }, - }, - Object { - "name": "TypeNamePlural", - "value": Object { - "String": "Material Details", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", - }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Material Category", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.MaterialCategoryFormAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ModelYear", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "WarrantyYear", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "BrandCategory", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OrganizationBPName1", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "FabricationCountry", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OrganizationBPName2", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "BusinessPartnerImageURL", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ModelYear", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PostalCode", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CityName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "WarrantyYear", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Country", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "InternationalPhoneNumber", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "BrandCategory", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "EmailAddress", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Customer", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "FabricationCountry", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Address", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@Communication.Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Details Bound Action", - "type": "String", + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Address", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.MaterialDetailsBoundAction", - "type": "String", + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.QuickViewFacets", + }, + Object { + "collection": Array [ + Object { + "PropertyPath": "CustomerName", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.SelectionFields", + }, + ], + "target": "com.c_salesordermanage_sd.Customer", + }, + Object { + "annotations": Array [ Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", }, ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Model Year", - "type": "String", + "target": "com.c_salesordermanage_sd.EntityContainer/Customer", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "MaterialYears", + "String": "Customer", "type": "String", }, }, Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "String": "Model Year", + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "ModelYear", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Model_Year", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Warranty_Expiration", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "String": "Customer Number", + "type": "String", }, }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/ModelYear", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ Object { - "name": "Immutable", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Bool": true, - "type": "Bool", + "Path": "CustomerName", + "type": "Path", }, }, ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.Core", - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Warranty Expiration", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_WarrantyYear/Warranty_Expiration", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/WarrantyYear", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Category", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_MaterialCategory/Category_Text", - "type": "Path", + "target": "com.c_salesordermanage_sd.Customer/Customer", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "MaterialCategory", + "String": "Customer", "type": "String", }, }, Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Category for the Material", + "String": "Name", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Collection": Array [ + "String": "Name of Customer", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "BrandCategory", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Category", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "CollectionPath", + "value": Object { + "String": "Customer", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Category_Text", - "type": "String", + "name": "Label", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Customer", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "CustomerName", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "CityName", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CityName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Country", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "EmailAddress", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "EmailAddress", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + ], + "type": "Collection", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListType", }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/BrandCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Fabrication Country", - "type": "String", + "target": "com.c_salesordermanage_sd.Customer/CustomerName", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_MaterialCountry/Country_Text", - "type": "Path", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Status", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/Delivered", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "MaterialCountry", + "String": "Name 1", "type": "String", }, }, Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Fabrication Country for the Material", + "String": "Name", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "FabricationCountry", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "String": "Name 1", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/FabricationCountry", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/HasActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/HasDraftEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "SourceProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "BrandCategory", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Name 2", + "type": "String", }, }, Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "BrandCategory", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Category", - "type": "String", + "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_MaterialCategory/Category_Text", - "type": "Path", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "MaterialCategory", + "String": "Post. Code", "type": "String", }, }, Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "String": "Category for the Material", + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Postal Code", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "BrandCategory", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Category", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Category_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "String": "City Postal Code", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/BrandCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Group", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialGroup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Prd Group", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Product Group", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "MaterialGroup_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Product Group Desc.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Product Group Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Rating", - "type": "String", + "target": "com.c_salesordermanage_sd.Customer/PostalCode", }, - }, - Object { - "qualifier": "Rating", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "TargetValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Int": 5, - "type": "Int", + "String": "City", + "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.Customer/CityName", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Rating", + "String": "Ctr", "type": "String", }, }, Object { - "name": "Value", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Path": "Rating", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Visualization", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "EnumMember": "UI.VisualizationType/Rating", - "type": "EnumMember", + "String": "Country Key", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.Customer/Country", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Review", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "MaterialRatingsFacet", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.Identification", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Review Details", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "MaterialRatingsDetailsFacet", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_MaterialRatingsDetails/@UI.LineItem", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Title", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "material/Material", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "String": "Telephone Number", + "type": "String", }, }, Object { - "name": "TypeName", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "String": "Material Rating", + "String": "Complete Number: Dialling Code+Number+Extension", "type": "String", }, }, Object { - "name": "TypeNamePlural", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "String": "Material Ratings", - "type": "String", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + "target": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Current Rating", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.RatingFormAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Rating", - "type": "Path", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Title", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Rating", - "type": "Path", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Title", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Ratings Bound Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.MaterialRatingsBoundAction", - "type": "String", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Email Address", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + }, Object { - "name": "Searchable", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { "Bool": true, "type": "Bool", }, }, ], - "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", + "target": "com.c_salesordermanage_sd.Customer/EmailAddress", }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "PreparationAction", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", + "String": "Customer Payment Terms", "type": "String", }, }, ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_Rating/Rating_Text", - "type": "Path", + "target": "com.c_salesordermanage_sd.CustomerPaymentTerms", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Rating", + "String": "PayT", "type": "String", }, }, Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "String": "Rating for the Material", + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Payment Terms", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Rating", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Rating_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "String": "Terms of Payment Key", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "CustomerPaymentTerms_Text", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Title", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/Title", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/HasActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/HasDraftEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "SourceProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Rating", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Description", + "type": "String", }, }, Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Rating", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Description of terms of payment", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", + "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_Rating/Rating_Text", - "type": "Path", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer Purchase Order Type", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Rating", + "String": "POtyp", "type": "String", }, }, Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "String": "Rating for the Material", + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Purchase Order Type", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Rating", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Rating_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "String": "Customer Purchase Order Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "CustomerPurchaseOrderType_Text", + "type": "Path", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Rating Details", - "type": "String", + "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", }, - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "ID", - "value": Object { - "String": "Facet", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.Identification", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Block Reason", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason", + }, + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "material/Material_Text", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "String": "DB", + "type": "String", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "material/Material", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "TypeName", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Review Details", + "String": "Delivery Block", "type": "String", }, }, Object { - "name": "TypeNamePlural", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "String": "Review Details", + "String": "Default Delivery Block", "type": "String", }, }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DeliveryBlockReason_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Current Comments", - "type": "String", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Delivery Block Description", + "type": "String", }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.RatingCommentsFormAction", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Block Desc.", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CREATEDAT", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "MODIFIEDAT", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delv. Due List Block", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "MODIFIEDBY", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Delivery Due List Block", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Priority", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Comments", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryPriority", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DPrio", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CREATEDAT", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Priority", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DeliveryPriority_Text", + "type": "Path", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "MODIFIEDAT", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "MODIFIEDBY", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DChl", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Comments", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Ratings Details Bound Action", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DistributionChannel_Text", + "type": "Path", }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel Description", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + }, Object { - "name": "Searchable", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { "Bool": true, "type": "Bool", }, }, ], - "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", + "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "PreparationAction", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", + "String": "Manage Sales Order Header Partner", "type": "String", }, }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Comments", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/Comments", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Created At", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/CREATEDAT", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Modified At", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDAT", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Modified By", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDBY", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasDraftEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "Comments", - "type": "PropertyPath", + "name": "email", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "type", + "value": Object { + "EnumMember": "Communication.ContactInformationType/work", + "type": "EnumMember", + }, + }, + Object { + "name": "address", + "value": Object { + "Path": "BusinessPartner", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "fn", + "value": Object { + "Path": "FullName", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Communication.v1.ContactType", }, + "term": "com.sap.vocabularies.Communication.v1.Contact", }, Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ + "qualifier": "Progress2", + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "Comments", - "type": "PropertyPath", + "name": "TargetValue", + "value": Object { + "Int": 100, + "type": "Int", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Progress", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Progress", + "type": "Path", + }, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Progress", + "type": "EnumMember", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Comments", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/Comments", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material years", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialYears", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Model Year", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialYears/Model_Year", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Warranty Expiration", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialYears/Warranty_Expiration", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OrganizationDivision", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dv", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Division_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OrganizationDivision/Division", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Billing Block Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallBillingBlockStatus_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Delivery Block Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallDeliveryBlockStatus_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Status Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall SD Process Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallSDProcessStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Status", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallSDProcessStatus_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Status Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Rating/Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Rating/Rating_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsActionCritical", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ReturnInProcess()", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "SD Document Reason", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SDDocumentReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "OrdRs", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Order Reason", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Order Reason (Reason for the Business Transaction)", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SDDocumentReason_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales District", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesDistrict", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SDst", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales District", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesDistrict_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "District name", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Name of the district", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Group", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesGroup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SGrp", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Group", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesGroup_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Group Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Office", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOffice", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SOff.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Office", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOffice_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Office Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Manage Sales Order Item (Transacl Procg)", - "type": "String", - }, - }, - Object { - "qualifier": "ItemRequestedQuantityChange", - "record": Object { - "propertyValues": Array [ Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ + "qualifier": "Rating2", + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "RequestedQuantity", - "type": "PropertyPath", + "name": "TargetValue", + "value": Object { + "Int": 5, + "type": "Int", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", + }, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Rating", + "type": "EnumMember", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ + "qualifier": "multipleActionFields", + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PartnerFunction", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating2", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Status (Parent)", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ParentBasedAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + ], + "type": "Collection", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Dummy Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ChangeOrderStatus", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#multipleActionFields", + "type": "AnnotationPath", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Partner function", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@Communication.Contact", + "type": "AnnotationPath", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Supplier", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "BusinessPartner", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "FullName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "isVerified", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + "target": "com.c_salesordermanage_sd.HeaderPartner", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "MaterialDetailsModelYearChange", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "_MaterialDetails/ModelYear", - "type": "PropertyPath", + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + }, + Object { + "annotations": Array [ Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_MaterialDetails/WarrantyYear", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Partner UUID", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + "target": "com.c_salesordermanage_sd.HeaderPartner/ID", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "AreaMaxPath", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "ChartType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "EnumMember": "UI.ChartType/Area", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Testing Area Chart", + "String": "Partner function", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", + }, + Object { + "annotations": Array [ Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#AreaMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Items Area Chart", + "String": "ID", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "BarStackedPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/BarStacked", - "type": "EnumMember", - }, - }, + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Testing Stacked Bar Chart", + "String": "Rating", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/Rating", + }, + Object { + "annotations": Array [ Object { - "name": "MeasureAttributes", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#BarStackedPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", + "String": "Progress", + "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/Progress", + }, + Object { + "annotations": Array [ Object { - "name": "Measures", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Items Stacked Bar Chart", + "String": "Address", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.HeaderPartner/AddressID", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "ColumnMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Column", - "type": "EnumMember", - }, - }, + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Testing Column Chart", + "String": "Full Name", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/FullName", + }, + Object { + "annotations": Array [ Object { - "name": "Dimensions", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "MeasureAttributes", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#ColumnMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", + "String": "Telephone", + "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", + }, + Object { + "annotations": Array [ Object { - "name": "Measures", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Items Column Chart", + "String": "Postal Code", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "ComparisonPath", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "ChartType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "EnumMember": "UI.ChartType/Bar", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Testing Comparison Chart", + "String": "Country Key", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/Country", + }, + Object { + "annotations": Array [ Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#ComparisonPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", + }, + Object { + "annotations": Array [ Object { - "name": "Measures", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "String": "Items Comparison Chart", - "type": "String", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "LineMaxPath", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "ChartType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsActionCritical", "value": Object { - "EnumMember": "UI.ChartType/Line", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Description", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", "value": Object { - "String": "Testing Line Chart", - "type": "String", + "Path": "_it/isVerified", + "type": "Path", }, }, + ], + "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", + }, + Object { + "annotations": Array [ Object { - "name": "Dimensions", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Path": "_it/owner/isVerified", + "type": "Path", }, }, + ], + "target": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", + }, + Object { + "annotations": Array [ Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ + "qualifier": "AddressData", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Ship To Party", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "BusinessPartner", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "StreetName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineValueCriticality", - "type": "AnnotationPath", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "FLP", + "type": "String", + }, + }, + Object { + "name": "Url", + "value": Object { + "String": "http://shell.example", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "String": "Shell Home", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldWithUrl", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "HouseNumber", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PostalCode", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineTargetCriticality", - "type": "AnnotationPath", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CityName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Country", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, }, ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Line Chart", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.HeaderShipToParty", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "LineMaxPathHidden", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "ChartType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "EnumMember": "UI.ChartType/Line", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Testing Line Chart", + "String": "Sales Order", "type": "String", }, }, Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmountHidden", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineValueCriticalityHidden", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineTargetCriticalityHidden", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmountHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "String": "Items Line Chart", - "type": "String", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "target": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "AreaMaxPath", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CriticalityCalculation", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "AcceptanceRangeHighValue", - "value": Object { - "Path": "AcceptanceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "AcceptanceRangeLowValue", - "value": Object { - "Path": "AcceptanceRangeLow", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeHighValue", - "value": Object { - "Path": "DeviationRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeLowValue", - "value": Object { - "Path": "DeviationRangeLow", - "type": "Path", - }, - }, - Object { - "name": "ImprovementDirection", - "value": Object { - "EnumMember": "UI.ImprovementDirectionType/Target", - "type": "EnumMember", - }, - }, - Object { - "name": "ToleranceRangeHighValue", - "value": Object { - "Path": "ToleranceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "ToleranceRangeLowValue", - "value": Object { - "Path": "ToleranceRangeLow", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", - }, - "type": "Record", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Area Micro Chart", + "String": "Customer", "type": "String", }, }, Object { - "name": "TargetValue", - "value": Object { - "Path": "TargetAmount", - "type": "Path", - }, - }, - Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "String": "Data", + "String": "Customer Number", "type": "String", }, }, Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "BarStackedPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "Criticality", - "type": "Path", - }, - }, - Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObject", "value": Object { - "String": "Net Amount", + "String": "SalesOrder", "type": "String", }, }, Object { - "name": "Value", + "qualifier": "customer", + "term": "com.sap.vocabularies.Common.v1.SemanticObject", "value": Object { - "Path": "NetAmount", - "type": "Path", + "String": "Customer", + "type": "String", }, }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "ColumnMaxPath", - "record": Object { - "propertyValues": Array [ Object { - "name": "CriticalityCalculation", - "value": Object { - "Record": Object { + "collection": Array [ + Object { "propertyValues": Array [ Object { - "name": "AcceptanceRangeHighValue", - "value": Object { - "Path": "AcceptanceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "AcceptanceRangeLowValue", - "value": Object { - "Path": "AcceptanceRangeLow", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeHighValue", - "value": Object { - "Path": "DeviationRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeLowValue", + "name": "LocalProperty", "value": Object { - "Path": "DeviationRangeLow", - "type": "Path", + "PropertyPath": "SoldToParty", + "type": "PropertyPath", }, }, Object { - "name": "ImprovementDirection", + "name": "SemanticObjectProperty", "value": Object { - "EnumMember": "UI.ImprovementDirectionType/Maximize", - "type": "EnumMember", + "String": "SoldToParty", + "type": "String", }, }, + ], + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ Object { - "name": "ToleranceRangeHighValue", + "name": "LocalProperty", "value": Object { - "Path": "ToleranceRangeHigh", - "type": "Path", + "PropertyPath": "BusinessPartner", + "type": "PropertyPath", }, }, Object { - "name": "ToleranceRangeLowValue", + "name": "SemanticObjectProperty", "value": Object { - "Path": "ToleranceRangeLow", - "type": "Path", + "String": "Customer", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", }, - "type": "Record", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Column Micro Chart", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Data", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, + ], + "qualifier": "customer", + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "ComparisonPath", - "record": Object { - "propertyValues": Array [ Object { - "name": "Criticality", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Path": "Criticality", + "Path": "_ShipToPartyVH/CustomerName", "type": "Path", }, }, Object { - "name": "Title", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineTargetCriticality", - "record": Object { - "propertyValues": Array [ + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Ship-to Party", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "BusinessPartner", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName1", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName2", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "BusinessPartnerImageURL", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "PostalCode", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CityName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "InternationalPhoneNumber", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "EmailAddress", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", + }, + Object { + "annotations": Array [ Object { - "name": "Criticality", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "EnumMember": "UI.CriticalityType/Neutral", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Target Amount Line", + "String": "Postal Code", "type": "String", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "String": "Target Amount", + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "City", "type": "String", }, }, Object { - "name": "Value", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "Path": "TargetAmount", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineTargetCriticalityHidden", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Criticality", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "EnumMember": "UI.CriticalityType/Neutral", - "type": "EnumMember", + "String": "Is Hidden", + "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", + }, + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "String": "Target Amount Line", - "type": "String", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Target Amount", + "String": "Country Key", "type": "String", }, }, Object { - "name": "Value", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "Path": "TargetAmount", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.HeaderShipToParty/Country", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineValueCriticality", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Criticality", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "EnumMember": "UI.CriticalityType/Positive", - "type": "EnumMember", + "String": "Street", + "type": "String", }, }, Object { - "name": "Description", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "String": "Net Amount Line", - "type": "String", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Net Amount", + "String": "House Number", "type": "String", }, }, Object { - "name": "Value", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "Path": "NetAmount", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineValueCriticalityHidden", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Criticality", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "EnumMember": "UI.CriticalityType/Positive", - "type": "EnumMember", + "String": "Distribution Channel", + "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.I_DistributionChannel", + }, + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Net Amount Hidden Line", + "String": "DChl", "type": "String", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "String": "Net Amount Hidden", + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", "type": "String", }, }, Object { - "name": "Value", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextOnly", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Path": "NetAmountHidden", + "Path": "DistributionChannel_Text", "type": "Path", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Item Information", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.Identification", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Details", - "type": "String", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel Description", + "type": "String", }, - Object { - "name": "ID", - "value": Object { - "String": "MaterialDetailsFacet", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_MaterialDetails/@UI.LineItem", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Organization Division", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision", + }, + Object { + "annotations": Array [ Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "owner/SalesOrder", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "String": "Dv", + "type": "String", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItem", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "TypeName", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Sales Order Item", + "String": "Division", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", + }, + Object { + "annotations": Array [ Object { - "name": "TypeNamePlural", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Sales Order Items", + "String": "Division Description", "type": "String", }, }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Identification Form Action", - "type": "String", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.IdentificationFormAction", - "type": "String", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextLast", + "type": "EnumMember", + }, }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrganization_Text", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItem", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision/SalesOrganization", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Material", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "RequestedQuantity", - "type": "Path", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextLast", + "type": "EnumMember", + }, }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrganization_Text", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization Description", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization Currency", + "type": "String", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "_Material/isHidden", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Company Code", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItem", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Intercompany Billing Customer", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Classification", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "HigherLevelItem", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "IncoT", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Material", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Incoterms (Part 1)", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "RequestedQuantity", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "IncotermsClassification_Text", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItemCategory", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Cty", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "RequestedDeliveryDate", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Location Mandatory", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Location is mandatory", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Version", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "_Material/Material", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsVersion", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "IncoV", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "isVerified", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms version", + "type": "String", }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "IncotermsVersion_Text", + "type": "Path", }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN with context", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "View Return Status", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/ReturnInProcess", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Dummy Bound Action", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.DummyBoundAction", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", + }, + Object { + "annotations": Array [ Object { - "name": "SortOrder", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Property", - "value": Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SortOrderType", - }, - ], - "type": "Collection", + "String": "Material", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", + "target": "com.c_salesordermanage_sd.Material", }, - "term": "com.sap.vocabularies.UI.v1.PresentationVariant", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Insertable", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Bool": false, + "Bool": true, "type": "Bool", }, }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Material_Text", + "type": "Path", + }, + }, ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + "target": "com.c_salesordermanage_sd.Material/Material", }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "PreparationAction", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", + "String": "Is Hidden", "type": "String", }, }, ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order UUID", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.PersonalData.v1.IsPotentiallySensitive", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/ID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Higher-Level Item", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item Category", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_ItemCategory/SalesDocumentItemCategory_Text", - "type": "Path", + "target": "com.c_salesordermanage_sd.Material/isHidden", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "SalesOrderItemCategory", + "String": "Material Description", "type": "String", }, }, Object { - "name": "Label", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "String": "Sales Document Item Category", - "type": "String", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.Material/Material_Text", + }, + Object { + "annotations": Array [ Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ + "String": "Material category", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCategory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrderItemCategory", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesDocumentItemCategory", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "Deletable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "type": "Org.OData.Capabilities.V1.DeleteRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesDocumentItemCategory_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ScheduleLineIsAllowed", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Updatable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "type": "Collection", + "type": "Org.OData.Capabilities.V1.UpdateRestrictionsType", }, + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "FieldControlType for Items Table", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "Path": "fieldControlType_item", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_Material/Material_Text", - "type": "Path", + "target": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "String": "C_MaterialBySlsOrgDistrChnl", + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Category", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.MaterialCategory/Category", + }, + Object { + "annotations": Array [ Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Materials for Manage Sales Order", + "String": "Category Code", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Material", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Material", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "owner/DistributionChannel", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "DistributionChannel", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "owner/SalesOrganization", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "RequestedQuantityUnit", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "RequestedQuantityUnit", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "MaterialName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/Material", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Requested Quantity", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.Unit", - "value": Object { - "Path": "RequestedQuantityUnit", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "Path": "fieldControlType_item", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Requested Qty Unit", - "type": "String", + "target": "com.c_salesordermanage_sd.MaterialCategory/Category_Text", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_RequestedQuantityUnit/UnitOfMeasure_Text", - "type": "Path", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material country", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCountry", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "String": "C_ProductUnitsOfMeasureVH", + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Country Code", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.MaterialCountry/Country", + }, + Object { + "annotations": Array [ Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Requested Quantity Units", + "String": "Fabrication Country", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "Collection": Array [ + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCountry/Country_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Details", + "type": "String", + }, + }, + Object { + "qualifier": "MaterialDetailsModelYearChange", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "RequestedQuantityUnit", + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ModelYear", "type": "PropertyPath", }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "AlternativeUnit", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Material", + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "WarrantyYear", "type": "PropertyPath", }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Product", - "type": "String", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Material Information", + "type": "String", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", - }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.Identification", + "type": "AnnotationPath", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "MaterialDetailsFacet", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Material Reviews", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "MaterialRatingsFacet", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_MaterialRatings/@UI.LineItem", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "AlternativeUnit_Text", - "type": "String", - }, + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "material/Material_Text", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "type": "Record", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "QuantityNumerator", - "type": "String", - }, + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "material/Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "type": "Record", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "QuantityDenominator", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "TypeName", + "value": Object { + "String": "Material Details", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Material Details", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Pricing Date", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Analytics.v1.Measure", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Value", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Value", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Target Value", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.ExcludeFromNavigationContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "RequestedQuantity", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Material Category", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.MaterialCategoryFormAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ModelYear", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "WarrantyYear", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "BrandCategory", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "FabricationCountry", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", }, Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "RequestedQuantity", - "type": "PropertyPath", - }, + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ModelYear", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "WarrantyYear", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "BrandCategory", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "FabricationCountry", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Material Details Bound Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.MaterialDetailsBoundAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/isVerified", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Requested Quantity", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Document Item Category", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ItCa", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item Category", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Sales Document Item Category", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesDocumentItemCategory", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SchAl", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sched.lines allowed", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Schedule lines allowed", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Manage Sales Order", - "type": "String", + "target": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", }, - }, - Object { - "collection": Array [ - Object { - "PropertyPath": "ID", - "type": "PropertyPath", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticKey", - }, - Object { - "qualifier": "ItemCreationOrDeletion", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "SourceEntities", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, }, Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ + "String": "Model Year", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", + "name": "CollectionPath", + "value": Object { + "String": "MaterialYears", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Model Year", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "ModelYear", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Model_Year", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Warranty_Expiration", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListType", }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + "target": "com.c_salesordermanage_sd.MaterialDetails/ModelYear", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ItemMaterialChange", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "_Item/Material", - "type": "PropertyPath", + "name": "Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "type": "Collection", + "type": undefined, }, + "term": "com.sap.vocabularies.Common.v1.Core", }, Object { - "name": "TargetEntities", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, }, Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Warranty Expiration", + "type": "String", }, }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ItemRequestedQuantityChange", - "record": Object { - "propertyValues": Array [ Object { - "name": "SourceProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_Item/RequestedQuantity", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Path": "_WarrantyYear/Warranty_Expiration", + "type": "Path", }, }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/WarrantyYear", + }, + Object { + "annotations": Array [ Object { - "name": "TargetEntities", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, }, Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "String": "Material Category", + "type": "String", }, }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ShipToPartyChange", - "record": Object { - "propertyValues": Array [ Object { - "name": "SourceProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_ShipToParty/BusinessPartner", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Path": "_MaterialCategory/Category_Text", + "type": "Path", }, }, Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", + "name": "CollectionPath", + "value": Object { + "String": "MaterialCategory", + "type": "String", + }, }, Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", + "name": "Label", + "value": Object { + "String": "Category for the Material", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "BrandCategory", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Category", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Category_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListType", }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + "target": "com.c_salesordermanage_sd.MaterialDetails/BrandCategory", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "SoldToChangeSalesAreaShipTo", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "SourceProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, }, Object { - "name": "TargetEntities", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + "String": "Fabrication Country", + "type": "String", }, }, Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, + "Path": "_MaterialCountry/Country_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "DistributionChannel", - "type": "PropertyPath", + "name": "CollectionPath", + "value": Object { + "String": "MaterialCountry", + "type": "String", + }, }, Object { - "PropertyPath": "OrganizationDivision", - "type": "PropertyPath", + "name": "Label", + "value": Object { + "String": "Fabrication Country for the Material", + "type": "String", + }, }, Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "FabricationCountry", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListType", }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + "target": "com.c_salesordermanage_sd.MaterialDetails/FabricationCountry", }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "NetValue", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Criticality", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "EnumMember": "UI.CriticalityType/Positive", - "type": "EnumMember", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "String": "Net Amount", - "type": "String", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.MaterialDetails/HasActiveEntity", + }, + Object { + "annotations": Array [ Object { - "name": "Value", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", "value": Object { - "Path": "TotalNetAmount", - "type": "Path", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.MaterialDetails/HasDraftEntity", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "Progress", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "TargetValue", - "value": Object { - "Int": 100, - "type": "Int", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "BrandCategory", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "BrandCategory", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, + ], + "target": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)", + }, + Object { + "annotations": Array [ Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "String": "Progress", - "type": "String", + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, }, Object { - "name": "Value", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Path": "Progress", + "String": "Material Category", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_MaterialCategory/Category_Text", "type": "Path", }, }, Object { - "name": "Visualization", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "MaterialCategory", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Category for the Material", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "BrandCategory", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Category", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Category_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/BrandCategory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "EnumMember": "UI.VisualizationType/Progress", - "type": "EnumMember", + "String": "Material Group", + "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.MaterialGroup", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "Rating", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "TargetValue", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "Int": 5, - "type": "Int", + "String": "Prd Group", + "type": "String", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "String": "Rating", + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Product Group", "type": "String", }, }, Object { - "name": "Value", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Path": "Rating", + "Path": "MaterialGroup_Text", "type": "Path", }, }, + ], + "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + }, + Object { + "annotations": Array [ Object { - "name": "Visualization", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "EnumMember": "UI.VisualizationType/Rating", - "type": "EnumMember", + "String": "Product Group Desc.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Product Group Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Header", - "type": "String", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Rating", + "type": "String", }, - Object { - "name": "ID", - "value": Object { - "String": "HeaderInfo", - "type": "String", - }, + }, + Object { + "qualifier": "Rating", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 5, + "type": "Int", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", + }, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Rating", + "type": "EnumMember", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ID", - "value": Object { - "String": "GeneralInfo", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "General Information", - "type": "String", - }, - }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Order Data", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "OrderData", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#OrderData", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Ship-To", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "AddressData", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_ShipToParty/@UI.FieldGroup#AddressData", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Terms & Conditions", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "TermsConditions", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#TermsConditions", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "Path": "High", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Business Partners", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "SalesOrderHeaderPartner", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Partner/@UI.LineItem", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Label", + "value": Object { + "String": "Material Review", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "MaterialRatingsFacet", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.Identification", + "type": "AnnotationPath", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Items", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "SalesOrderItems", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.LineItem", - "type": "AnnotationPath", + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": "OrderData", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Material Review Details", + "type": "String", }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, + }, + Object { + "name": "ID", + "value": Object { + "String": "MaterialRatingsDetailsFacet", + "type": "String", }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_MaterialRatingsDetails/@UI.LineItem", + "type": "AnnotationPath", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBNWithContext", - "type": "String", - }, + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Title", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "type": "Record", + }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "material/Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + "type": "Record", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "name": "TypeName", + "value": Object { + "String": "Material Rating", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Material Ratings", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Current Rating", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Facet Form Action", - "type": "String", - }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.RatingFormAction", + "type": "String", }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.FacetFormAction", - "type": "String", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SoldToParty", - "type": "Path", - }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Rating", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PurchaseOrderByCustomer", - "type": "Path", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Title", + "type": "Path", }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderDate", - "type": "Path", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ShippingCondition", - "type": "Path", - }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Rating", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OverallSDProcessStatus", - "type": "Path", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Title", + "type": "Path", }, - Object { - "name": "Criticality", - "value": Object { - "Path": "StatusCriticality", - "type": "Path", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Material Ratings Bound Action", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "DescriptionFieldForOPACleanup", - "type": "Path", - }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.MaterialRatingsBoundAction", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "type": "Collection", + "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "target": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "OrgData", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Data", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrganization", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_Rating/Rating_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "Rating", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "DistributionChannel", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Label", + "value": Object { + "String": "Rating for the Material", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Rating", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationDivision", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Rating_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + ], + "type": "Collection", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListType", }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "target": "com.c_salesordermanage_sd.MaterialRatings/Rating", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "OrgDataHeader", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Data", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "Collection": Array [ + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Title", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings/Title", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings/HasActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatings/HasDraftEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TotalNetAmount", - "type": "Path", + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Rating", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + ], + "type": "Collection", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Rating", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + ], + "type": "Collection", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "target": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "TermsConditions", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Data", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", "value": Object { - "Collection": Array [ + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_Rating/Rating_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsClassification", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "CollectionPath", + "value": Object { + "String": "Rating", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsVersion", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Label", + "value": Object { + "String": "Rating for the Material", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Rating", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsLocation1", - "type": "Path", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Rating_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + ], + "type": "Collection", + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/Rating", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Rating Details", + "type": "String", + }, + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsLocation2", - "type": "Path", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ID", + "value": Object { + "String": "Facet", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.Identification", + "type": "AnnotationPath", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CustomerPaymentTerms", - "type": "Path", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "material/Material_Text", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Record", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CompleteDeliveryIsDefined", - "type": "Path", - }, + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "material/Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Record", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PricingDate", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "TypeName", + "value": Object { + "String": "Review Details", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Review Details", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Current Comments", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.RatingCommentsFormAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CREATEDAT", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "MODIFIEDAT", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "MODIFIEDBY", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Comments", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CREATEDAT", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "MODIFIEDAT", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "MODIFIEDBY", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Comments", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Ratings Details Bound Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "multipleActionFields", - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "Data", - "value": Object { - "Collection": Array [ + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_SoldToParty/@Communication.Contact", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", }, ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + "target": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Sales Area", - "type": "String", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - Object { - "name": "ID", - "value": Object { - "String": "OrganizationalDataHeader", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Comments", + "type": "String", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#OrgData", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/Comments", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Created At", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Net Amount", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/CREATEDAT", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - Object { - "name": "ID", - "value": Object { - "String": "NetValueDataHeader", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Modified At", + "type": "String", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#NetValue", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDAT", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Modified By", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Contact Info", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDBY", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "name": "ID", - "value": Object { - "String": "ContactHeader", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_SoldToParty/@Communication.Contact", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasActiveEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasDraftEntity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Comments", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Comments", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "CreditLimitConsumption", - "type": "String", - }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - Object { - "name": "ID", - "value": Object { - "String": "CreditLimitChartHeader", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Comments", + "type": "String", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#CreditLimitChart", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/Comments", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material years", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialYears", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Comparison MicroChart", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Model Year", + "type": "String", }, - Object { - "name": "ID", - "value": Object { - "String": "ComparisonMicroChart", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#ComparisonPath", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialYears/Model_Year", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Warranty Expiration", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Radial MicroChart", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "name": "ID", - "value": Object { - "String": "RadialMicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialYears/Warranty_Expiration", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPathHidden", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OrganizationDivision", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dv", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Rating Value", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", }, - Object { - "name": "ID", - "value": Object { - "String": "RatingHeader", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Division_Text", + "type": "Path", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OrganizationDivision/Division", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division Description", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HeaderFacets", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Column MicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Billing Block Status", + "type": "String", }, - Object { - "name": "ID", - "value": Object { - "String": "ColumnMicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallBillingBlockStatus_Text", + "type": "Path", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#ColumnMaxPath", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Delivery Block Status", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Area MicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallDeliveryBlockStatus_Text", + "type": "Path", }, - Object { - "name": "ID", - "value": Object { - "String": "AreaMicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#AreaMaxPath", - "type": "AnnotationPath", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Status Description", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "HarveyBall MicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall SD Process Status", + "type": "String", }, - Object { - "name": "ID", - "value": Object { - "String": "HarveyBallMicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallSDProcessStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Searchable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#HarveyBallCriticalityPath", - "type": "AnnotationPath", - }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Status", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallSDProcessStatus_Text", + "type": "Path", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Line MicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "name": "ID", - "value": Object { - "String": "LineMicroChart", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Status Description", + "type": "String", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#LineMaxPath", - "type": "AnnotationPath", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Radial MicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Rating", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", }, - Object { - "name": "ID", - "value": Object { - "String": "RadialMicroChart", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Rating", + "type": "String", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPath", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Rating/Rating", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Stacked Bar MicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.Rating/Rating_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsActionCritical", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "name": "ID", - "value": Object { - "String": "BarStackedMicroChart", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.ReturnInProcess()", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "SD Document Reason", + "type": "String", }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#BarStackedPath", - "type": "AnnotationPath", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SDDocumentReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "OrdRs", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": "MicroCharts", - "term": "com.sap.vocabularies.UI.v1.HeaderFacets", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + }, Object { - "name": "Description", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderTypeName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "ImageUrl", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Path": "ImageUrl", - "type": "Path", + "String": "Order Reason", + "type": "String", }, }, Object { - "name": "Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrder", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", + "String": "Order Reason (Reason for the Business Transaction)", + "type": "String", }, }, Object { - "name": "TypeName", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "String": "Sales Order", + "Path": "SDDocumentReason_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", "type": "String", }, }, Object { - "name": "TypeNamePlural", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "String": "Sales Orders", + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales District", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + "target": "com.c_salesordermanage_sd.SalesDistrict", }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "editActionIsEnabled", - "type": "Path", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SDst", + "type": "String", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Enable Edit", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.EnableEditAction", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales District", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "editActionIsDisabled", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesDistrict_Text", + "type": "Path", }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Status (Header)", - "type": "String", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "District name", + "type": "String", }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ChangeOrderStatus", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Name of the district", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "editActionIsDisabled", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Status (Footer)", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ChangeOrderStatus", - "type": "String", - }, - }, - Object { - "name": "Determining", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Type", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN with context", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderType", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SoldToParty", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrganization", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "DistributionChannel", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationDivision", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PurchaseOrderByCustomer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Type", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Unbound Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/UnboundAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Return In Process", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/ReturnInProcess", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "v4Freestyle", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "Inbound", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN with context", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ID", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ImageUrl", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#multipleActionFields", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sold-To Party", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "_ShipToParty/isHidden", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderType", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OverallSDProcessStatus", - "type": "Path", - }, - }, - Object { - "name": "Criticality", - "value": Object { - "Path": "StatusCriticality", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TotalNetAmount", - "type": "Path", - }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Group", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + }, + ], + "target": "com.c_salesordermanage_sd.SalesGroup", + }, + Object { + "annotations": Array [ Object { - "name": "MaxItems", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "Int": 30, - "type": "Int", + "String": "SGrp", + "type": "String", }, }, Object { - "name": "RequestAtLeast", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrder", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "SortOrder", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Property", - "value": Object { - "PropertyPath": "ID", - "type": "PropertyPath", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SortOrderType", - }, - ], - "type": "Collection", + "String": "Sales Group", + "type": "String", }, }, - ], - "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", - }, - "term": "com.sap.vocabularies.UI.v1.PresentationVariant", - }, - Object { - "collection": Array [ - Object { - "PropertyPath": "SalesOrder", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallSDProcessStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "SalesOrderDate", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "LastChangedDateTime", - "type": "PropertyPath", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.SelectionFields", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ Object { - "name": "RestrictedProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "NavigationProperty", - "value": Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - }, - Object { - "name": "InsertRestrictions", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", - }, - "type": "Record", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.NavigationPropertyRestriction", - }, - ], - "type": "Collection", + "Path": "SalesGroup_Text", + "type": "Path", }, }, ], - "type": "Org.OData.Capabilities.V1.NavigationRestrictionsType", + "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", }, - "term": "Org.OData.Capabilities.V1.NavigationRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "ActivationAction", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "com.c_salesordermanage_sd.draftActivate", + "String": "Sales Group Description", "type": "String", }, }, Object { - "name": "EditAction", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "String": "com.c_salesordermanage_sd.draftEdit", - "type": "String", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", + }, + Object { + "annotations": Array [ Object { - "name": "PreparationAction", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", + "String": "Sales Office", "type": "String", }, }, ], - "type": "com.sap.vocabularies.Common.v1.DraftRootType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftRoot", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Inapplicable", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextOnly", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrder", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Return Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Order Type", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_SalesOrderType/SalesOrderType_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Image", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.IsImageURL", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Sold-To", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sold-To Party", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "qualifier": "customer", - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "Customer", - "type": "String", + "target": "com.c_salesordermanage_sd.SalesOffice", }, - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SOff.", + "type": "String", }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "SoldToParty", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Office", + "type": "String", }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOffice_Text", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", - }, - ], - "qualifier": "customer", - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_SoldToParty/CustomerName", - "type": "Path", + ], + "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Customer", + "String": "Sales Office Description", "type": "String", }, }, Object { - "name": "Label", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "String": "Sold-to Party", - "type": "String", + "Bool": true, + "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", + }, + Object { + "annotations": Array [ Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Collection": Array [ + "String": "Manage Sales Order Item (Transacl Procg)", + "type": "String", + }, + }, + Object { + "qualifier": "ItemRequestedQuantityChange", + "record": Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SoldToParty", + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedQuantity", "type": "PropertyPath", }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + ], + "type": "Collection", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerName", - "type": "String", + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + ], + "type": "Collection", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "MaterialDetailsModelYearChange", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName1", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_MaterialDetails/ModelYear", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName2", - "type": "String", + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_MaterialDetails/WarrantyYear", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + ], + "type": "Collection", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "AreaMaxPath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "BusinessPartnerImageURL", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Area", + "type": "EnumMember", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "PostalCode", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Description", + "value": Object { + "String": "Testing Area Chart", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CityName", - "type": "String", + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#AreaMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "InternationalPhoneNumber", - "type": "String", + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "EmailAddress", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Title", + "value": Object { + "String": "Items Area Chart", + "type": "String", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Progress", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/Progress", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer Reference", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Pricing Date", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SC", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_ShippingCondition/ShippingCondition_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "SalesOrderManage", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Shipping Condition", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "qualifier": "BarStackedPath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ShippingCondition", - "type": "String", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/BarStacked", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Stacked Bar Chart", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#BarStackedPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SoldToParty", + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", "type": "PropertyPath", }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SoldToParty", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Stacked Bar Chart", + "type": "String", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Complete Delivery", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_IncotermsClassification/IncotermsClassification_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "IncotermsClassification", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Incoterms Classification", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "qualifier": "ColumnMaxPath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "IncotermsClassification", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Column", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Column Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", "type": "PropertyPath", }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsClassification", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsClassification_Text", - "type": "String", + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#ColumnMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "LocationIsMandatory", - "type": "String", + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Column Chart", + "type": "String", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Version", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_IncotermsVersion/IncotermsVersion_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "IncotermsVersion", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Incoterms Version", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "qualifier": "ComparisonPath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "IncotermsVersion", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Bar", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Comparison Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", "type": "PropertyPath", }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsVersion", - "type": "String", + ], + "type": "Collection", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#ComparisonPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsVersion_Text", - "type": "String", + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Comparison Chart", + "type": "String", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "fieldControlType", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "Path": "fieldControlType", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Version 1", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Location 2", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Terms of Payment", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_CustomerPaymentTerms/CustomerPaymentTerms_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "CustomerPaymentTerms", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Customer Payment Terms", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "qualifier": "LineMaxPath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "CustomerPaymentTerms", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Line", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Line Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", "type": "PropertyPath", }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerPaymentTerms", - "type": "String", + ], + "type": "Collection", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineValueCriticality", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineTargetCriticality", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerPaymentTerms_Text", - "type": "String", + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Line Chart", + "type": "String", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Curr.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Document Currency", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "SD document currency", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Status", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_OverallSDProcessStatus/OverallSDProcessStatus_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "OverallSDProcessStatus", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Overall SD Process Status", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "qualifier": "LineMaxPathHidden", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "OverallSDProcessStatus", + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Line", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Line Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", "type": "PropertyPath", }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus", - "type": "String", + ], + "type": "Collection", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmountHidden", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineValueCriticalityHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineTargetCriticalityHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus_Text", - "type": "String", + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmountHidden", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Line Chart", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", }, + "term": "com.sap.vocabularies.UI.v1.Chart", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Last Change Date", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Document Date", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Document Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsActionCritical", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "type": "Null", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ + "qualifier": "AreaMaxPath", + "record": Object { + "propertyValues": Array [ Object { - "PropertyPath": "editActionIsEnabled", - "type": "PropertyPath", + "name": "CriticalityCalculation", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "AcceptanceRangeHighValue", + "value": Object { + "Path": "AcceptanceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "AcceptanceRangeLowValue", + "value": Object { + "Path": "AcceptanceRangeLow", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeHighValue", + "value": Object { + "Path": "DeviationRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeLowValue", + "value": Object { + "Path": "DeviationRangeLow", + "type": "Path", + }, + }, + Object { + "name": "ImprovementDirection", + "value": Object { + "EnumMember": "UI.ImprovementDirectionType/Target", + "type": "EnumMember", + }, + }, + Object { + "name": "ToleranceRangeHighValue", + "value": Object { + "Path": "ToleranceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "ToleranceRangeLowValue", + "value": Object { + "Path": "ToleranceRangeLow", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", + }, + "type": "Record", + }, }, Object { - "PropertyPath": "editActionIsDisabled", - "type": "PropertyPath", + "name": "Description", + "value": Object { + "String": "Area Micro Chart", + "type": "String", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "TargetAmount", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Data", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsActionCritical", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/isVerified", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "C_NotLockedSalesOrderTypeVH", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Order Types", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "qualifier": "BarStackedPath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrderType", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "Criticality", + "value": Object { + "Path": "Criticality", + "type": "Path", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrderType_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesDocumentTypeLangDepdnt", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.ParameterDefaultValue", - "value": Object { - "Path": "_it/SalesOrderType", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_SalesOrganization", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Organization", - "type": "String", + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, + "qualifier": "ColumnMaxPath", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization_Text", - "type": "String", - }, + "name": "CriticalityCalculation", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "AcceptanceRangeHighValue", + "value": Object { + "Path": "AcceptanceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "AcceptanceRangeLowValue", + "value": Object { + "Path": "AcceptanceRangeLow", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeHighValue", + "value": Object { + "Path": "DeviationRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeLowValue", + "value": Object { + "Path": "DeviationRangeLow", + "type": "Path", + }, + }, + Object { + "name": "ImprovementDirection", + "value": Object { + "EnumMember": "UI.ImprovementDirectionType/Maximize", + "type": "EnumMember", + }, + }, + Object { + "name": "ToleranceRangeHighValue", + "value": Object { + "Path": "ToleranceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "ToleranceRangeLowValue", + "value": Object { + "Path": "ToleranceRangeLow", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "type": "Record", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganizationCurrency", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Description", + "value": Object { + "String": "Column Micro Chart", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CompanyCode", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Title", + "value": Object { + "String": "Data", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IntercompanyBillingCustomer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.ParameterDefaultValue", - "value": Object { - "String": "0002", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dv", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ Object { - "name": "CollectionPath", - "value": Object { - "String": "I_OrganizationDivision", - "type": "String", + "qualifier": "ComparisonPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "Criticality", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "name": "Label", - "value": Object { - "String": "Division", - "type": "String", + "qualifier": "LineTargetCriticality", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Neutral", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Target Amount Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Target Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "TargetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "qualifier": "LineTargetCriticalityHidden", + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Neutral", + "type": "EnumMember", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "OrganizationDivision", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "Description", + "value": Object { + "String": "Target Amount Line", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Division_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Title", + "value": Object { + "String": "Target Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "TargetAmount", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ Object { - "name": "CollectionPath", - "value": Object { - "String": "I_DistributionChannel", - "type": "String", + "qualifier": "LineValueCriticality", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Positive", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Net Amount Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "name": "Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", + "qualifier": "LineValueCriticalityHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Positive", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Net Amount Hidden Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount Hidden", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmountHidden", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Item Information", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.Identification", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Material Details", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "MaterialDetailsFacet", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_MaterialDetails/@UI.LineItem", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "DistributionChannel", - "type": "PropertyPath", - }, + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "owner/SalesOrder", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "DistributionChannel", - "type": "String", - }, + "type": "Record", + }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "type": "Record", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "DistributionChannel_Text", - "type": "String", - }, + "name": "TypeName", + "value": Object { + "String": "Sales Order Item", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Sales Order Items", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Identification Form Action", + "type": "String", }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.IdentificationFormAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedQuantity", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "_Material/isHidden", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "HigherLevelItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedQuantity", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItemCategory", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedDeliveryDate", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "_Material/Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "isVerified", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN with context", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "View Return Status", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/ReturnInProcess", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Dummy Bound Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.DummyBoundAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "SortOrder", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Property", + "value": Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SortOrderType", + }, + ], + "type": "Collection", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", }, + "term": "com.sap.vocabularies.UI.v1.PresentationVariant", }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/_ShipToParty/isVerified", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", + "target": "com.c_salesordermanage_sd.SalesOrderItem", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Status", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", + }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order UUID", + "type": "String", + }, }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallSDProcessStatus_Text", - "type": "Path", + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.PersonalData.v1.IsPotentiallySensitive", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/ID", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "OverallSDProcessStatus", + "String": "Sales Order", "type": "String", }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", + }, + Object { + "annotations": Array [ Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Overall SD Process Status", + "String": "Item", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "OverallSDProcessStatus", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "TargetProperties", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - ], - "type": "Collection", + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Higher-Level Item", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, }, ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/_ShipToParty/isVerified", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SC", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", + "target": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ + Object { + "annotations": Array [ Object { - "name": "CollectionPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { - "String": "ShippingCondition", - "type": "String", + "Bool": true, + "type": "Bool", }, }, Object { - "name": "Label", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Shipping Conditions", + "String": "Item Category", "type": "String", }, }, Object { - "name": "Parameters", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Collection": Array [ + "Path": "_ItemCategory/SalesDocumentItemCategory_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ShippingCondition", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "CollectionPath", + "value": Object { + "String": "SalesOrderItemCategory", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ShippingCondition_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Label", + "value": Object { + "String": "Sales Document Item Category", + "type": "String", + }, }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Types", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrderType_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Document Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Sales Document Type Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "C", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Indicator", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Sales document indicator (for display in TVAK only)", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Req.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Billing Request", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Order type for request for billing", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrderItemCategory", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesDocumentItemCategory", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesDocumentItemCategory_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ScheduleLineIsAllowed", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrganization_Text", - "type": "Path", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "FieldControlType for Items Table", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Condition", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "Path": "fieldControlType_item", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_Material/Material_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "C_MaterialBySlsOrgDistrChnl", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Materials for Manage Sales Order", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Material", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "owner/DistributionChannel", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "DistributionChannel", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "owner/SalesOrganization", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "RequestedQuantityUnit", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "RequestedQuantityUnit", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "MaterialName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/Material", }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingCondition", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SC", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Requested Quantity", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.Unit", + "value": Object { + "Path": "RequestedQuantityUnit", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "Path": "fieldControlType_item", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Requested Qty Unit", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_RequestedQuantityUnit/UnitOfMeasure_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "C_ProductUnitsOfMeasureVH", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Requested Quantity Units", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "RequestedQuantityUnit", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "AlternativeUnit", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Material", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Product", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "AlternativeUnit_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "QuantityNumerator", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "QuantityDenominator", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ShippingCondition_Text", - "type": "Path", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Pricing Date", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Analytics.v1.Measure", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Value", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Shipping Conditions Description", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Value", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Target Value", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.ExcludeFromNavigationContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Point", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingPoint", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ShPt", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Point", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedQuantity", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedQuantity", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/isVerified", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Shipping Point / Receiving Point", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Requested Quantity", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ShippingPoint_Text", - "type": "Path", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Document Item Category", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory", }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "ItCa", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item Category", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Sales Document Item Category", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesDocumentItemCategory", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Type", - "type": "String", + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SchAl", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sched.lines allowed", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Schedule lines allowed", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ST", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ShippingType_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingType/ShippingType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Shipping Type Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Message", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnboundAction()/MessageText", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Unit of Measure", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "MU", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Internal UoM", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Unit of Measurement", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "UnitOfMeasure_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Measurement unit text", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "UoM Text", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Unit of Measurement Text (Maximum 30 Characters)", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dimen.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dimension", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Dimension Key", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ISO", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "ISO Code", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "ISO Code for Unit of Measurement", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DeR", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Decimal Rounding", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Number of Decimal Places for Rounding", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dec", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Decimal Places", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Number of Decimal Places for Number Display", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", - }, - ], - }, - "_associationSets": Array [], - "_associations": Array [], - "_complexTypes": Array [], - "_entityContainer": Object { - "_type": "EntityContainer", - "fullyQualifiedName": "", - "name": "EntityContainer", - }, - "_entitySets": Array [ - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BusinessPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BusinessPartner", - "name": "BusinessPartner", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_MaterialBySlsOrgDistrChnl", - "name": "C_MaterialBySlsOrgDistrChnl", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_NotLockedSalesOrderTypeVH", - "name": "C_NotLockedSalesOrderTypeVH", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_ProductUnitsOfMeasureVH", - "name": "C_ProductUnitsOfMeasureVH", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Manage Sales Order", + "type": "String", + }, }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, + Object { + "collection": Array [ + Object { + "PropertyPath": "ID", + "type": "PropertyPath", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticKey", }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "ItemCreationOrDeletion", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, + Object { + "qualifier": "ItemMaterialChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_Item/Material", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", }, - "material": [Circular], - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "ItemRequestedQuantityChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_Item/RequestedQuantity", + "type": "PropertyPath", }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", }, - "material": [Circular], - "owner": [Circular], - }, + ], + "type": "Collection", }, }, - }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, - "_MaterialDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, + Object { + "qualifier": "ShipToPartyChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_ShipToParty/BusinessPartner", + "type": "PropertyPath", }, - "materialrating": [Circular], - }, + ], + "type": "Collection", }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "SoldToChangeSalesAreaShipTo", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", }, - "_MaterialRatings": [Circular], - }, + ], + "type": "Collection", }, - "materialdetail": [Circular], }, - }, - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, + Object { + "PropertyPath": "DistributionChannel", + "type": "PropertyPath", }, - "material": [Circular], - "materialdetail": [Circular], - }, + Object { + "PropertyPath": "OrganizationDivision", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", }, }, - }, - "owner": [Circular], + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "NetValue", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Positive", + "type": "EnumMember", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "Progress", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 100, + "type": "Int", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Progress", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Progress", + "type": "Path", + }, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Progress", + "type": "EnumMember", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": [Circular], - }, - }, - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": [Circular], - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.I_DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_DistributionChannel", - "name": "I_DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.I_OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_OrganizationDivision", - "name": "I_OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.I_SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_SalesOrganization", - "name": "I_SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": [Circular], - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "Rating", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 5, + "type": "Int", }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Title", + "value": Object { + "String": "Rating", + "type": "String", }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Rating", + "type": "EnumMember", }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Header", + "type": "String", }, }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + Object { + "name": "ID", + "value": Object { + "String": "HeaderInfo", + "type": "String", + }, }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, + Object { + "name": "Facets", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ID", + "value": Object { + "String": "GeneralInfo", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "General Information", + "type": "String", + }, + }, + Object { + "name": "Facets", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Order Data", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "OrderData", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#OrderData", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Ship-To", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "AddressData", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_ShipToParty/@UI.FieldGroup#AddressData", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Terms & Conditions", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "TermsConditions", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#TermsConditions", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "Path": "High", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Business Partners", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "SalesOrderHeaderPartner", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Partner/@UI.LineItem", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "type": "Collection", + }, }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, + ], + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Items", + "type": "String", + }, }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + Object { + "name": "ID", + "value": Object { + "String": "SalesOrderItems", + "type": "String", + }, }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.LineItem", + "type": "AnnotationPath", + }, }, - }, - }, - }, - }, - }, - }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_MaterialRatings": [Circular], - }, - }, - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialdetail": [Circular], - }, - }, - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": [Circular], - }, - }, - }, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": [Circular], + Object { + "qualifier": "OrderData", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBNWithContext", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Facet Form Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.FacetFormAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SoldToParty", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PurchaseOrderByCustomer", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderDate", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ShippingCondition", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OverallSDProcessStatus", + "type": "Path", + }, + }, + Object { + "name": "Criticality", + "value": Object { + "Path": "StatusCriticality", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "DescriptionFieldForOPACleanup", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, - }, - }, - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], + Object { + "qualifier": "OrgData", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrganization", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "DistributionChannel", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OrganizationDivision", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, + Object { + "qualifier": "OrgDataHeader", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": "TermsConditions", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "IncotermsClassification", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "IncotermsVersion", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "IncotermsLocation1", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "IncotermsLocation2", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CustomerPaymentTerms", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CompleteDeliveryIsDefined", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PricingDate", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], + Object { + "qualifier": "multipleActionFields", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_SoldToParty/@Communication.Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Sales Area", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "OrganizationalDataHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#OrgData", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "NetValueDataHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#NetValue", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Contact Info", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "ContactHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_SoldToParty/@Communication.Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "CreditLimitConsumption", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "CreditLimitChartHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#CreditLimitChart", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Comparison MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "ComparisonMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#ComparisonPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Radial MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "RadialMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPathHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Rating Value", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "RatingHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HeaderFacets", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Column MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "ColumnMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#ColumnMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Area MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "AreaMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#AreaMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "HarveyBall MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "HarveyBallMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#HarveyBallCriticalityPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Line MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "LineMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#LineMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Radial MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "RadialMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Stacked Bar MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "BarStackedMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#BarStackedPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + ], + "qualifier": "MicroCharts", + "term": "com.sap.vocabularies.UI.v1.HeaderFacets", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderTypeName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", }, }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, + Object { + "name": "ImageUrl", + "value": Object { + "Path": "ImageUrl", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrder", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "TypeName", + "value": Object { + "String": "Sales Order", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Sales Orders", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", }, - }, - }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": [Circular], - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "editActionIsEnabled", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Enable Edit", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.EnableEditAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "editActionIsDisabled", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Status (Header)", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ChangeOrderStatus", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "material": [Circular], - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "editActionIsDisabled", + "type": "Path", + }, }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Status (Footer)", + "type": "String", + }, }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ChangeOrderStatus", + "type": "String", + }, }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, + Object { + "name": "Determining", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Type", + "type": "String", + }, }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", + "type": "String", + }, }, - "_Material": [Circular], - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, - }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", }, }, - }, - }, - }, - }, - }, - }, - }, - }, - "materialrating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": [Circular], - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, + Object { + "name": "Label", + "value": Object { + "String": "IBN with context", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderType", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SoldToParty", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrganization", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "DistributionChannel", + "type": "Path", + }, }, - "_MaterialRatings": [Circular], - }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OrganizationDivision", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PurchaseOrderByCustomer", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Type", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Unbound Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/UnboundAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Return In Process", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/ReturnInProcess", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "v4Freestyle", + "type": "String", + }, }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, + Object { + "name": "Action", + "value": Object { + "String": "Inbound", + "type": "String", + }, }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, + Object { + "name": "Label", + "value": Object { + "String": "IBN with context", + "type": "String", + }, }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ID", + "type": "Path", + }, }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ImageUrl", + "type": "Path", + }, }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#multipleActionFields", + "type": "AnnotationPath", + }, }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, + Object { + "name": "Label", + "value": Object { + "String": "Sold-To Party", + "type": "String", + }, }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "_ShipToParty/isHidden", + "type": "Path", }, }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderType", + "type": "Path", + }, }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OverallSDProcessStatus", + "type": "Path", + }, }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, + Object { + "name": "Criticality", + "value": Object { + "Path": "StatusCriticality", + "type": "Path", + }, }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "MaxItems", + "value": Object { + "Int": 30, + "type": "Int", }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "RequestAtLeast", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrder", + "type": "PropertyPath", }, - }, + ], + "type": "Collection", }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, + }, + Object { + "name": "SortOrder", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Property", + "value": Object { + "PropertyPath": "ID", + "type": "PropertyPath", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SortOrderType", + }, + ], + "type": "Collection", }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + }, + ], + "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", + }, + "term": "com.sap.vocabularies.UI.v1.PresentationVariant", + }, + Object { + "collection": Array [ + Object { + "PropertyPath": "SalesOrder", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallSDProcessStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SalesOrderDate", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "LastChangedDateTime", + "type": "PropertyPath", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.SelectionFields", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "RestrictedProperties", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "NavigationProperty", + "value": Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + }, + Object { + "name": "InsertRestrictions", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + }, + "type": "Record", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.NavigationPropertyRestriction", + }, + ], + "type": "Collection", }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + }, + ], + "type": "Org.OData.Capabilities.V1.NavigationRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.NavigationRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "ActivationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftActivate", + "type": "String", + }, + }, + Object { + "name": "EditAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftEdit", + "type": "String", + }, + }, + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", }, }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftRootType", + }, + "term": "com.sap.vocabularies.Common.v1.DraftRoot", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Inapplicable", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", + }, + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextOnly", + "type": "EnumMember", + }, }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrder", + "type": "Path", }, }, - }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ID", }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", }, }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "owner": [Circular], + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", }, }, - }, - }, - }, - }, - "_MaterialDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialrating": [Circular], + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Status", + "type": "String", }, }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Return Status", + "type": "String", }, }, - "materialdetail": [Circular], - }, - }, - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Order Type", + "type": "String", + }, + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", }, }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": [Circular], + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_SalesOrderType/SalesOrderType_Text", + "type": "Path", }, }, - }, - }, - "owner": [Circular], - }, - }, - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, - }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Image", + "type": "String", + }, }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "owner": [Circular], - }, - }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.IsImageURL", + "value": Object { + "Bool": true, + "type": "Bool", }, }, - }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", }, - "_MaterialDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Sold-To", + "type": "String", + }, }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialdetail": [Circular], + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, }, - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sold-To Party", + "type": "String", + }, }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], + Object { + "qualifier": "customer", + "term": "com.sap.vocabularies.Common.v1.SemanticObject", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", }, }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, + Object { + "name": "SemanticObjectProperty", + "value": Object { + "String": "SoldToParty", + "type": "String", + }, }, - "material": [Circular], - "materialdetail": [Circular], - }, + ], + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", }, - }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", }, - "owner": [Circular], - }, - }, - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + }, + Object { + "name": "SemanticObjectProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", + }, + ], + "qualifier": "customer", + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_SoldToParty/CustomerName", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sold-to Party", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName1", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName2", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "BusinessPartnerImageURL", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "PostalCode", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CityName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "InternationalPhoneNumber", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "EmailAddress", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/Rating", }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Progress", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/Progress", }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", }, - "owner": [Circular], - }, - }, - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, - }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - ], - "_entityTypes": Array [ - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", - "maxLength": 2, - "name": "BillingBlockReason", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", - "maxLength": 20, - "name": "BillingBlockReason_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", - "maxLength": 2, - "name": "BillingBlockReason", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "BillingBlockReason", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", - "maxLength": 2, - "name": "PartnerFunction", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/BusinessPartner", - "maxLength": 10, - "name": "BusinessPartner", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/FullName", - "maxLength": 80, - "name": "FullName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PhoneNumber", - "maxLength": 30, - "name": "PhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/MobilePhoneNumber", - "maxLength": 30, - "name": "MobilePhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/EmailAddress", - "maxLength": 241, - "name": "EmailAddress", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", - "maxLength": 2, - "name": "PartnerFunction", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "BusinessPartner", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", - "maxLength": 40, - "name": "Material", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", - "maxLength": 40, - "name": "MaterialName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", - "maxLength": 40, - "name": "RequestedQuantityUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", - "maxLength": 40, - "name": "MaterialBaseUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", - "maxLength": 40, - "name": "SalesMeasureUnit", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", - "maxLength": 40, - "name": "Material", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "C_MaterialBySlsOrgDistrChnl", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", - "maxLength": 20, - "name": "SalesOrderType_Text", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", - "maxLength": 4, - "name": "SalesDocumentTypeLangDepdnt", - "nullable": false, - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "C_NotLockedSalesOrderTypeVH", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", - "maxLength": 18, - "name": "Product", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", - "maxLength": 40, - "name": "AlternativeUnit", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", - "maxLength": 30, - "name": "AlternativeUnit_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", - "name": "QuantityNumerator", - "precision": 5, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", - "name": "QuantityDenominator", - "precision": 5, - "scale": 0, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", - "maxLength": 18, - "name": "Product", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", - "maxLength": 40, - "name": "AlternativeUnit", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "C_ProductUnitsOfMeasureVH", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", - "name": "CustomerCreditExposureAmount", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", - "name": "CustomerCreditExposureAmountHidden", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", - "name": "CustomerCreditForecast", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount_text", - "maxLength": 15, - "name": "CustomerCreditExposureAmount_text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", - "name": "CustomerCreditLimitAmount", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/MaximumCreditValue", - "name": "MaximumCreditValue", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount_text", - "maxLength": 15, - "name": "CustomerCreditLimitAmount_text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/TransactionCurrency", - "maxLength": 5, - "name": "TransactionCurrency", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerIsAboveThreshold", - "name": "CustomerIsAboveThreshold", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeLow", - "name": "ToleranceRangeLow", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeHigh", - "name": "ToleranceRangeHigh", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeLow", - "name": "DeviationRangeLow", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeHigh", - "name": "DeviationRangeHigh", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeLow", - "name": "AcceptanceRangeLow", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeHigh", - "name": "AcceptanceRangeHigh", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "CreditLimitDetails", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", - "maxLength": 10, - "name": "Customer", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CustomerName", - "maxLength": 80, - "name": "CustomerName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", - "maxLength": 35, - "name": "OrganizationBPName1", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", - "maxLength": 35, - "name": "OrganizationBPName2", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", - "name": "BusinessPartnerImageURL", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CityName", - "maxLength": 40, - "name": "CityName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", - "maxLength": 30, - "name": "InternationalPhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/EmailAddress", - "maxLength": 241, - "name": "EmailAddress", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", - "maxLength": 10, - "name": "Customer", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Customer", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", - "maxLength": 30, - "name": "CustomerPaymentTerms_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "CustomerPaymentTerms", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", - "maxLength": 4, - "name": "CustomerPurchaseOrderType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", - "maxLength": 20, - "name": "CustomerPurchaseOrderType_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", - "maxLength": 4, - "name": "CustomerPurchaseOrderType", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "CustomerPurchaseOrderType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", - "maxLength": 2, - "name": "DeliveryBlockReason", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", - "maxLength": 20, - "name": "DeliveryBlockReason_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", - "name": "DeliveryDueListBlock", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", - "maxLength": 2, - "name": "DeliveryBlockReason", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "DeliveryBlockReason", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", - "maxLength": 2, - "name": "DeliveryPriority", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", - "maxLength": 20, - "name": "DeliveryPriority_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", - "maxLength": 2, - "name": "DeliveryPriority", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "DeliveryPriority", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", - "maxLength": 20, - "name": "DistributionChannel_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "DistributionChannel", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", - "name": "DraftUUID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreationDateTime", - "name": "CreationDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreatedByUser", - "maxLength": 256, - "name": "CreatedByUser", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsCreatedByMe", - "name": "DraftIsCreatedByMe", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangeDateTime", - "name": "LastChangeDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangedByUser", - "maxLength": 256, - "name": "LastChangedByUser", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/InProcessByUser", - "maxLength": 256, - "name": "InProcessByUser", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsProcessedByMe", - "name": "DraftIsProcessedByMe", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", - "name": "DraftUUID", - "nullable": false, - "type": "Edm.Guid", - }, - ], - "name": "DraftAdministrativeData", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", - "maxLength": 2, - "name": "PartnerFunction", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", - "maxLength": 10, - "name": "BusinessPartner", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Rating", - "name": "Rating", - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Progress", - "name": "Progress", - "precision": 4, - "scale": 1, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SemanticObject", - "maxLength": 15, - "name": "SemanticObject", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/AddressID", - "maxLength": 10, - "name": "AddressID", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/FullName", - "maxLength": 80, - "name": "FullName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", - "maxLength": 30, - "name": "PhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/CityName", - "maxLength": 40, - "name": "CityName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner_ID", - "name": "owner_ID", - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "name": "HeaderPartner", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner", - "isCollection": false, - "name": "owner", - "partner": "_Partner", - "referentialConstraint": Array [ Object { - "sourceProperty": "owner_ID", - "sourceTypeName": "HeaderPartner", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer Reference", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", - "maxLength": 10, - "name": "BusinessPartner", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", - "maxLength": 40, - "name": "CityName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", - "name": "isHidden", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", - "maxLength": 60, - "name": "StreetName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", - "maxLength": 10, - "name": "HouseNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "HeaderShipToParty", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/_ShipToPartyVH", - "isCollection": false, - "name": "_ShipToPartyVH", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "BusinessPartner", - "sourceTypeName": "HeaderShipToParty", - "targetProperty": "Customer", - "targetTypeName": "com.c_salesordermanage_sd.Customer", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Pricing Date", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Customer", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", - "maxLength": 20, - "name": "DistributionChannel_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_DistributionChannel", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", - "maxLength": 20, - "name": "Division_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_OrganizationDivision", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", - "maxLength": 20, - "name": "SalesOrganization_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", - "maxLength": 5, - "name": "SalesOrganizationCurrency", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", - "maxLength": 4, - "name": "CompanyCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", - "maxLength": 10, - "name": "IntercompanyBillingCustomer", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_SalesOrganization", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", - "maxLength": 30, - "name": "IncotermsClassification_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", - "name": "LocationIsMandatory", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "IncotermsClassification", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", - "maxLength": 30, - "name": "IncotermsVersion_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "IncotermsVersion", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", - "maxLength": 18, - "name": "Material", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/isHidden", - "name": "isHidden", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material_Text", - "maxLength": 40, - "name": "Material_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup_MaterialGroup", - "maxLength": 9, - "name": "_MaterialGroup_MaterialGroup", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.Material", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", - "maxLength": 18, - "name": "Material", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Material", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup", - "isCollection": false, - "name": "_MaterialGroup", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_MaterialGroup_MaterialGroup", - "sourceTypeName": "Material", - "targetProperty": "MaterialGroup", - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SC", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_ShippingCondition/ShippingCondition_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "SalesOrderManage", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Shipping Condition", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ShippingCondition", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SoldToParty", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialRatings", - "isCollection": true, - "name": "_MaterialRatings", - "partner": "material", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category", - "maxLength": 2, - "name": "Category", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category_Text", - "maxLength": 20, - "name": "Category_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category", - "maxLength": 2, - "name": "Category", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "MaterialCategory", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country", - "maxLength": 2, - "name": "Country", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country_Text", - "maxLength": 20, - "name": "Country_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country", - "maxLength": 2, - "name": "Country", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "MaterialCountry", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ModelYear", - "maxLength": 4, - "name": "ModelYear", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/WarrantyYear", - "maxLength": 4, - "name": "WarrantyYear", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/BrandCategory", - "maxLength": 20, - "name": "BrandCategory", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/FabricationCountry", - "maxLength": 20, - "name": "FabricationCountry", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/material_Material", - "maxLength": 18, - "name": "material_Material", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/owner_ID", - "name": "owner_ID", - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_WarrantyYear_Model_Year", - "maxLength": 4, - "name": "_WarrantyYear_Model_Year", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "name": "MaterialDetails", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/material", - "isCollection": false, - "name": "material", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "material_Material", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Material", - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/owner", - "isCollection": false, - "name": "owner", - "partner": "_MaterialDetails", - "referentialConstraint": Array [ Object { - "sourceProperty": "owner_ID", - "sourceTypeName": "MaterialDetails", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Complete Delivery", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_ModelYear", - "isCollection": false, - "name": "_ModelYear", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "ModelYear", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Model_Year", - "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_IncotermsClassification/IncotermsClassification_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "IncotermsClassification", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Incoterms Classification", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "IncotermsClassification", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsClassification", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsClassification_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "LocationIsMandatory", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_WarrantyYear", - "isCollection": false, - "name": "_WarrantyYear", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_WarrantyYear_Model_Year", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Model_Year", - "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Version", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_IncotermsVersion/IncotermsVersion_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "IncotermsVersion", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Incoterms Version", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "IncotermsVersion", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsVersion", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsVersion_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialCountry", - "isCollection": false, - "name": "_MaterialCountry", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "FabricationCountry", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Country", - "targetTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "fieldControlType", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialCountry", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialCategory", - "isCollection": false, - "name": "_MaterialCategory", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "BrandCategory", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Category", - "targetTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "Path": "fieldControlType", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Version 1", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialCategory", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialRatings", - "isCollection": true, - "name": "_MaterialRatings", - "partner": "materialdetail", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", - "maxLength": 9, - "name": "MaterialGroup", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", - "maxLength": 20, - "name": "MaterialGroup_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", - "maxLength": 9, - "name": "MaterialGroup", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "MaterialGroup", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/Rating", - "name": "Rating", - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/Title", - "maxLength": 100, - "name": "Title", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/materialdetail_ID", - "name": "materialdetail_ID", - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/material_Material", - "maxLength": 18, - "name": "material_Material", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "name": "MaterialRatings", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/_Rating", - "isCollection": false, - "name": "_Rating", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "Rating", - "sourceTypeName": "MaterialRatings", - "targetProperty": "Rating", - "targetTypeName": "com.c_salesordermanage_sd.Rating", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Location 2", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Rating", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/materialdetail", - "isCollection": false, - "name": "materialdetail", - "partner": "_MaterialRatings", - "referentialConstraint": Array [ Object { - "sourceProperty": "materialdetail_ID", - "sourceTypeName": "MaterialRatings", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Terms of Payment", + "type": "String", + }, + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_CustomerPaymentTerms/CustomerPaymentTerms_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "CustomerPaymentTerms", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Customer Payment Terms", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "CustomerPaymentTerms", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerPaymentTerms", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerPaymentTerms_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/material", - "isCollection": false, - "name": "material", - "partner": "_MaterialRatings", - "referentialConstraint": Array [ Object { - "sourceProperty": "material_Material", - "sourceTypeName": "MaterialRatings", - "targetProperty": "Material", - "targetTypeName": "com.c_salesordermanage_sd.Material", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/_MaterialRatingsDetails", - "isCollection": true, - "name": "_MaterialRatingsDetails", - "partner": "materialrating", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/Comments", - "maxLength": 1000, - "name": "Comments", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/CREATEDAT", - "name": "CREATEDAT", - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDAT", - "name": "MODIFIEDAT", - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDBY", - "maxLength": 241, - "name": "MODIFIEDBY", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/materialrating_ID", - "name": "materialrating_ID", - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/material_Material", - "maxLength": 18, - "name": "material_Material", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "name": "MaterialRatingsDetails", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/materialrating", - "isCollection": false, - "name": "materialrating", - "partner": "_MaterialRatingsDetails", - "referentialConstraint": Array [ Object { - "sourceProperty": "materialrating_ID", - "sourceTypeName": "MaterialRatingsDetails", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Curr.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Document Currency", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "SD document currency", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/material", - "isCollection": false, - "name": "material", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "material_Material", - "sourceTypeName": "MaterialRatingsDetails", - "targetProperty": "Material", - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Model_Year", - "maxLength": 4, - "name": "Model_Year", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Warranty_Expiration", - "maxLength": 4, - "name": "Warranty_Expiration", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Model_Year", - "maxLength": 4, - "name": "Model_Year", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "MaterialYears", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", - "maxLength": 20, - "name": "Division_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "OrganizationDivision", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", - "maxLength": 1, - "name": "OverallBillingBlockStatus", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", - "maxLength": 20, - "name": "OverallBillingBlockStatus_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", - "maxLength": 1, - "name": "OverallBillingBlockStatus", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "OverallBillingBlockStatus", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "OverallDeliveryBlockStatus", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", - "maxLength": 20, - "name": "OverallDeliveryBlockStatus_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "OverallDeliveryBlockStatus", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "OverallDeliveryBlockStatus", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", - "maxLength": 1, - "name": "OverallSDProcessStatus", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", - "maxLength": 20, - "name": "OverallSDProcessStatus_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", - "maxLength": 1, - "name": "OverallSDProcessStatus", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "OverallSDProcessStatus", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating", - "name": "Rating", - "nullable": false, - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating_Text", - "maxLength": 25, - "name": "Rating_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.Rating", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating", - "name": "Rating", - "nullable": false, - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", - }, - ], - "name": "Rating", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", - "maxLength": 3, - "name": "SDDocumentReason", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", - "maxLength": 40, - "name": "SDDocumentReason_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", - "maxLength": 3, - "name": "SDDocumentReason", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SDDocumentReason", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", - "maxLength": 6, - "name": "SalesDistrict", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", - "maxLength": 20, - "name": "SalesDistrict_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", - "maxLength": 6, - "name": "SalesDistrict", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesDistrict", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", - "maxLength": 3, - "name": "SalesGroup", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", - "maxLength": 20, - "name": "SalesGroup_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", - "maxLength": 3, - "name": "SalesGroup", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesGroup", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", - "maxLength": 4, - "name": "SalesOffice", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", - "maxLength": 20, - "name": "SalesOffice_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", - "maxLength": 4, - "name": "SalesOffice", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesOffice", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", - "maxLength": 6, - "name": "SalesOrderItem", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", - "maxLength": 6, - "name": "HigherLevelItem", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", - "maxLength": 4, - "name": "SalesOrderItemCategory", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemText", - "maxLength": 40, - "name": "SalesOrderItemText", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", - "name": "fieldControlType_item", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Material", - "maxLength": 40, - "name": "Material", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PurchaseOrderByCustomer", - "maxLength": 35, - "name": "PurchaseOrderByCustomer", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", - "name": "RequestedDeliveryDate", - "type": "Edm.Date", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ConfirmedDeliveryDate", - "name": "ConfirmedDeliveryDate", - "type": "Edm.Date", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", - "name": "RequestedQuantity", - "precision": 15, - "scale": 3, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", - "maxLength": 40, - "name": "RequestedQuantityUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", - "name": "PricingDate", - "type": "Edm.Date", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/MaterialGroup", - "maxLength": 9, - "name": "MaterialGroup", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Batch", - "maxLength": 10, - "name": "Batch", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Plant", - "maxLength": 4, - "name": "Plant", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/StorageLocation", - "maxLength": 4, - "name": "StorageLocation", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingPoint", - "maxLength": 4, - "name": "ShippingPoint", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeliveryPriority", - "maxLength": 2, - "name": "DeliveryPriority", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation1", - "maxLength": 70, - "name": "IncotermsLocation1", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation2", - "maxLength": 70, - "name": "IncotermsLocation2", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ItemBillingBlockReason", - "maxLength": 2, - "name": "ItemBillingBlockReason", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TransactionCurrency", - "maxLength": 5, - "name": "TransactionCurrency", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", - "name": "NetAmount", - "precision": 15, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", - "name": "NetAmountHidden", - "precision": 15, - "scale": 10, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount_text", - "maxLength": 10, - "name": "NetAmount_text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", - "name": "TargetAmount", - "precision": 15, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeLow", - "name": "ToleranceRangeLow", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeHigh", - "name": "ToleranceRangeHigh", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeLow", - "name": "DeviationRangeLow", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeHigh", - "name": "DeviationRangeHigh", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeLow", - "name": "AcceptanceRangeLow", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeHigh", - "name": "AcceptanceRangeHigh", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Criticality", - "name": "Criticality", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms_CustomerPaymentTerms", - "maxLength": 4, - "name": "_CustomerPaymentTerms_CustomerPaymentTerms", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority_DeliveryPriority", - "maxLength": 2, - "name": "_DeliveryPriority_DeliveryPriority", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification_IncotermsClassification", - "maxLength": 3, - "name": "_IncotermsClassification_IncotermsClassification", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion_IncotermsVersion", - "maxLength": 4, - "name": "_IncotermsVersion_IncotermsVersion", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason_BillingBlockReason", - "maxLength": 2, - "name": "_ItemBillingBlockReason_BillingBlockReason", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory_SalesDocumentItemCategory", - "maxLength": 4, - "name": "_ItemCategory_SalesDocumentItemCategory", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup_MaterialGroup", - "maxLength": 9, - "name": "_MaterialGroup_MaterialGroup", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder_SalesOrderType", - "maxLength": 4, - "name": "_SalesOrder_SalesOrderType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint_ShippingPoint", - "maxLength": 4, - "name": "_ShippingPoint_ShippingPoint", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType_ShippingType", - "maxLength": 2, - "name": "_ShippingType_ShippingType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner_ID", - "name": "owner_ID", - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "name": "SalesOrderItem", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms", - "isCollection": false, - "name": "_CustomerPaymentTerms", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_CustomerPaymentTerms_CustomerPaymentTerms", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "CustomerPaymentTerms", - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Status", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_OverallSDProcessStatus/OverallSDProcessStatus_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Overall SD Process Status", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "OverallSDProcessStatus", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority", - "isCollection": false, - "name": "_DeliveryPriority", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_DeliveryPriority_DeliveryPriority", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "DeliveryPriority", - "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Last Change Date", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification", - "isCollection": false, - "name": "_IncotermsClassification", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_IncotermsClassification_IncotermsClassification", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "IncotermsClassification", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Document Date", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion", - "isCollection": false, - "name": "_IncotermsVersion", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_IncotermsVersion_IncotermsVersion", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "IncotermsVersion", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Document Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason", - "isCollection": false, - "name": "_ItemBillingBlockReason", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_ItemBillingBlockReason_BillingBlockReason", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "BillingBlockReason", - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory", - "isCollection": false, - "name": "_ItemCategory", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_ItemCategory_SalesDocumentItemCategory", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "SalesDocumentItemCategory", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_Material", - "isCollection": false, - "name": "_Material", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "Material", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "Material", - "targetTypeName": "com.c_salesordermanage_sd.Material", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialDetails", - "isCollection": true, - "name": "_MaterialDetails", - "partner": "owner", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup", - "isCollection": false, - "name": "_MaterialGroup", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_MaterialGroup_MaterialGroup", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "MaterialGroup", - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_RequestedQuantityUnit", - "isCollection": false, - "name": "_RequestedQuantityUnit", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "RequestedQuantityUnit", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "UnitOfMeasure", - "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder", - "isCollection": false, - "name": "_SalesOrder", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_SalesOrder_SalesOrderType", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "SalesOrderType", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint", - "isCollection": false, - "name": "_ShippingPoint", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ShippingPoint_ShippingPoint", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "ShippingPoint", - "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType", - "isCollection": false, - "name": "_ShippingType", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ShippingType_ShippingType", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "ShippingType", - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner", - "isCollection": false, - "name": "owner", - "partner": "_Item", - "referentialConstraint": Array [ Object { - "sourceProperty": "owner_ID", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsActionCritical", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", - "maxLength": 4, - "name": "SalesDocumentItemCategory", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", - "maxLength": 20, - "name": "SalesDocumentItemCategory_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", - "name": "ScheduleLineIsAllowed", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", - "maxLength": 4, - "name": "SalesDocumentItemCategory", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesOrderItemCategory", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", - "name": "ReturnInProcess", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", - "name": "ImageUrl", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", - "maxLength": 10, - "name": "SoldToParty", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Rating", - "name": "Rating", - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Progress", - "name": "Progress", - "precision": 4, - "scale": 1, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", - "maxLength": 2, - "name": "OrganizationDivision", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOffice", - "maxLength": 4, - "name": "SalesOffice", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesGroup", - "maxLength": 3, - "name": "SalesGroup", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesDistrict", - "maxLength": 6, - "name": "SalesDistrict", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", - "maxLength": 35, - "name": "PurchaseOrderByCustomer", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderType", - "maxLength": 4, - "name": "CustomerPurchaseOrderType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderDate", - "name": "CustomerPurchaseOrderDate", - "type": "Edm.Date", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SDDocumentReason", - "maxLength": 3, - "name": "SDDocumentReason", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", - "name": "PricingDate", - "type": "Edm.Date", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", - "maxLength": 2, - "name": "ShippingCondition", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", - "name": "CompleteDeliveryIsDefined", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", - "name": "fieldControlType", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", - "maxLength": 70, - "name": "IncotermsLocation1", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", - "maxLength": 70, - "name": "IncotermsLocation2", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HeaderBillingBlockReason", - "maxLength": 2, - "name": "HeaderBillingBlockReason", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockReason", - "maxLength": 2, - "name": "DeliveryBlockReason", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PaymentMethod", - "maxLength": 1, - "name": "PaymentMethod", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", - "name": "TotalNetAmount", - "precision": 15, - "scale": 10, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", - "maxLength": 5, - "name": "TransactionCurrency", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", - "maxLength": 1, - "name": "OverallSDProcessStatus", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/StatusCriticality", - "name": "StatusCriticality", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "OverallDeliveryBlockStatus", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallBillingBlockStatus", - "maxLength": 1, - "name": "OverallBillingBlockStatus", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", - "name": "LastChangedDateTime", - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", - "name": "SalesOrderDate", - "type": "Edm.Date", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", - "maxLength": 20, - "name": "SalesOrderTypeName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockCriticality", - "name": "DeliveryBlockCriticality", - "type": "Edm.Byte", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/BillingBlockCriticality", - "name": "BillingBlockCriticality", - "type": "Edm.Byte", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", - "maxLength": 40, - "name": "DescriptionFieldForOPACleanup", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsEnabled", - "name": "editActionIsEnabled", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsDisabled", - "name": "editActionIsDisabled", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType_CustomerPurchaseOrderType", - "maxLength": 4, - "name": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason_DeliveryBlockReason", - "maxLength": 2, - "name": "_DeliveryBlockReason_DeliveryBlockReason", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel_DistributionChannel", - "maxLength": 2, - "name": "_DistributionChannel_DistributionChannel", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason_BillingBlockReason", - "maxLength": 2, - "name": "_HeaderBillingBlockReason_BillingBlockReason", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision_Division", - "maxLength": 2, - "name": "_OrganizationDivision_Division", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus_OverallBillingBlockStatus", - "maxLength": 1, - "name": "_OverallBillingBlockStatus_OverallBillingBlockStatus", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict_SalesDistrict", - "maxLength": 6, - "name": "_SalesDistrict_SalesDistrict", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup_SalesGroup", - "maxLength": 3, - "name": "_SalesGroup_SalesGroup", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice_SalesOffice", - "maxLength": 4, - "name": "_SalesOffice_SalesOffice", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization_SalesOrganization", - "maxLength": 4, - "name": "_SalesOrganization_SalesOrganization", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason_SDDocumentReason", - "maxLength": 3, - "name": "_SDDocumentReason_SDDocumentReason", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType_ShippingType", - "maxLength": 2, - "name": "_ShippingType_ShippingType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "name": "SalesOrderManage", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPaymentTerms", - "isCollection": false, - "name": "_CustomerPaymentTerms", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "CustomerPaymentTerms", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "CustomerPaymentTerms", - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType", - "isCollection": false, - "name": "_CustomerPurchaseOrderType", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "CustomerPurchaseOrderType", - "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "type": "Null", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason", - "isCollection": false, - "name": "_DeliveryBlockReason", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_DeliveryBlockReason_DeliveryBlockReason", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "DeliveryBlockReason", - "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "editActionIsEnabled", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "editActionIsDisabled", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel", - "isCollection": false, - "name": "_DistributionChannel", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_DistributionChannel_DistributionChannel", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "DistributionChannel", - "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsActionCritical", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/isVerified", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason", - "isCollection": false, - "name": "_HeaderBillingBlockReason", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_HeaderBillingBlockReason_BillingBlockReason", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "BillingBlockReason", - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "C_NotLockedSalesOrderTypeVH", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sales Order Types", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrderType", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrderType", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrderType_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesDocumentTypeLangDepdnt", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.ParameterDefaultValue", + "value": Object { + "Path": "_it/SalesOrderType", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsClassification", - "isCollection": false, - "name": "_IncotermsClassification", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "IncotermsClassification", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "IncotermsClassification", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_SalesOrganization", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganizationCurrency", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CompanyCode", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IntercompanyBillingCustomer", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.ParameterDefaultValue", + "value": Object { + "String": "0002", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsVersion", - "isCollection": false, - "name": "_IncotermsVersion", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "IncotermsVersion", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "IncotermsVersion", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dv", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_OrganizationDivision", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "OrganizationDivision", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Division_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Item", - "isCollection": true, - "name": "_Item", - "partner": "owner", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision", - "isCollection": false, - "name": "_OrganizationDivision", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_OrganizationDivision_Division", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "Division", - "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DChl", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_DistributionChannel", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "DistributionChannel", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "DistributionChannel", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "DistributionChannel_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus", - "isCollection": false, - "name": "_OverallBillingBlockStatus", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_OverallBillingBlockStatus_OverallBillingBlockStatus", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "OverallBillingBlockStatus", - "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/_ShipToParty/isVerified", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus", - "isCollection": false, - "name": "_OverallDeliveryBlockStatus", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "OverallDeliveryBlockStatus", - "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Status", + "type": "String", + }, + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "value": Object { + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", + }, + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallSDProcessStatus_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Overall SD Process Status", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "OverallSDProcessStatus", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallSDProcessStatus", - "isCollection": false, - "name": "_OverallSDProcessStatus", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "OverallSDProcessStatus", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "OverallSDProcessStatus", - "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/_ShipToParty/isVerified", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Partner", - "isCollection": true, - "name": "_Partner", - "partner": "owner", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CreditLimitDetails", - "isCollection": false, - "name": "_CreditLimitDetails", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "SalesOrder", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesDocument", - "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SC", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "ShippingCondition", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ShippingCondition", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ShippingCondition_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict", - "isCollection": false, - "name": "_SalesDistrict", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_SalesDistrict_SalesDistrict", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesDistrict", - "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Types", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup", - "isCollection": false, - "name": "_SalesGroup", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_SalesGroup_SalesGroup", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesGroup", - "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrderType_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice", - "isCollection": false, - "name": "_SalesOffice", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_SalesOffice_SalesOffice", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOffice", - "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Document Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Sales Document Type Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrderType", - "isCollection": false, - "name": "_SalesOrderType", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "SalesOrderType", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOrderType", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "C", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Indicator", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Sales document indicator (for display in TVAK only)", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization", - "isCollection": false, - "name": "_SalesOrganization", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_SalesOrganization_SalesOrganization", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOrganization", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Req.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Billing Request", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Order type for request for billing", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason", - "isCollection": false, - "name": "_SDDocumentReason", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_SDDocumentReason_SDDocumentReason", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SDDocumentReason", - "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrganization_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingCondition", - "isCollection": false, - "name": "_ShippingCondition", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "ShippingCondition", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "ShippingCondition", - "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Condition", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingCondition", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType", - "isCollection": false, - "name": "_ShippingType", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "_ShippingType_ShippingType", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "ShippingType", - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SC", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "ShippingCondition_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShipToParty", - "isCollection": false, - "name": "_ShipToParty", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "SalesOrder", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOrder", - "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Shipping Conditions Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", }, - ], - "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SoldToParty", - "isCollection": false, - "name": "_SoldToParty", - "partner": undefined, - "referentialConstraint": Array [ Object { - "sourceProperty": "SoldToParty", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "Customer", - "targetTypeName": "com.c_salesordermanage_sd.Customer", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Customer", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", - "maxLength": 20, - "name": "SalesOrderType_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", - "maxLength": 1, - "name": "SalesOrderProcessingType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", - "maxLength": 4, - "name": "OrderTypeForBillingRequest", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesOrderType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization_Text", - "maxLength": 20, - "name": "SalesOrganization_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganizationCurrency", - "maxLength": 5, - "name": "SalesOrganizationCurrency", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/CompanyCode", - "maxLength": 4, - "name": "CompanyCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/IntercompanyBillingCustomer", - "maxLength": 10, - "name": "IntercompanyBillingCustomer", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesOrganization", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", - "maxLength": 2, - "name": "ShippingCondition", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", - "maxLength": 20, - "name": "ShippingCondition_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", - "maxLength": 2, - "name": "ShippingCondition", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "ShippingCondition", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", - "maxLength": 4, - "name": "ShippingPoint", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", - "maxLength": 30, - "name": "ShippingPoint_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", - "maxLength": 4, - "name": "ShippingPoint", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "ShippingPoint", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", - "maxLength": 20, - "name": "ShippingType_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "ShippingType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", - "maxLength": 40, - "name": "UnitOfMeasure", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", - "maxLength": 30, - "name": "UnitOfMeasure_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", - "maxLength": 6, - "name": "UnitOfMeasureDimension", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", - "maxLength": 3, - "name": "UnitOfMeasureISOCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", - "name": "UnitOfMeasureNumberOfDecimals", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", - "name": "UnitOfMeasureDspNmbrOfDcmls", - "type": "Edm.Int32", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", - "maxLength": 40, - "name": "UnitOfMeasure", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "UnitOfMeasure", - "navigationProperties": Array [], - }, - ], - "_namespace": "com.c_salesordermanage_sd", - "_parserOutput": Array [ - RawMetadataInstance { - "identification": "serviceFile", - "references": Array [ - Object { - "alias": "Analytics", - "namespace": "com.sap.vocabularies.Analytics.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Analytics.xml", - }, - Object { - "alias": "Capabilities", - "namespace": "Org.OData.Capabilities.V1", - "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.xml", - }, - Object { - "alias": "Common", - "namespace": "com.sap.vocabularies.Common.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Common.xml", - }, - Object { - "alias": "Communication", - "namespace": "com.sap.vocabularies.Communication.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Communication.xml", - }, - Object { - "alias": "Core", - "namespace": "Org.OData.Core.V1", - "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml", - }, - Object { - "alias": "Measures", - "namespace": "Org.OData.Measures.V1", - "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Measures.V1.xml", - }, - Object { - "alias": "PersonalData", - "namespace": "com.sap.vocabularies.PersonalData.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/PersonalData.xml", - }, - Object { - "alias": "UI", - "namespace": "com.sap.vocabularies.UI.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/UI.xml", - }, - ], - "schema": Object { - "actions": Array [ - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", - "isBound": true, - "isFunction": false, - "name": "ChangeOrderStatus", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.HeaderPartner", - }, - ], - "returnType": "com.c_salesordermanage_sd.HeaderPartner", - "sourceType": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "ChangeOrderStatus", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", - "isEntitySet": false, - "name": "OverallSDProcessStatus", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", - "isBound": true, - "isFunction": false, - "name": "ParentBasedAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.HeaderPartner", - }, - ], - "returnType": "com.c_salesordermanage_sd.HeaderPartner", - "sourceType": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.HeaderPartner", - "sourceType": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialDetails)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.MaterialDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatings)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.MaterialRatings", - "sourceType": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.MaterialRatingsDetails)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderItem", - "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "draftPrepare", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/SideEffectsQualifier", - "isEntitySet": false, - "name": "SideEffectsQualifier", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetailsBoundAction(com.c_salesordermanage_sd.MaterialDetails)", - "isBound": true, - "isFunction": false, - "name": "MaterialDetailsBoundAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetailsBoundAction(com.c_salesordermanage_sd.MaterialDetails)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialDetails", - }, - ], - "returnType": "com.c_salesordermanage_sd.MaterialDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)", - "isBound": true, - "isFunction": false, - "name": "MaterialCategoryFormAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/BrandCategory", - "isEntitySet": false, - "name": "BrandCategory", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.MaterialDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsBoundAction(com.c_salesordermanage_sd.MaterialRatings)", - "isBound": true, - "isFunction": false, - "name": "MaterialRatingsBoundAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsBoundAction(com.c_salesordermanage_sd.MaterialRatings)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.MaterialRatings", - }, - ], - "returnType": "com.c_salesordermanage_sd.MaterialRatings", - "sourceType": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)", - "isBound": true, - "isFunction": false, - "name": "RatingFormAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/Rating", - "isEntitySet": false, - "name": "Rating", - "type": "Edm.Decimal", - }, - ], - "returnType": "com.c_salesordermanage_sd.MaterialRatings", - "sourceType": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", - "isBound": true, - "isFunction": false, - "name": "MaterialRatingsDetailsBoundAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - ], - "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", - "isBound": true, - "isFunction": false, - "name": "RatingCommentsFormAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/Comments", - "isEntitySet": false, - "name": "Comments", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "sourceType": "com.c_salesordermanage_sd.MaterialRatingsDetails", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)", - "isBound": true, - "isFunction": false, - "name": "DummyBoundAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderItem", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderItem", - "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", - "isBound": true, - "isFunction": false, - "name": "IdentificationFormAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", - "isEntitySet": false, - "name": "RequestedQuantity", - "type": "Edm.Decimal", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderItem", - "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "OPAvailableTrueAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "OPAvailableFalseAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "OPAvailableNullAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "EnableEditAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "CreateWithSalesOrderType", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", - "isEntitySet": false, - "name": "SalesOrderType", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", - "isEntitySet": false, - "name": "SalesOrganization", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", - "isEntitySet": false, - "name": "OrganizationDivision", - "type": "Edm.String", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", - "isEntitySet": false, - "name": "DistributionChannel", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "FacetFormAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", - "isEntitySet": true, - "name": "_it", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", - "isEntitySet": false, - "name": "ShippingCondition", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "draftActivate", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", - "isBound": true, - "isFunction": false, - "name": "draftEdit", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/in", - "isEntitySet": true, - "name": "in", - "type": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/PreserveChanges", - "isEntitySet": false, - "name": "PreserveChanges", - "type": "Edm.Boolean", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "ReturnInProcess()", - "isBound": false, - "isFunction": false, - "name": "ReturnInProcess", - "parameters": Array [], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "", - }, - Object { - "_type": "Action", - "fullyQualifiedName": "UnboundAction()", - "isBound": false, - "isFunction": false, - "name": "UnboundAction", - "parameters": Array [ - Object { - "_type": "ActionParameter", - "fullyQualifiedName": "UnboundAction()/MessageText", - "isEntitySet": false, - "name": "MessageText", - "type": "Edm.String", - }, - ], - "returnType": "com.c_salesordermanage_sd.SalesOrderManage", - "sourceType": "", - }, - ], - "annotations": Object { - "serviceFile": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Value Help for Billing Block Reason", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.BillingBlockReason", + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Point", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingPoint", }, Object { "annotations": Array [ @@ -117972,7 +107158,7 @@ MergedRawMetadata { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Block", + "String": "ShPt", "type": "String", }, }, @@ -117988,7 +107174,15 @@ MergedRawMetadata { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Billing Block", + "String": "Shipping Point", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Shipping Point / Receiving Point", "type": "String", }, }, @@ -117996,15 +107190,23 @@ MergedRawMetadata { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Path": "BillingBlockReason_Text", + "Path": "ShippingPoint_Text", "type": "Path", }, }, ], - "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", }, Object { "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, Object { "qualifier": undefined, "term": "Org.OData.Core.V1.Immutable", @@ -118014,7 +107216,7 @@ MergedRawMetadata { }, }, ], - "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", + "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", }, Object { "annotations": Array [ @@ -118022,12 +107224,12 @@ MergedRawMetadata { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Materials By Sales Org and Distr Channel", + "String": "Shipping Type", "type": "String", }, }, ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + "target": "com.c_salesordermanage_sd.ShippingType", }, Object { "annotations": Array [ @@ -118035,7 +107237,7 @@ MergedRawMetadata { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "SOrg.", + "String": "ST", "type": "String", }, }, @@ -118051,57 +107253,91 @@ MergedRawMetadata { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Sales Organization", + "String": "Shipping Type", "type": "String", }, }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "ShippingType_Text", + "type": "Path", + }, + }, ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + "target": "com.c_salesordermanage_sd.ShippingType/ShippingType", }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "DChl", + "String": "Description", "type": "String", }, }, Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Shipping Type Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Immutable", "value": Object { "Bool": true, "type": "Bool", }, }, + ], + "target": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", + }, + Object { + "annotations": Array [ Object { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Distribution Channel", + "String": "Message", "type": "String", }, }, ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + "target": "com.c_salesordermanage_sd.UnboundAction()/MessageText", }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Bool": true, - "type": "Bool", + "String": "Unit of Measure", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "MU", + "type": "String", }, }, Object { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Material", + "String": "Internal UoM", "type": "String", }, }, @@ -118109,7 +107345,7 @@ MergedRawMetadata { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "String": "Material Number", + "String": "Unit of Measurement", "type": "String", }, }, @@ -118117,68 +107353,63 @@ MergedRawMetadata { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Text", "value": Object { - "Path": "MaterialName", + "Path": "UnitOfMeasure_Text", "type": "Path", }, }, ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Material Description", + "String": "Measurement unit text", "type": "String", }, }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", - }, - Object { - "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "RQ Unit", + "String": "UoM Text", "type": "String", }, }, Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "String": "Sales Unit", + "String": "Unit of Measurement Text (Maximum 30 Characters)", "type": "String", }, }, Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "term": "Org.OData.Core.V1.Immutable", "value": Object { - "String": "Requested Quantity Unit", - "type": "String", + "Bool": true, + "type": "Bool", }, }, ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Base Unit of Measure", + "String": "Dimen.", "type": "String", }, }, Object { "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { "Bool": true, "type": "Bool", @@ -118186,28 +107417,36 @@ MergedRawMetadata { }, Object { "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Bool": true, - "type": "Bool", + "String": "Dimension", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Dimension Key", + "type": "String", }, }, ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Sales Unit", + "String": "ISO", "type": "String", }, }, Object { "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", "value": Object { "Bool": true, "type": "Bool", @@ -118215,24059 +107454,35219 @@ MergedRawMetadata { }, Object { "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "Bool": true, - "type": "Bool", + "String": "ISO Code", + "type": "String", }, }, - ], - "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", - }, - Object { - "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "String": "Sales Order Types", + "String": "ISO Code for Unit of Measurement", "type": "String", }, }, ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "Bool": true, - "type": "Bool", + "String": "DeR", + "type": "String", }, }, Object { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Sales Order Type", + "String": "Decimal Rounding", "type": "String", }, }, Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "Path": "SalesOrderType_Text", - "type": "Path", + "String": "Number of Decimal Places for Rounding", + "type": "String", }, }, ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.Common.v1.Heading", "value": Object { - "String": "Description", + "String": "Dec", "type": "String", }, }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, Object { "qualifier": undefined, "term": "com.sap.vocabularies.Common.v1.Label", "value": Object { - "String": "Language Key", + "String": "Decimal Places", "type": "String", }, }, Object { "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.Common.v1.QuickInfo", "value": Object { - "String": "Material", + "String": "Number of Decimal Places for Number Display", "type": "String", }, }, ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "AlternativeUnit", - "type": "String", + ], + }, + "associationSets": Array [], + "associations": Array [], + "complexTypes": Array [], + "entityContainer": Object { + "_type": "EntityContainer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer", + "name": "EntityContainer", + }, + "entitySets": Array [ + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BusinessPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BusinessPartner", + "name": "BusinessPartner", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_MaterialBySlsOrgDistrChnl", + "name": "C_MaterialBySlsOrgDistrChnl", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_NotLockedSalesOrderTypeVH", + "name": "C_NotLockedSalesOrderTypeVH", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_ProductUnitsOfMeasureVH", + "name": "C_ProductUnitsOfMeasureVH", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "AlternativeUnit_Text", - "type": "Path", + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "UoM Text", - "type": "String", + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Numerator", - "type": "String", + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Denominator", - "type": "String", + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Bullet Chart", - "type": "String", + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": "CreditLimitChart", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Bullet", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Credit Exposure", - "type": "String", - }, + "_Item": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#CustomerCreditExposureAmount", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Title", - "value": Object { - "String": "Credit Limit Consumption", - "type": "String", - }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "HarveyBallCriticalityPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Pie", - "type": "EnumMember", - }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Description", - "value": Object { - "String": "Testing HarveyBall MicroChart", - "type": "String", - }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#HarveyBallValuePath", - "type": "AnnotationPath", + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Credit Limit HarveyBall MicroChart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "RadialCriticalityPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Donut", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Radial MicroChart", - "type": "String", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#RadialValuePath", - "type": "AnnotationPath", + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, + "material": [Circular], + "owner": [Circular], }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmount", - "type": "PropertyPath", + }, }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Credit Limit Radial MicroChart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "RadialCriticalityPathHidden", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Donut", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Radial MicroChart Hidden", - "type": "String", + }, }, }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "CustomerCreditExposureAmountHidden", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#RadialValuePathHidden", - "type": "AnnotationPath", + "_MaterialDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "CustomerCreditExposureAmountHidden", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Credit Limit Radial MicroChart Hidden", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "CustomerCreditExposureAmount", - "record": Object { - "propertyValues": Array [ - Object { - "name": "CriticalityCalculation", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "AcceptanceRangeHighValue", - "value": Object { - "Path": "AcceptanceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "AcceptanceRangeLowValue", - "value": Object { - "Path": "AcceptanceRangeLow", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeHighValue", - "value": Object { - "Path": "DeviationRangeHigh", - "type": "Path", + "materialrating": [Circular], }, }, - Object { - "name": "DeviationRangeLowValue", - "value": Object { - "Path": "DeviationRangeLow", - "type": "Path", - }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "ImprovementDirection", - "value": Object { - "EnumMember": "UI.ImprovementDirectionType/Maximize", - "type": "EnumMember", + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], }, }, - Object { - "name": "ToleranceRangeHighValue", - "value": Object { - "Path": "ToleranceRangeHigh", - "type": "Path", - }, + "materialdetail": [Circular], + }, + }, + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "ToleranceRangeLowValue", - "value": Object { - "Path": "ToleranceRangeLow", - "type": "Path", + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], }, }, - ], - "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", + }, }, - "type": "Record", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Bullet Micro Chart", - "type": "String", - }, - }, - Object { - "name": "ForecastValue", - "value": Object { - "Path": "CustomerCreditForecast", - "type": "Path", + "owner": [Circular], }, }, - Object { - "name": "MaximumValue", - "value": Object { - "Decimal": 7000, - "type": "Decimal", - }, + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "MinimumValue", - "value": Object { - "Decimal": 200, - "type": "Decimal", - }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "TargetValue", - "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", - }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Title", - "value": Object { - "String": "Exposure Amount", - "type": "String", - }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Value", - "value": Object { - "Path": "CustomerCreditExposureAmount", - "type": "Path", - }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "owner": [Circular], + }, }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "HarveyBallValuePath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "CustomerIsAboveThreshold", - "type": "Path", - }, - }, - Object { - "name": "MaximumValue", - "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "CustomerCreditExposureAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "RadialValuePath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "CustomerIsAboveThreshold", - "type": "Path", - }, - }, - Object { - "name": "TargetValue", - "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "CustomerCreditExposureAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "RadialValuePathHidden", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "CustomerIsAboveThreshold", - "type": "Path", - }, - }, - Object { - "name": "TargetValue", - "value": Object { - "Path": "CustomerCreditLimitAmount", - "type": "Path", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "CustomerCreditExposureAmountHidden", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", + "_Partner": [Circular], + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, - ], - "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sold-to Party", - "type": "String", + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.I_DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_DistributionChannel", + "name": "I_DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.I_OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_OrganizationDivision", + "name": "I_OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.I_SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_SalesOrganization", + "name": "I_SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "email", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "type", - "value": Object { - "EnumMember": "Communication.ContactInformationType/work", - "type": "EnumMember", - }, - }, - Object { - "name": "address", - "value": Object { - "Path": "EmailAddress", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", - }, - ], - "type": "Collection", - }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "fn", - "value": Object { - "Path": "CustomerName", - "type": "Path", - }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "tel", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "type", - "value": Object { - "EnumMember": "Communication.PhoneType/fax", - "type": "EnumMember", - }, - }, - Object { - "name": "uri", - "value": Object { - "Path": "InternationalPhoneNumber", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.Communication.v1.PhoneNumberType", - }, - ], - "type": "Collection", - }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - ], - "type": "com.sap.vocabularies.Communication.v1.ContactType", - }, - "term": "com.sap.vocabularies.Communication.v1.Contact", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Header", - "type": "String", + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "ID", - "value": Object { - "String": "HeaderInfo", - "type": "String", + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ID", - "value": Object { - "String": "GeneralInfo", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "General Information", - "type": "String", - }, - }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Adress", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "Adress", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Contact", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "Partner", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#Contact", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", - }, - ], - "type": "Collection", + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": "SoldToQuickView", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PostalCode", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CityName", - "type": "Path", - }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": [Circular], + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Country", - "type": "Path", + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Description", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CustomerName", - "type": "Path", - }, }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, - }, - Object { - "name": "Title", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Customer", - "type": "Path", - }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, }, - "type": "Record", - }, - }, - Object { - "name": "TypeName", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "name": "TypeNamePlural", - "value": Object { - "String": "Customers", - "type": "String", }, }, - ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + }, }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Customer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CustomerName", - "type": "Path", + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, + "_MaterialRatings": [Circular], }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "materialrating": [Circular], }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationBPName1", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationBPName2", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "BusinessPartnerImageURL", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PostalCode", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CityName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Country", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "InternationalPhoneNumber", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "EmailAddress", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Customer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Address", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@Communication.Contact", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Address", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.QuickViewFacets", - }, - Object { - "collection": Array [ - Object { - "PropertyPath": "CustomerName", - "type": "PropertyPath", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.SelectionFields", - }, - ], - "target": "com.c_salesordermanage_sd.Customer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", + "materialdetail": [Circular], }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/Customer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Customer", - "type": "String", + }, + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], + }, }, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer", - "type": "String", + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Customer Number", - "type": "String", + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CustomerName", - "type": "Path", + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/Customer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Customer", - "type": "String", + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Name", - "type": "String", + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Name of Customer", - "type": "String", + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Customer", - "type": "String", - }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Customer", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "CustomerName", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "CityName", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CityName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Country", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "EmailAddress", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "EmailAddress", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], }, - ], - "type": "Collection", + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], }, }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.Customer/CustomerName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/Delivered", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Name 1", - "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Name", - "type": "String", + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Name 1", - "type": "String", + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Name 2", - "type": "String", + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], + }, + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, }, }, - ], - "target": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Post. Code", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Postal Code", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "City Postal Code", - "type": "String", + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, }, + "materialrating": [Circular], }, - ], - "target": "com.c_salesordermanage_sd.Customer/PostalCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "City", - "type": "String", + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, + "_MaterialRatings": [Circular], }, - ], - "target": "com.c_salesordermanage_sd.Customer/CityName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Ctr", - "type": "String", + }, + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Key", - "type": "String", + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Telephone Number", - "type": "String", + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Complete Number: Dialling Code+Number+Extension", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Email Address", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Customer/EmailAddress", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer Payment Terms", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPaymentTerms", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "PayT", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Payment Terms", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Terms of Payment Key", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CustomerPaymentTerms_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Description of terms of payment", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer Purchase Order Type", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "POtyp", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Purchase Order Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Customer Purchase Order Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "CustomerPurchaseOrderType_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Block Reason", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DB", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Block", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Default Delivery Block", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DeliveryBlockReason_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Delivery Block Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Block Desc.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HiddenFilter", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delv. Due List Block", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Delivery Due List Block", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Priority", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryPriority", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DPrio", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Priority", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DeliveryPriority_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DistributionChannel_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Manage Sales Order Header Partner", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "email", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "type", - "value": Object { - "EnumMember": "Communication.ContactInformationType/work", - "type": "EnumMember", - }, - }, - Object { - "name": "address", - "value": Object { - "Path": "BusinessPartner", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", - }, - ], - "type": "Collection", - }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "fn", - "value": Object { - "Path": "FullName", - "type": "Path", - }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, }, - ], - "type": "com.sap.vocabularies.Communication.v1.ContactType", - }, - "term": "com.sap.vocabularies.Communication.v1.Contact", - }, - Object { - "qualifier": "Progress2", - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetValue", - "value": Object { - "Int": 100, - "type": "Int", - }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Title", - "value": Object { - "String": "Progress", - "type": "String", - }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Value", - "value": Object { - "Path": "Progress", - "type": "Path", - }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Progress", - "type": "EnumMember", - }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "Rating2", - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetValue", - "value": Object { - "Int": 5, - "type": "Int", + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], }, }, - Object { - "name": "Title", - "value": Object { - "String": "Rating", - "type": "String", - }, + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Value", - "value": Object { - "Path": "Rating", - "type": "Path", - }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Rating", - "type": "EnumMember", - }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "multipleActionFields", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PartnerFunction", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating2", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Status (Parent)", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ParentBasedAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - ], - "type": "Collection", - }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Dummy Action", - "type": "String", + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ChangeOrderStatus", - "type": "String", + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#multipleActionFields", - "type": "AnnotationPath", + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Partner function", - "type": "String", + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@Communication.Contact", - "type": "AnnotationPath", + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Supplier", - "type": "String", + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "BusinessPartner", - "type": "Path", + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "FullName", - "type": "Path", + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], + }, + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + }, }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "isVerified", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Partner UUID", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/ID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Partner function", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "ID", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Progress", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/Progress", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Address", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/AddressID", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Full Name", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/FullName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Telephone", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Postal Code", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Key", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsActionCritical", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/isVerified", - "type": "Path", }, }, - ], - "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/owner/isVerified", - "type": "Path", + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", - }, - Object { - "annotations": Array [ - Object { - "qualifier": "AddressData", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": [Circular], + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": [Circular], + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Ship To Party", - "type": "String", + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "BusinessPartner", - "type": "Path", + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "StreetName", - "type": "Path", + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "FLP", - "type": "String", + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Url", - "value": Object { - "String": "http://shell.example", - "type": "String", + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "name": "Value", - "value": Object { - "String": "Shell Home", - "type": "String", + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldWithUrl", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "HouseNumber", - "type": "Path", + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PostalCode", - "type": "Path", + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], + }, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CityName", - "type": "Path", + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Country", - "type": "Path", + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + }, }, - ], - "type": "Collection", + }, }, }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Customer Number", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", + }, }, }, - Object { - "qualifier": "customer", - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "Customer", - "type": "String", + }, + "materialrating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": [Circular], + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "SoldToParty", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "BusinessPartner", - "type": "PropertyPath", - }, - }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", - }, - ], - "qualifier": "customer", - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, + "_MaterialRatings": [Circular], }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_ShipToPartyVH/CustomerName", - "type": "Path", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "Customer", - "type": "String", - }, + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, }, - Object { - "name": "Label", - "value": Object { - "String": "Ship-to Party", - "type": "String", + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], }, }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "BusinessPartner", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName1", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName2", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "BusinessPartnerImageURL", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "PostalCode", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CityName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "InternationalPhoneNumber", - "type": "String", - }, + }, + "_MaterialDetails": [Circular], + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "EmailAddress", - "type": "String", + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, }, - ], - "type": "Collection", + }, }, }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Postal Code", - "type": "String", + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "owner": [Circular], + }, + }, + }, }, }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + }, + "_MaterialDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "City", - "type": "String", + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialdetail": [Circular], + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Is Hidden", - "type": "String", + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Key", - "type": "String", + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], + }, + }, + }, }, + "owner": [Circular], }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + }, + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Street", - "type": "String", + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "House Number", - "type": "String", + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.I_DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextOnly", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "DistributionChannel_Text", - "type": "Path", + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Organization Division", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dv", - "type": "String", + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division Description", - "type": "String", + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextLast", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrganization_Text", - "type": "Path", + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.I_OrganizationDivision/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextLast", - "type": "EnumMember", + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrganization_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization Description", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization Currency", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Company Code", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Intercompany Billing Customer", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Classification", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "IncoT", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Incoterms (Part 1)", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "IncotermsClassification_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Cty", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Location Mandatory", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Location is mandatory", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Version", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsVersion", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "IncoV", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms version", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "IncotermsVersion_Text", - "type": "Path", }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, - ], - "target": "com.c_salesordermanage_sd.Material", + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Material_Text", - "type": "Path", + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.Material/Material", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Is Hidden", - "type": "String", + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.Material/isHidden", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Description", - "type": "String", + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.Material/Material_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material category", - "type": "String", + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Bool": true, - "type": "Bool", + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "owner": [Circular], + }, + }, }, }, - ], - "type": "Org.OData.Capabilities.V1.DeleteRestrictionsType", + }, }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", + "_MaterialDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", + "name": "MaterialDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", + "name": "MaterialCategory", + "navigationPropertyBinding": Object {}, + }, + "_MaterialCountry": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", + "name": "MaterialCountry", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": [Circular], + }, + }, + "materialdetail": [Circular], }, }, - ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Updatable", - "value": Object { - "Bool": true, - "type": "Bool", + "_ModelYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "_WarrantyYear": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", + "name": "MaterialYears", + "navigationPropertyBinding": Object {}, + }, + "material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_MaterialRatings": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", + "name": "MaterialRatings", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_MaterialRatingsDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "name": "MaterialRatingsDetails", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "material": [Circular], + "materialrating": [Circular], + }, + }, + "_Rating": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Rating", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", + "name": "Rating", + "navigationPropertyBinding": Object {}, + }, + "material": [Circular], + "materialdetail": [Circular], + }, + }, }, }, - ], - "type": "Org.OData.Capabilities.V1.UpdateRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.UpdateRestrictions", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Category", - "type": "String", + "owner": [Circular], + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategory/Category", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Category Code", - "type": "String", + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategory/Category_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material country", - "type": "String", + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCountry", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Country Code", - "type": "String", + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, }, + "owner": [Circular], }, - ], - "target": "com.c_salesordermanage_sd.MaterialCountry/Country", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Fabrication Country", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCountry/Country_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Details", - "type": "String", - }, - }, - Object { - "qualifier": "MaterialDetailsModelYearChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ModelYear", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "WarrantyYear", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Information", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.Identification", - "type": "AnnotationPath", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "MaterialDetailsFacet", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Reviews", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "MaterialRatingsFacet", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_MaterialRatings/@UI.LineItem", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Description", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "material/Material_Text", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, - }, - Object { - "name": "Title", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "material/Material", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, - }, - Object { - "name": "TypeName", - "value": Object { - "String": "Material Details", - "type": "String", - }, - }, - Object { - "name": "TypeNamePlural", - "value": Object { - "String": "Material Details", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", - }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Material Category", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.MaterialCategoryFormAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ModelYear", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "WarrantyYear", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "BrandCategory", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "FabricationCountry", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ModelYear", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "WarrantyYear", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "BrandCategory", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "FabricationCountry", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Details Bound Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.MaterialDetailsBoundAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Model Year", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "MaterialYears", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Model Year", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "ModelYear", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Model_Year", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Warranty_Expiration", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/ModelYear", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.Core", - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Warranty Expiration", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_WarrantyYear/Warranty_Expiration", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/WarrantyYear", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Category", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_MaterialCategory/Category_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "MaterialCategory", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Category for the Material", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "BrandCategory", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Category", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Category_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/BrandCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Fabrication Country", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_MaterialCountry/Country_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "MaterialCountry", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Fabrication Country for the Material", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "FabricationCountry", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/FabricationCountry", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/HasActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, + }, + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], }, - ], - "target": "com.c_salesordermanage_sd.MaterialDetails/HasDraftEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "BrandCategory", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "BrandCategory", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)", + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Category", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_MaterialCategory/Category_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "MaterialCategory", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Category for the Material", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "BrandCategory", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Category", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + ], + "entityTypes": Array [ + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + "maxLength": 2, + "name": "BillingBlockReason", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", + "maxLength": 20, + "name": "BillingBlockReason_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + "maxLength": 2, + "name": "BillingBlockReason", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "BillingBlockReason", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", + "maxLength": 2, + "name": "PartnerFunction", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/BusinessPartner", + "maxLength": 10, + "name": "BusinessPartner", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/FullName", + "maxLength": 80, + "name": "FullName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PhoneNumber", + "maxLength": 30, + "name": "PhoneNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/MobilePhoneNumber", + "maxLength": 30, + "name": "MobilePhoneNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/EmailAddress", + "maxLength": 241, + "name": "EmailAddress", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", + "maxLength": 2, + "name": "PartnerFunction", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "BusinessPartner", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + "maxLength": 40, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", + "maxLength": 40, + "name": "MaterialName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", + "maxLength": 40, + "name": "RequestedQuantityUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", + "maxLength": 40, + "name": "MaterialBaseUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", + "maxLength": 40, + "name": "SalesMeasureUnit", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + "maxLength": 40, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "C_MaterialBySlsOrgDistrChnl", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", + "maxLength": 20, + "name": "SalesOrderType_Text", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", + "maxLength": 4, + "name": "SalesDocumentTypeLangDepdnt", + "nullable": false, + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "C_NotLockedSalesOrderTypeVH", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + "maxLength": 18, + "name": "Product", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + "maxLength": 40, + "name": "AlternativeUnit", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", + "maxLength": 30, + "name": "AlternativeUnit_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", + "name": "QuantityNumerator", + "precision": 5, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", + "name": "QuantityDenominator", + "precision": 5, + "scale": 0, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + "maxLength": 18, + "name": "Product", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + "maxLength": 40, + "name": "AlternativeUnit", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "C_ProductUnitsOfMeasureVH", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", + "name": "CustomerCreditExposureAmount", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", + "name": "CustomerCreditExposureAmountHidden", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", + "name": "CustomerCreditForecast", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount_text", + "maxLength": 15, + "name": "CustomerCreditExposureAmount_text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", + "name": "CustomerCreditLimitAmount", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/MaximumCreditValue", + "name": "MaximumCreditValue", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount_text", + "maxLength": 15, + "name": "CustomerCreditLimitAmount_text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/TransactionCurrency", + "maxLength": 5, + "name": "TransactionCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerIsAboveThreshold", + "name": "CustomerIsAboveThreshold", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeLow", + "name": "ToleranceRangeLow", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeHigh", + "name": "ToleranceRangeHigh", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeLow", + "name": "DeviationRangeLow", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeHigh", + "name": "DeviationRangeHigh", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeLow", + "name": "AcceptanceRangeLow", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeHigh", + "name": "AcceptanceRangeHigh", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "CreditLimitDetails", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", + "maxLength": 10, + "name": "Customer", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CustomerName", + "maxLength": 80, + "name": "CustomerName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", + "maxLength": 35, + "name": "OrganizationBPName1", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", + "maxLength": 35, + "name": "OrganizationBPName2", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", + "name": "BusinessPartnerImageURL", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CityName", + "maxLength": 40, + "name": "CityName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", + "maxLength": 30, + "name": "InternationalPhoneNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/EmailAddress", + "maxLength": 241, + "name": "EmailAddress", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", + "maxLength": 10, + "name": "Customer", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Customer", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", + "maxLength": 30, + "name": "CustomerPaymentTerms_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "CustomerPaymentTerms", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", + "maxLength": 4, + "name": "CustomerPurchaseOrderType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", + "maxLength": 20, + "name": "CustomerPurchaseOrderType_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", + "maxLength": 4, + "name": "CustomerPurchaseOrderType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "CustomerPurchaseOrderType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", + "maxLength": 2, + "name": "DeliveryBlockReason", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", + "maxLength": 20, + "name": "DeliveryBlockReason_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", + "name": "DeliveryDueListBlock", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", + "maxLength": 2, + "name": "DeliveryBlockReason", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "DeliveryBlockReason", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", + "maxLength": 2, + "name": "DeliveryPriority", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", + "maxLength": 20, + "name": "DeliveryPriority_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", + "maxLength": 2, + "name": "DeliveryPriority", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "DeliveryPriority", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", + "maxLength": 20, + "name": "DistributionChannel_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "DistributionChannel", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", + "name": "DraftUUID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreationDateTime", + "name": "CreationDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreatedByUser", + "maxLength": 256, + "name": "CreatedByUser", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsCreatedByMe", + "name": "DraftIsCreatedByMe", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangeDateTime", + "name": "LastChangeDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangedByUser", + "maxLength": 256, + "name": "LastChangedByUser", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/InProcessByUser", + "maxLength": 256, + "name": "InProcessByUser", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsProcessedByMe", + "name": "DraftIsProcessedByMe", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", + "name": "DraftUUID", + "nullable": false, + "type": "Edm.Guid", + }, + ], + "name": "DraftAdministrativeData", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", + "maxLength": 2, + "name": "PartnerFunction", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", + "maxLength": 10, + "name": "BusinessPartner", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Rating", + "name": "Rating", + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Progress", + "name": "Progress", + "precision": 4, + "scale": 1, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SemanticObject", + "maxLength": 15, + "name": "SemanticObject", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/AddressID", + "maxLength": 10, + "name": "AddressID", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/FullName", + "maxLength": 80, + "name": "FullName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", + "maxLength": 30, + "name": "PhoneNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/CityName", + "maxLength": 40, + "name": "CityName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner_ID", + "name": "owner_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "HeaderPartner", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner", + "isCollection": false, + "name": "owner", + "partner": "_Partner", + "referentialConstraint": Array [ + Object { + "sourceProperty": "owner_ID", + "sourceTypeName": "HeaderPartner", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", + "maxLength": 10, + "name": "BusinessPartner", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", + "maxLength": 40, + "name": "CityName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", + "name": "isHidden", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", + "maxLength": 60, + "name": "StreetName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", + "maxLength": 10, + "name": "HouseNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "HeaderShipToParty", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/_ShipToPartyVH", + "isCollection": false, + "name": "_ShipToPartyVH", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "BusinessPartner", + "sourceTypeName": "HeaderShipToParty", + "targetProperty": "Customer", + "targetTypeName": "com.c_salesordermanage_sd.Customer", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Customer", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", + "maxLength": 20, + "name": "DistributionChannel_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_DistributionChannel", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", + "maxLength": 20, + "name": "Division_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_OrganizationDivision", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", + "maxLength": 20, + "name": "SalesOrganization_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", + "maxLength": 5, + "name": "SalesOrganizationCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", + "maxLength": 4, + "name": "CompanyCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", + "maxLength": 10, + "name": "IntercompanyBillingCustomer", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_SalesOrganization", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", + "maxLength": 30, + "name": "IncotermsClassification_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", + "name": "LocationIsMandatory", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "IncotermsClassification", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", + "maxLength": 30, + "name": "IncotermsVersion_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "IncotermsVersion", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", + "maxLength": 18, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/isHidden", + "name": "isHidden", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material_Text", + "maxLength": 40, + "name": "Material_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup_MaterialGroup", + "maxLength": 9, + "name": "_MaterialGroup_MaterialGroup", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.Material", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", + "maxLength": 18, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Material", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup", + "isCollection": false, + "name": "_MaterialGroup", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_MaterialGroup_MaterialGroup", + "sourceTypeName": "Material", + "targetProperty": "MaterialGroup", + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialRatings", + "isCollection": true, + "name": "_MaterialRatings", + "partner": "material", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category", + "maxLength": 2, + "name": "Category", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category_Text", + "maxLength": 20, + "name": "Category_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category", + "maxLength": 2, + "name": "Category", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "MaterialCategory", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country", + "maxLength": 2, + "name": "Country", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country_Text", + "maxLength": 20, + "name": "Country_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country", + "maxLength": 2, + "name": "Country", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "MaterialCountry", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ModelYear", + "maxLength": 4, + "name": "ModelYear", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/WarrantyYear", + "maxLength": 4, + "name": "WarrantyYear", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/BrandCategory", + "maxLength": 20, + "name": "BrandCategory", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/FabricationCountry", + "maxLength": 20, + "name": "FabricationCountry", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/material_Material", + "maxLength": 18, + "name": "material_Material", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/owner_ID", + "name": "owner_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_WarrantyYear_Model_Year", + "maxLength": 4, + "name": "_WarrantyYear_Model_Year", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "MaterialDetails", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/material", + "isCollection": false, + "name": "material", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "material_Material", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Material", + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/owner", + "isCollection": false, + "name": "owner", + "partner": "_MaterialDetails", + "referentialConstraint": Array [ + Object { + "sourceProperty": "owner_ID", + "sourceTypeName": "MaterialDetails", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_ModelYear", + "isCollection": false, + "name": "_ModelYear", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "ModelYear", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Model_Year", + "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_WarrantyYear", + "isCollection": false, + "name": "_WarrantyYear", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_WarrantyYear_Model_Year", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Model_Year", + "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialCountry", + "isCollection": false, + "name": "_MaterialCountry", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "FabricationCountry", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Country", + "targetTypeName": "com.c_salesordermanage_sd.MaterialCountry", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialCountry", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialCategory", + "isCollection": false, + "name": "_MaterialCategory", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "BrandCategory", + "sourceTypeName": "MaterialDetails", + "targetProperty": "Category", + "targetTypeName": "com.c_salesordermanage_sd.MaterialCategory", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialCategory", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialRatings", + "isCollection": true, + "name": "_MaterialRatings", + "partner": "materialdetail", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + "maxLength": 9, + "name": "MaterialGroup", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", + "maxLength": 20, + "name": "MaterialGroup_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + "maxLength": 9, + "name": "MaterialGroup", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "MaterialGroup", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/Rating", + "name": "Rating", + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/Title", + "maxLength": 100, + "name": "Title", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/materialdetail_ID", + "name": "materialdetail_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/material_Material", + "maxLength": 18, + "name": "material_Material", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "MaterialRatings", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/_Rating", + "isCollection": false, + "name": "_Rating", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "Rating", + "sourceTypeName": "MaterialRatings", + "targetProperty": "Rating", + "targetTypeName": "com.c_salesordermanage_sd.Rating", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Rating", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/materialdetail", + "isCollection": false, + "name": "materialdetail", + "partner": "_MaterialRatings", + "referentialConstraint": Array [ + Object { + "sourceProperty": "materialdetail_ID", + "sourceTypeName": "MaterialRatings", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/material", + "isCollection": false, + "name": "material", + "partner": "_MaterialRatings", + "referentialConstraint": Array [ + Object { + "sourceProperty": "material_Material", + "sourceTypeName": "MaterialRatings", + "targetProperty": "Material", + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/_MaterialRatingsDetails", + "isCollection": true, + "name": "_MaterialRatingsDetails", + "partner": "materialrating", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/Comments", + "maxLength": 1000, + "name": "Comments", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/CREATEDAT", + "name": "CREATEDAT", + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDAT", + "name": "MODIFIEDAT", + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDBY", + "maxLength": 241, + "name": "MODIFIEDBY", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/materialrating_ID", + "name": "materialrating_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/material_Material", + "maxLength": 18, + "name": "material_Material", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "MaterialRatingsDetails", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/materialrating", + "isCollection": false, + "name": "materialrating", + "partner": "_MaterialRatingsDetails", + "referentialConstraint": Array [ + Object { + "sourceProperty": "materialrating_ID", + "sourceTypeName": "MaterialRatingsDetails", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/material", + "isCollection": false, + "name": "material", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "material_Material", + "sourceTypeName": "MaterialRatingsDetails", + "targetProperty": "Material", + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Model_Year", + "maxLength": 4, + "name": "Model_Year", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Warranty_Expiration", + "maxLength": 4, + "name": "Warranty_Expiration", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Model_Year", + "maxLength": 4, + "name": "Model_Year", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "MaterialYears", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", + "maxLength": 20, + "name": "Division_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OrganizationDivision", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + "maxLength": 1, + "name": "OverallBillingBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", + "maxLength": 20, + "name": "OverallBillingBlockStatus_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + "maxLength": 1, + "name": "OverallBillingBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OverallBillingBlockStatus", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "OverallDeliveryBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", + "maxLength": 20, + "name": "OverallDeliveryBlockStatus_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "OverallDeliveryBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OverallDeliveryBlockStatus", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + "maxLength": 1, + "name": "OverallSDProcessStatus", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", + "maxLength": 20, + "name": "OverallSDProcessStatus_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + "maxLength": 1, + "name": "OverallSDProcessStatus", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OverallSDProcessStatus", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating", + "name": "Rating", + "nullable": false, + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating_Text", + "maxLength": 25, + "name": "Rating_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.Rating", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating", + "name": "Rating", + "nullable": false, + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + ], + "name": "Rating", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + "maxLength": 3, + "name": "SDDocumentReason", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", + "maxLength": 40, + "name": "SDDocumentReason_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + "maxLength": 3, + "name": "SDDocumentReason", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SDDocumentReason", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + "maxLength": 6, + "name": "SalesDistrict", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", + "maxLength": 20, + "name": "SalesDistrict_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + "maxLength": 6, + "name": "SalesDistrict", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesDistrict", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", + "maxLength": 3, + "name": "SalesGroup", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", + "maxLength": 20, + "name": "SalesGroup_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", + "maxLength": 3, + "name": "SalesGroup", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesGroup", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", + "maxLength": 4, + "name": "SalesOffice", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", + "maxLength": 20, + "name": "SalesOffice_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", + "maxLength": 4, + "name": "SalesOffice", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOffice", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", + "maxLength": 6, + "name": "SalesOrderItem", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", + "maxLength": 6, + "name": "HigherLevelItem", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", + "maxLength": 4, + "name": "SalesOrderItemCategory", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemText", + "maxLength": 40, + "name": "SalesOrderItemText", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", + "name": "fieldControlType_item", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Material", + "maxLength": 40, + "name": "Material", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PurchaseOrderByCustomer", + "maxLength": 35, + "name": "PurchaseOrderByCustomer", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", + "name": "RequestedDeliveryDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ConfirmedDeliveryDate", + "name": "ConfirmedDeliveryDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", + "name": "RequestedQuantity", + "precision": 15, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", + "maxLength": 40, + "name": "RequestedQuantityUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", + "name": "PricingDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/MaterialGroup", + "maxLength": 9, + "name": "MaterialGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Batch", + "maxLength": 10, + "name": "Batch", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Plant", + "maxLength": 4, + "name": "Plant", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/StorageLocation", + "maxLength": 4, + "name": "StorageLocation", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingPoint", + "maxLength": 4, + "name": "ShippingPoint", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeliveryPriority", + "maxLength": 2, + "name": "DeliveryPriority", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation1", + "maxLength": 70, + "name": "IncotermsLocation1", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation2", + "maxLength": 70, + "name": "IncotermsLocation2", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ItemBillingBlockReason", + "maxLength": 2, + "name": "ItemBillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TransactionCurrency", + "maxLength": 5, + "name": "TransactionCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", + "name": "NetAmount", + "precision": 15, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", + "name": "NetAmountHidden", + "precision": 15, + "scale": 10, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount_text", + "maxLength": 10, + "name": "NetAmount_text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", + "name": "TargetAmount", + "precision": 15, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeLow", + "name": "ToleranceRangeLow", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeHigh", + "name": "ToleranceRangeHigh", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeLow", + "name": "DeviationRangeLow", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeHigh", + "name": "DeviationRangeHigh", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeLow", + "name": "AcceptanceRangeLow", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeHigh", + "name": "AcceptanceRangeHigh", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Criticality", + "name": "Criticality", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms_CustomerPaymentTerms", + "maxLength": 4, + "name": "_CustomerPaymentTerms_CustomerPaymentTerms", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority_DeliveryPriority", + "maxLength": 2, + "name": "_DeliveryPriority_DeliveryPriority", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification_IncotermsClassification", + "maxLength": 3, + "name": "_IncotermsClassification_IncotermsClassification", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion_IncotermsVersion", + "maxLength": 4, + "name": "_IncotermsVersion_IncotermsVersion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason_BillingBlockReason", + "maxLength": 2, + "name": "_ItemBillingBlockReason_BillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory_SalesDocumentItemCategory", + "maxLength": 4, + "name": "_ItemCategory_SalesDocumentItemCategory", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup_MaterialGroup", + "maxLength": 9, + "name": "_MaterialGroup_MaterialGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder_SalesOrderType", + "maxLength": 4, + "name": "_SalesOrder_SalesOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint_ShippingPoint", + "maxLength": 4, + "name": "_ShippingPoint_ShippingPoint", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType_ShippingType", + "maxLength": 2, + "name": "_ShippingType_ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner_ID", + "name": "owner_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "SalesOrderItem", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms", + "isCollection": false, + "name": "_CustomerPaymentTerms", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_CustomerPaymentTerms_CustomerPaymentTerms", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "CustomerPaymentTerms", + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority", + "isCollection": false, + "name": "_DeliveryPriority", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_DeliveryPriority_DeliveryPriority", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "DeliveryPriority", + "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification", + "isCollection": false, + "name": "_IncotermsClassification", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_IncotermsClassification_IncotermsClassification", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "IncotermsClassification", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion", + "isCollection": false, + "name": "_IncotermsVersion", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_IncotermsVersion_IncotermsVersion", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "IncotermsVersion", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason", + "isCollection": false, + "name": "_ItemBillingBlockReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ItemBillingBlockReason_BillingBlockReason", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "BillingBlockReason", + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory", + "isCollection": false, + "name": "_ItemCategory", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ItemCategory_SalesDocumentItemCategory", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "SalesDocumentItemCategory", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_Material", + "isCollection": false, + "name": "_Material", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "Material", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "Material", + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialDetails", + "isCollection": true, + "name": "_MaterialDetails", + "partner": "owner", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup", + "isCollection": false, + "name": "_MaterialGroup", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_MaterialGroup_MaterialGroup", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "MaterialGroup", + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_RequestedQuantityUnit", + "isCollection": false, + "name": "_RequestedQuantityUnit", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "RequestedQuantityUnit", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "UnitOfMeasure", + "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder", + "isCollection": false, + "name": "_SalesOrder", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesOrder_SalesOrderType", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "SalesOrderType", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint", + "isCollection": false, + "name": "_ShippingPoint", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ShippingPoint_ShippingPoint", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "ShippingPoint", + "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType", + "isCollection": false, + "name": "_ShippingType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ShippingType_ShippingType", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "ShippingType", + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner", + "isCollection": false, + "name": "owner", + "partner": "_Item", + "referentialConstraint": Array [ + Object { + "sourceProperty": "owner_ID", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", + "maxLength": 4, + "name": "SalesDocumentItemCategory", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", + "maxLength": 20, + "name": "SalesDocumentItemCategory_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", + "name": "ScheduleLineIsAllowed", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", + "maxLength": 4, + "name": "SalesDocumentItemCategory", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOrderItemCategory", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", + "name": "ReturnInProcess", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", + "name": "ImageUrl", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", + "maxLength": 10, + "name": "SoldToParty", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Rating", + "name": "Rating", + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Progress", + "name": "Progress", + "precision": 4, + "scale": 1, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", + "maxLength": 2, + "name": "OrganizationDivision", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOffice", + "maxLength": 4, + "name": "SalesOffice", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesGroup", + "maxLength": 3, + "name": "SalesGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesDistrict", + "maxLength": 6, + "name": "SalesDistrict", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", + "maxLength": 35, + "name": "PurchaseOrderByCustomer", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderType", + "maxLength": 4, + "name": "CustomerPurchaseOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderDate", + "name": "CustomerPurchaseOrderDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SDDocumentReason", + "maxLength": 3, + "name": "SDDocumentReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", + "name": "PricingDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", + "maxLength": 2, + "name": "ShippingCondition", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", + "name": "CompleteDeliveryIsDefined", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", + "name": "fieldControlType", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", + "maxLength": 70, + "name": "IncotermsLocation1", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", + "maxLength": 70, + "name": "IncotermsLocation2", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HeaderBillingBlockReason", + "maxLength": 2, + "name": "HeaderBillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockReason", + "maxLength": 2, + "name": "DeliveryBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PaymentMethod", + "maxLength": 1, + "name": "PaymentMethod", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", + "name": "TotalNetAmount", + "precision": 15, + "scale": 10, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", + "maxLength": 5, + "name": "TransactionCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", + "maxLength": 1, + "name": "OverallSDProcessStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/StatusCriticality", + "name": "StatusCriticality", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "OverallDeliveryBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallBillingBlockStatus", + "maxLength": 1, + "name": "OverallBillingBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", + "name": "LastChangedDateTime", + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", + "name": "SalesOrderDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", + "maxLength": 20, + "name": "SalesOrderTypeName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockCriticality", + "name": "DeliveryBlockCriticality", + "type": "Edm.Byte", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/BillingBlockCriticality", + "name": "BillingBlockCriticality", + "type": "Edm.Byte", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", + "maxLength": 40, + "name": "DescriptionFieldForOPACleanup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsEnabled", + "name": "editActionIsEnabled", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsDisabled", + "name": "editActionIsDisabled", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType_CustomerPurchaseOrderType", + "maxLength": 4, + "name": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason_DeliveryBlockReason", + "maxLength": 2, + "name": "_DeliveryBlockReason_DeliveryBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel_DistributionChannel", + "maxLength": 2, + "name": "_DistributionChannel_DistributionChannel", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason_BillingBlockReason", + "maxLength": 2, + "name": "_HeaderBillingBlockReason_BillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision_Division", + "maxLength": 2, + "name": "_OrganizationDivision_Division", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus_OverallBillingBlockStatus", + "maxLength": 1, + "name": "_OverallBillingBlockStatus_OverallBillingBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict_SalesDistrict", + "maxLength": 6, + "name": "_SalesDistrict_SalesDistrict", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup_SalesGroup", + "maxLength": 3, + "name": "_SalesGroup_SalesGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice_SalesOffice", + "maxLength": 4, + "name": "_SalesOffice_SalesOffice", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization_SalesOrganization", + "maxLength": 4, + "name": "_SalesOrganization_SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason_SDDocumentReason", + "maxLength": 3, + "name": "_SDDocumentReason_SDDocumentReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType_ShippingType", + "maxLength": 2, + "name": "_ShippingType_ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", + "name": "HasActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", + "name": "HasDraftEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "SalesOrderManage", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPaymentTerms", + "isCollection": false, + "name": "_CustomerPaymentTerms", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "CustomerPaymentTerms", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "CustomerPaymentTerms", + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType", + "isCollection": false, + "name": "_CustomerPurchaseOrderType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "CustomerPurchaseOrderType", + "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason", + "isCollection": false, + "name": "_DeliveryBlockReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_DeliveryBlockReason_DeliveryBlockReason", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "DeliveryBlockReason", + "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel", + "isCollection": false, + "name": "_DistributionChannel", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_DistributionChannel_DistributionChannel", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "DistributionChannel", + "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason", + "isCollection": false, + "name": "_HeaderBillingBlockReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_HeaderBillingBlockReason_BillingBlockReason", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "BillingBlockReason", + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsClassification", + "isCollection": false, + "name": "_IncotermsClassification", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "IncotermsClassification", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "IncotermsClassification", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsVersion", + "isCollection": false, + "name": "_IncotermsVersion", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "IncotermsVersion", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "IncotermsVersion", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Item", + "isCollection": true, + "name": "_Item", + "partner": "owner", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision", + "isCollection": false, + "name": "_OrganizationDivision", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_OrganizationDivision_Division", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "Division", + "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus", + "isCollection": false, + "name": "_OverallBillingBlockStatus", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_OverallBillingBlockStatus_OverallBillingBlockStatus", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "OverallBillingBlockStatus", + "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus", + "isCollection": false, + "name": "_OverallDeliveryBlockStatus", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "OverallDeliveryBlockStatus", + "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallSDProcessStatus", + "isCollection": false, + "name": "_OverallSDProcessStatus", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "OverallSDProcessStatus", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "OverallSDProcessStatus", + "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Partner", + "isCollection": true, + "name": "_Partner", + "partner": "owner", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CreditLimitDetails", + "isCollection": false, + "name": "_CreditLimitDetails", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrder", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesDocument", + "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict", + "isCollection": false, + "name": "_SalesDistrict", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesDistrict_SalesDistrict", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesDistrict", + "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup", + "isCollection": false, + "name": "_SalesGroup", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesGroup_SalesGroup", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesGroup", + "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice", + "isCollection": false, + "name": "_SalesOffice", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesOffice_SalesOffice", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOffice", + "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrderType", + "isCollection": false, + "name": "_SalesOrderType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrderType", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOrderType", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization", + "isCollection": false, + "name": "_SalesOrganization", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesOrganization_SalesOrganization", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOrganization", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason", + "isCollection": false, + "name": "_SDDocumentReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SDDocumentReason_SDDocumentReason", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SDDocumentReason", + "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingCondition", + "isCollection": false, + "name": "_ShippingCondition", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "ShippingCondition", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "ShippingCondition", + "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType", + "isCollection": false, + "name": "_ShippingType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ShippingType_ShippingType", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "ShippingType", + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShipToParty", + "isCollection": false, + "name": "_ShipToParty", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrder", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOrder", + "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SoldToParty", + "isCollection": false, + "name": "_SoldToParty", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SoldToParty", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "Customer", + "targetTypeName": "com.c_salesordermanage_sd.Customer", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Customer", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", + "maxLength": 20, + "name": "SalesOrderType_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", + "maxLength": 1, + "name": "SalesOrderProcessingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", + "maxLength": 4, + "name": "OrderTypeForBillingRequest", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOrderType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization_Text", + "maxLength": 20, + "name": "SalesOrganization_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganizationCurrency", + "maxLength": 5, + "name": "SalesOrganizationCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/CompanyCode", + "maxLength": 4, + "name": "CompanyCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/IntercompanyBillingCustomer", + "maxLength": 10, + "name": "IntercompanyBillingCustomer", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOrganization", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", + "maxLength": 2, + "name": "ShippingCondition", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", + "maxLength": 20, + "name": "ShippingCondition_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", + "maxLength": 2, + "name": "ShippingCondition", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "ShippingCondition", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", + "maxLength": 4, + "name": "ShippingPoint", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", + "maxLength": 30, + "name": "ShippingPoint_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", + "maxLength": 4, + "name": "ShippingPoint", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "ShippingPoint", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", + "maxLength": 20, + "name": "ShippingType_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "ShippingType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", + "maxLength": 40, + "name": "UnitOfMeasure", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", + "maxLength": 30, + "name": "UnitOfMeasure_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", + "maxLength": 6, + "name": "UnitOfMeasureDimension", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", + "maxLength": 3, + "name": "UnitOfMeasureISOCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", + "name": "UnitOfMeasureNumberOfDecimals", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", + "name": "UnitOfMeasureDspNmbrOfDcmls", + "type": "Edm.Int32", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", + "maxLength": 40, + "name": "UnitOfMeasure", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "UnitOfMeasure", + "navigationProperties": Array [], + }, + ], + "namespace": "com.c_salesordermanage_sd", + "singletons": Array [], + "typeDefinitions": Array [], + }, + "version": "4.0", + }, + RawMetadataInstance { + "identification": "annoFile", + "references": Array [ + Object { + "alias": "SalesOrder", + "namespace": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001", + "uri": "/sap/opu/odata4/sap/c_salesordermanage_srv/srvd/sap/c_salesordermanage_sd/0001/$metadata", + }, + Object { + "alias": "UI", + "namespace": "com.sap.vocabularies.UI.v1", + "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_UI',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "vCard", + "namespace": "com.sap.vocabularies.Communication.v1", + "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMUNICATION',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Common", + "namespace": "com.sap.vocabularies.Common.v1", + "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMON',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Core", + "namespace": "Org.OData.Core.V1", + "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Core.V1.xml", + }, + Object { + "alias": "CQP", + "namespace": "Org.OData.Measures.V1", + "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Measures.V1.xml", + }, + Object { + "alias": "Capabilities", + "namespace": "Org.OData.Capabilities.V1", + "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Capabilities.V1.xml", + }, + ], + "schema": Object { + "actions": Array [], + "annotations": Object { + "annoFile": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "in/editActionIsEnabled", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Change Order Type", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Unbound Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/UnboundAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Return In Process", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/ReturnInProcess", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "manageInline", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "SemanticObject", + "value": Object { + "String": "Action", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "toappnavsampleParam", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "IBN with context", + "type": "String", + }, + }, + Object { + "name": "RequiresContext", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Mapping", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalProperty", + "value": Object { + "PropertyPath": "Delivered", + "type": "PropertyPath", + }, + }, + Object { + "name": "SemanticObjectProperty", + "value": Object { + "String": "Completed", + "type": "String", + }, + }, + ], + "type": undefined, + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ID", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ImageUrl", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#multipleActionFields", + "type": "AnnotationPath", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sold-To Party", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "_ShipToParty/isHidden", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderType", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OverallSDProcessStatus", + "type": "Path", + }, + }, + Object { + "name": "Criticality", + "value": Object { + "Path": "StatusCriticality", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "annotations": Array [ + Object { + "qualifier": "Messages", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": undefined, + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SAP__Messages", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "SoldToChangeSalesAreaShipTo", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DistributionChannel", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OrganizationDivision", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "TransactionCurrency", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "CustomerPaymentTerms", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "IncotermsClassification", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "IncotermsVersion", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "IncotermsLocation1", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "IncotermsLocation2", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "CompleteDeliveryIsDefined", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SetBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SetDeliveryBlockIsHidden", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": undefined, + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_CreditLimitDetails", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "ItemCreationOrDeletion", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "ItemUpdateAnyField", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "ShipToPartyChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_ShipToParty/BusinessPartner", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "SalesOrder.SalesOrderManageType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": "Messages", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": undefined, + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SAP__Messages", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "PricingDateChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "PricingDate", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "PlantChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Plant", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Plant", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "ShippingPoint", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "Route", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "StorageLocationChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "StorageLocation", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "ShippingPointChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ShippingPoint", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Route", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "RouteChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Route", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "RequestedQuantityChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedQuantity", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": undefined, + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "qualifier": "RequestedDeliveryDateChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "RequestedDeliveryDate", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ScheduleLine", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "SalesOrder.SalesOrderItemType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "term": "com.sap.vocabularies.UI.v1.DataFieldDefault", + }, + ], + "target": "SalesOrder.SalesOrderItemType/NetAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedQuantity", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "term": "com.sap.vocabularies.UI.v1.DataFieldDefault", + }, + ], + "target": "SalesOrder.SalesOrderItemType/RequestedQuantity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "HeaderBillingBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallBillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "HeaderBillingBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallBillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "DeliveryBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallDeliveryBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveDeliveryBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DeliveryBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DeliveryBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetDeliveryBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "DeliveryBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallDeliveryBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveDeliveryBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DeliveryBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DeliveryBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveDeliveryBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ItemBillingBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "_SalesOrder/OverallBillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "_SalesOrder/BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlockItem", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ItemBillingBlockReason", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "RemoveBillingBlockIsHidden", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "_SalesOrder/OverallBillingBlockStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "_SalesOrder/BillingBlockStatusCriticality", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlockItem", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Deletable", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.DeleteRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + }, + ], + }, + "associationSets": Array [], + "associations": Array [], + "complexTypes": Array [], + "entityContainer": Object { + "_type": "EntityContainer", + "fullyQualifiedName": "", + }, + "entitySets": Array [], + "entityTypes": Array [], + "namespace": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.annotations", + "singletons": Array [], + "typeDefinitions": Array [], + }, + "version": "4.0", + }, + ], + "_references": Array [ + Object { + "alias": "Analytics", + "namespace": "com.sap.vocabularies.Analytics.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Analytics.xml", + }, + Object { + "alias": "Capabilities", + "namespace": "Org.OData.Capabilities.V1", + "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.xml", + }, + Object { + "alias": "Common", + "namespace": "com.sap.vocabularies.Common.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Common.xml", + }, + Object { + "alias": "Communication", + "namespace": "com.sap.vocabularies.Communication.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Communication.xml", + }, + Object { + "alias": "Core", + "namespace": "Org.OData.Core.V1", + "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml", + }, + Object { + "alias": "Measures", + "namespace": "Org.OData.Measures.V1", + "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Measures.V1.xml", + }, + Object { + "alias": "PersonalData", + "namespace": "com.sap.vocabularies.PersonalData.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/PersonalData.xml", + }, + Object { + "alias": "UI", + "namespace": "com.sap.vocabularies.UI.v1", + "uri": "https://sap.github.io/odata-vocabularies/vocabularies/UI.xml", + }, + Object { + "alias": "SalesOrder", + "namespace": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001", + "uri": "/sap/opu/odata4/sap/c_salesordermanage_srv/srvd/sap/c_salesordermanage_sd/0001/$metadata", + }, + Object { + "alias": "UI", + "namespace": "com.sap.vocabularies.UI.v1", + "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_UI',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "vCard", + "namespace": "com.sap.vocabularies.Communication.v1", + "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMUNICATION',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Common", + "namespace": "com.sap.vocabularies.Common.v1", + "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMON',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Core", + "namespace": "Org.OData.Core.V1", + "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Core.V1.xml", + }, + Object { + "alias": "CQP", + "namespace": "Org.OData.Measures.V1", + "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Measures.V1.xml", + }, + Object { + "alias": "Capabilities", + "namespace": "Org.OData.Capabilities.V1", + "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Capabilities.V1.xml", + }, + ], + "_singletons": Array [], + "_typeDefinitions": Array [], + "identification": "mergedParserInstance", + "version": "4.0", +} +`; + +exports[`Parser can parse an edmx file 2`] = ` +RawMetadataInstance { + "identification": "serviceFile", + "references": Array [ + Object { + "alias": "Capabilities", + "namespace": "Org.OData.Capabilities.V1", + "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.xml", + }, + Object { + "alias": "Common", + "namespace": "com.sap.vocabularies.Common.v1", + "uri": "https://wiki.scn.sap.com/wiki/download/attachments/448470974/Common.xml?api=v2", + }, + Object { + "alias": "Communication", + "namespace": "com.sap.vocabularies.Communication.v1", + "uri": "https://wiki.scn.sap.com/wiki/download/attachments/448470971/Communication.xml?api=v2", + }, + Object { + "alias": "Core", + "namespace": "Org.OData.Core.V1", + "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml", + }, + Object { + "alias": "Measures", + "namespace": "Org.OData.Measures.V1", + "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Measures.V1.xml", + }, + Object { + "alias": "UI", + "namespace": "com.sap.vocabularies.UI.v1", + "uri": "https://wiki.scn.sap.com/wiki/download/attachments/448470968/UI.xml?api=v2", + }, + ], + "schema": Object { + "actions": Array [ + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", + "isBound": true, + "isFunction": false, + "name": "ChangeOrderStatus", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.HeaderPartner", + }, + ], + "returnType": "com.c_salesordermanage_sd.HeaderPartner", + "sourceType": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "ChangeOrderStatus", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", + "isCollection": false, + "isEntitySet": false, + "name": "OverallSDProcessStatus", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", + "isBound": true, + "isFunction": false, + "name": "ParentBasedAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.HeaderPartner", + }, + ], + "returnType": "com.c_salesordermanage_sd.HeaderPartner", + "sourceType": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.HeaderPartner)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.HeaderPartner", + "sourceType": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderItem)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderItem", + "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "draftPrepare", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftPrepare(com.c_salesordermanage_sd.SalesOrderManage)/SideEffectsQualifier", + "isCollection": false, + "isEntitySet": false, + "name": "SideEffectsQualifier", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)", + "isBound": true, + "isFunction": false, + "name": "DummyBoundAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.DummyBoundAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderItem", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderItem", + "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", + "isBound": true, + "isFunction": false, + "name": "IdentificationFormAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", + "isCollection": false, + "isEntitySet": false, + "name": "RequestedQuantity", + "type": "Edm.Decimal", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderItem", + "sourceType": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "OPAvailableTrueAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "OPAvailableFalseAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "OPAvailableNullAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "EnableEditAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "CreateWithSalesOrderType", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrderType", + "type": "Edm.String", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", + "isCollection": false, + "isEntitySet": false, + "name": "OrganizationDivision", + "type": "Edm.String", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", + "isCollection": false, + "isEntitySet": false, + "name": "DistributionChannel", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "FacetFormAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/_it", + "isCollection": false, + "isEntitySet": true, + "name": "_it", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", + "isCollection": false, + "isEntitySet": false, + "name": "ShippingCondition", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "draftActivate", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftActivate(com.c_salesordermanage_sd.SalesOrderManage)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", + "isBound": true, + "isFunction": false, + "name": "draftEdit", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/in", + "isCollection": false, + "isEntitySet": true, + "name": "in", + "type": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)/PreserveChanges", + "isCollection": false, + "isEntitySet": false, + "name": "PreserveChanges", + "type": "Edm.Boolean", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "ReturnInProcess()", + "isBound": false, + "isFunction": false, + "name": "ReturnInProcess", + "parameters": Array [], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "UnboundAction()", + "isBound": false, + "isFunction": false, + "name": "UnboundAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "UnboundAction()/MessageText", + "isCollection": false, + "isEntitySet": false, + "name": "MessageText", + "type": "Edm.String", + }, + ], + "returnType": "com.c_salesordermanage_sd.SalesOrderManage", + "sourceType": "", + }, + ], + "annotations": Object { + "serviceFile": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Value Help for Billing Block Reason", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Block", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Billing Block", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "BillingBlockReason_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Materials By Sales Org and Distr Channel", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SOrg.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DChl", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Material Number", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "MaterialName", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Description", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "RQ Unit", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Unit", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Requested Quantity Unit", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Base Unit of Measure", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Unit", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Types", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrderType_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Language Key", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "AlternativeUnit", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "AlternativeUnit_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "UoM Text", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Numerator", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Denominator", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Bullet Chart", + "type": "String", + }, + }, + Object { + "qualifier": "CreditLimitChart", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Bullet", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Credit Exposure", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#CustomerCreditExposureAmount", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit Consumption", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "HarveyBallCriticalityPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Pie", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing HarveyBall MicroChart", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#HarveyBallValuePath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit HarveyBall MicroChart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "RadialCriticalityPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Donut", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Radial MicroChart", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#RadialValuePath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit Radial MicroChart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "RadialCriticalityPathHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Donut", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Radial MicroChart Hidden", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "CustomerCreditExposureAmountHidden", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#RadialValuePathHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "CustomerCreditExposureAmountHidden", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Credit Limit Radial MicroChart Hidden", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "CustomerCreditExposureAmount", + "record": Object { + "propertyValues": Array [ + Object { + "name": "CriticalityCalculation", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "AcceptanceRangeHighValue", + "value": Object { + "Path": "AcceptanceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "AcceptanceRangeLowValue", + "value": Object { + "Path": "AcceptanceRangeLow", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeHighValue", + "value": Object { + "Path": "DeviationRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "DeviationRangeLowValue", + "value": Object { + "Path": "DeviationRangeLow", + "type": "Path", + }, + }, + Object { + "name": "ImprovementDirection", + "value": Object { + "EnumMember": "UI.ImprovementDirectionType/Maximize", + "type": "EnumMember", + }, + }, + Object { + "name": "ToleranceRangeHighValue", + "value": Object { + "Path": "ToleranceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "ToleranceRangeLowValue", + "value": Object { + "Path": "ToleranceRangeLow", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", + }, + "type": "Record", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Bullet Micro Chart", + "type": "String", + }, + }, + Object { + "name": "ForecastValue", + "value": Object { + "Path": "CustomerCreditForecast", + "type": "Path", + }, + }, + Object { + "name": "MaximumValue", + "value": Object { + "Decimal": 7000, + "type": "Decimal", + }, + }, + Object { + "name": "MinimumValue", + "value": Object { + "Decimal": 200, + "type": "Decimal", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Exposure Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "HarveyBallValuePath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "CustomerIsAboveThreshold", + "type": "Path", + }, + }, + Object { + "name": "MaximumValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "RadialValuePath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "CustomerIsAboveThreshold", + "type": "Path", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "RadialValuePathHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "CustomerIsAboveThreshold", + "type": "Path", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "CustomerCreditLimitAmount", + "type": "Path", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "CustomerCreditExposureAmountHidden", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Status", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sold-to Party", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "email", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "type", + "value": Object { + "EnumMember": "Communication.ContactInformationType/work", + "type": "EnumMember", + }, + }, + Object { + "name": "address", + "value": Object { + "Path": "EmailAddress", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", + }, + ], + "type": "Collection", + }, + }, + Object { + "name": "fn", + "value": Object { + "Path": "CustomerName", + "type": "Path", + }, + }, + Object { + "name": "tel", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "type", + "value": Object { + "EnumMember": "Communication.PhoneType/fax", + "type": "EnumMember", + }, + }, + Object { + "name": "uri", + "value": Object { + "Path": "InternationalPhoneNumber", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.PhoneNumberType", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Communication.v1.ContactType", + }, + "term": "com.sap.vocabularies.Communication.v1.Contact", + }, + Object { + "qualifier": "SoldToQuickView", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PostalCode", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CityName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Country", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CustomerName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Address", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@Communication.Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Address", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#SoldToQuickView", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.QuickViewFacets", + }, + ], + "target": "com.c_salesordermanage_sd.Customer", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Customer Number", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "CustomerName", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/Customer", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Name", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Name of Customer", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/CustomerName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Status", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/Delivered", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Name 1", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Name", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Name 1", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Name 2", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Post. Code", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Postal Code", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "City Postal Code", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/PostalCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "City", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/CityName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Ctr", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Country Key", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/Country", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Telephone Number", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Complete Number: Dialling Code+Number+Extension", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Email Address", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Customer/EmailAddress", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer Payment Terms", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "PayT", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Payment Terms", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Terms of Payment Key", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "CustomerPaymentTerms_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Description of terms of payment", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer Purchase Order Type", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "POtyp", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Purchase Order Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Customer Purchase Order Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "CustomerPurchaseOrderType_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Block Reason", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DB", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Block", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Default Delivery Block", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DeliveryBlockReason_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Delivery Block Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Block Desc.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HiddenFilter", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delv. Due List Block", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Delivery Due List Block", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Priority", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryPriority", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DPrio", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Priority", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DeliveryPriority_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DChl", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DistributionChannel_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Manage Sales Order Header Partner", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "email", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "type", + "value": Object { + "EnumMember": "Communication.ContactInformationType/work", + "type": "EnumMember", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Category_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "address", + "value": Object { + "Path": "BusinessPartner", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Communication.v1.EmailAddressType", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialCategoryFormAction(com.c_salesordermanage_sd.MaterialDetails)/BrandCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Group", - "type": "String", + Object { + "name": "fn", + "value": Object { + "Path": "FullName", + "type": "Path", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialGroup", + ], + "type": "com.sap.vocabularies.Communication.v1.ContactType", + }, + "term": "com.sap.vocabularies.Communication.v1.Contact", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Prd Group", - "type": "String", + "qualifier": "Progress2", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 100, + "type": "Int", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "name": "Title", + "value": Object { + "String": "Progress", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Product Group", - "type": "String", + Object { + "name": "Value", + "value": Object { + "Path": "Progress", + "type": "Path", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "MaterialGroup_Text", - "type": "Path", + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Progress", + "type": "EnumMember", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Product Group Desc.", - "type": "String", + "qualifier": "Rating2", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 5, + "type": "Int", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Product Group Description", - "type": "String", + Object { + "name": "Title", + "value": Object { + "String": "Rating", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Rating", + "type": "EnumMember", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Rating", - "type": "String", - }, - }, - Object { - "qualifier": "Rating", - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetValue", - "value": Object { - "Int": 5, - "type": "Int", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "Rating", - "type": "Path", - }, - }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Rating", - "type": "EnumMember", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ + "qualifier": "multipleActionFields", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ Object { - "name": "Label", - "value": Object { - "String": "Material Review", - "type": "String", - }, + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PartnerFunction", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "name": "ID", - "value": Object { - "String": "MaterialRatingsFacet", - "type": "String", - }, + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating2", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", }, Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.Identification", - "type": "AnnotationPath", - }, + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "OPAvailable (Parent)", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ParentBasedAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Dummy Action", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Review Details", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "MaterialRatingsDetailsFacet", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_MaterialRatingsDetails/@UI.LineItem", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ChangeOrderStatus", + "type": "String", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Description", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Title", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, - }, - Object { - "name": "Title", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "material/Material", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, - }, - Object { - "name": "TypeName", - "value": Object { - "String": "Material Rating", - "type": "String", - }, + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#multipleActionFields", + "type": "AnnotationPath", }, - Object { - "name": "TypeNamePlural", - "value": Object { - "String": "Material Ratings", - "type": "String", - }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Partner function", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", - }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", }, Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Current Rating", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.RatingFormAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Rating", - "type": "Path", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + "name": "Target", + "value": Object { + "AnnotationPath": "@Communication.Contact", + "type": "AnnotationPath", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Title", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Label", + "value": Object { + "String": "Supplier", + "type": "String", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Rating", - "type": "Path", - }, - }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", + }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Partner UUID", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/ID", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Partner function", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "ID", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/Rating", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Progress", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/Progress", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Address", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/AddressID", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Full Name", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/FullName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Telephone", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Postal Code", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Country Key", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderPartner/Country", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/isVerified", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.HeaderPartner)", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/owner/isVerified", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ParentBasedAction(com.c_salesordermanage_sd.HeaderPartner)", + }, + Object { + "annotations": Array [ + Object { + "qualifier": "AddressData", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Ship To Party", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "BusinessPartner", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "name": "Label", - "value": Object { - "String": "Rating", - "type": "String", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "StreetName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "google Link", + "type": "String", + }, + }, + Object { + "name": "Url", + "value": Object { + "String": "https://www.google.com", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "String": "Google Maps", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldWithUrl", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "Title", - "type": "Path", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "HouseNumber", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PostalCode", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "propertyValues": Array [ Object { - "name": "Label", - "value": Object { - "String": "Material Ratings Bound Action", - "type": "String", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CityName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.MaterialRatingsBoundAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_Rating/Rating_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Rating for the Material", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + "annotations": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Rating", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Rating_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Value", + "value": Object { + "Path": "Country", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/Rating", + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Title", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/Title", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/HasActiveEntity", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatings/HasDraftEntity", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Customer Number", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "collection": Array [ Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Rating", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, + "propertyValues": Array [ + Object { + "name": "LocalProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Rating", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, + }, + Object { + "name": "SemanticObjectProperty", + "value": Object { + "String": "SoldToParty", + "type": "String", }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", }, ], - "target": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", + "term": "com.sap.vocabularies.UI.v1.TextArrangement", "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", + "EnumMember": "UI.TextArrangementType/TextFirst", "type": "EnumMember", }, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_ShipToPartyVH/CustomerName", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "Customer", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_Rating/Rating_Text", - "type": "Path", + Object { + "name": "Label", + "value": Object { + "String": "Ship-to Party", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Rating for the Material", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Rating", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "BusinessPartner", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Rating_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.RatingFormAction(com.c_salesordermanage_sd.MaterialRatings)/Rating", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Rating Details", - "type": "String", - }, - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ID", - "value": Object { - "String": "Facet", - "type": "String", - }, + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.Identification", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Description", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "material/Material_Text", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, - }, - Object { - "name": "Title", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "material/Material", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerName", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, - }, - Object { - "name": "TypeName", - "value": Object { - "String": "Review Details", - "type": "String", - }, - }, - Object { - "name": "TypeNamePlural", - "value": Object { - "String": "Review Details", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", - }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Current Comments", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.RatingCommentsFormAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CREATEDAT", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "MODIFIEDAT", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "MODIFIEDBY", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "Comments", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CREATEDAT", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "MODIFIEDAT", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName1", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName2", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "MODIFIEDBY", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "BusinessPartnerImageURL", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "PostalCode", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "Comments", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CityName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - ], - "propertyValues": Array [ Object { - "name": "Label", - "value": Object { - "String": "Ratings Details Bound Action", - "type": "String", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "InternationalPhoneNumber", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.MaterialRatingsDetailsBoundAction", - "type": "String", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "EmailAddress", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "type": "Collection", }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Postal Code", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "City", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Is Hidden", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Country Key", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/Country", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Comments", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/Comments", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Street", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Created At", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/CREATEDAT", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Modified At", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDAT", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "House Number", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Modified By", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDBY", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.I_DistributionChannel", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasActiveEntity", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DChl", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasDraftEntity", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Comments", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Comments", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", + "term": "com.sap.vocabularies.UI.v1.TextArrangement", "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", + "EnumMember": "UI.TextArrangementType/TextOnly", "type": "EnumMember", }, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Comments", - "type": "String", - }, - }, ], - "target": "com.c_salesordermanage_sd.RatingCommentsFormAction(com.c_salesordermanage_sd.MaterialRatingsDetails)/Comments", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "DistributionChannel_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material years", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialYears", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel Description", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Model Year", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.MaterialYears/Model_Year", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Organization Division", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dv", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization", + }, + Object { + "annotations": Array [ Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", + "term": "com.sap.vocabularies.UI.v1.TextArrangement", "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", + "EnumMember": "UI.TextArrangementType/TextLast", "type": "EnumMember", }, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Warranty Expiration", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, ], - "target": "com.c_salesordermanage_sd.MaterialYears/Warranty_Expiration", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrganization_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OrganizationDivision", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Classification", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dv", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "Division_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OrganizationDivision/Division", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "IncoT", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Billing Block Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Incoterms (Part 1)", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "IncotermsClassification_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Cty", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Location Mandatory", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Location is mandatory", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Version", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsVersion", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "IncoV", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms version", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "IncotermsVersion_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Material", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Material_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Material/Material", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Is Hidden", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Material/isHidden", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.Material/Material_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material Group", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialGroup", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Prd Group", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Product Group", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "MaterialGroup_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Product Group Desc.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Product Group Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OrganizationDivision", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dv", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Division_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OrganizationDivision/Division", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Billing Block Status", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallBillingBlockStatus_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Delivery Block Status", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallDeliveryBlockStatus_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Status Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall SD Process Status", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.OverallSDProcessStatus", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallBillingBlockStatus_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Status", + "type": "String", + }, }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", + "term": "com.sap.vocabularies.UI.v1.TextArrangement", "value": Object { - "Bool": true, - "type": "Bool", + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", }, }, ], - "target": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "OverallSDProcessStatus_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Delivery Block Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallDeliveryBlockStatus_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Status Description", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Status Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall SD Process Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "SD Document Reason", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SDDocumentReason", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Searchable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.SearchRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.SearchRestrictions", - }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "OrdRs", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Status", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallSDProcessStatus_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Status Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Order Reason", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Rating", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Order Reason (Reason for the Business Transaction)", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Rating/Rating", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SDDocumentReason_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.Rating/Rating_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsActionCritical", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ReturnInProcess()", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "SD Document Reason", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SDDocumentReason", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales District", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesDistrict", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "OrdRs", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Order Reason", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Order Reason (Reason for the Business Transaction)", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SDDocumentReason_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SDst", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales District", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesDistrict", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales District", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SDst", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales District", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesDistrict_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesDistrict_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "District name", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Name of the district", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "District name", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Group", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesGroup", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Name of the district", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SGrp", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Group", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesGroup_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Group Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Group", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesGroup", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Office", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOffice", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SGrp", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SOff.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Office", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOffice_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Office Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Group", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Manage Sales Order Item (Transacl Procg)", - "type": "String", - }, - }, - Object { - "qualifier": "ItemRequestedQuantityChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "RequestedQuantity", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "MaterialDetailsModelYearChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_MaterialDetails/ModelYear", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_MaterialDetails/WarrantyYear", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "AreaMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Area", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Area Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#AreaMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Area Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "BarStackedPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/BarStacked", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Stacked Bar Chart", - "type": "String", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#BarStackedPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Stacked Bar Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "ColumnMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Column", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Column Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#ColumnMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Column Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesGroup_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Group Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Office", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOffice", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SOff.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Office", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOffice_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Office Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Manage Sales Order Item (Transacl Procg)", + "type": "String", + }, + }, + Object { + "qualifier": "AreaMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Area", + "type": "EnumMember", + }, }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "ComparisonPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Bar", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Comparison Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#ComparisonPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Comparison Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + Object { + "name": "Description", + "value": Object { + "String": "Testing Area Chart", + "type": "String", + }, }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "LineMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Line", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Line Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineValueCriticality", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineTargetCriticality", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Line Chart", - "type": "String", + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "LineMaxPathHidden", - "record": Object { - "propertyValues": Array [ - Object { - "name": "ChartType", - "value": Object { - "EnumMember": "UI.ChartType/Line", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Testing Line Chart", - "type": "String", - }, - }, - Object { - "name": "Dimensions", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "MeasureAttributes", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "NetAmountHidden", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineValueCriticalityHidden", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", - }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Measure", - "value": Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", - }, - }, - Object { - "name": "Role", - "value": Object { - "EnumMember": "UI.ChartMeasureRoleType/Axis1", - "type": "EnumMember", - }, - }, - Object { - "name": "DataPoint", - "value": Object { - "AnnotationPath": "@UI.DataPoint#LineTargetCriticalityHidden", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, }, - ], - "type": "Collection", - }, - }, - Object { - "name": "Measures", - "value": Object { - "Collection": Array [ Object { - "PropertyPath": "NetAmountHidden", - "type": "PropertyPath", + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, }, Object { - "PropertyPath": "TargetAmount", - "type": "PropertyPath", + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#AreaMaxPath", + "type": "AnnotationPath", + }, }, ], - "type": "Collection", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Items Line Chart", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", - }, - "term": "com.sap.vocabularies.UI.v1.Chart", - }, - Object { - "qualifier": "AreaMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "CriticalityCalculation", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "AcceptanceRangeHighValue", - "value": Object { - "Path": "AcceptanceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "AcceptanceRangeLowValue", - "value": Object { - "Path": "AcceptanceRangeLow", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeHighValue", - "value": Object { - "Path": "DeviationRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeLowValue", - "value": Object { - "Path": "DeviationRangeLow", - "type": "Path", - }, - }, - Object { - "name": "ImprovementDirection", - "value": Object { - "EnumMember": "UI.ImprovementDirectionType/Target", - "type": "EnumMember", - }, - }, - Object { - "name": "ToleranceRangeHighValue", - "value": Object { - "Path": "ToleranceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "ToleranceRangeLowValue", - "value": Object { - "Path": "ToleranceRangeLow", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", - }, - "type": "Record", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Area Micro Chart", - "type": "String", - }, - }, - Object { - "name": "TargetValue", - "value": Object { - "Path": "TargetAmount", - "type": "Path", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Data", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "BarStackedPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "Criticality", - "type": "Path", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "ColumnMaxPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "CriticalityCalculation", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "AcceptanceRangeHighValue", - "value": Object { - "Path": "AcceptanceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "AcceptanceRangeLowValue", - "value": Object { - "Path": "AcceptanceRangeLow", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeHighValue", - "value": Object { - "Path": "DeviationRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "DeviationRangeLowValue", - "value": Object { - "Path": "DeviationRangeLow", - "type": "Path", - }, - }, - Object { - "name": "ImprovementDirection", - "value": Object { - "EnumMember": "UI.ImprovementDirectionType/Maximize", - "type": "EnumMember", - }, - }, - Object { - "name": "ToleranceRangeHighValue", - "value": Object { - "Path": "ToleranceRangeHigh", - "type": "Path", - }, - }, - Object { - "name": "ToleranceRangeLowValue", - "value": Object { - "Path": "ToleranceRangeLow", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", - }, - "type": "Record", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Column Micro Chart", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Data", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "ComparisonPath", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "Path": "Criticality", - "type": "Path", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineTargetCriticality", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "EnumMember": "UI.CriticalityType/Neutral", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Target Amount Line", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Target Amount", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "TargetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineTargetCriticalityHidden", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "EnumMember": "UI.CriticalityType/Neutral", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Target Amount Line", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Target Amount", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "TargetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineValueCriticality", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "EnumMember": "UI.CriticalityType/Positive", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Net Amount Line", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "LineValueCriticalityHidden", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "EnumMember": "UI.CriticalityType/Positive", - "type": "EnumMember", - }, - }, - Object { - "name": "Description", - "value": Object { - "String": "Net Amount Hidden Line", - "type": "String", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Net Amount Hidden", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "NetAmountHidden", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Item Information", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.Identification", - "type": "AnnotationPath", - }, + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "type": "Collection", }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Material Details", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "MaterialDetailsFacet", - "type": "String", - }, - }, + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_MaterialDetails/@UI.LineItem", - "type": "AnnotationPath", - }, + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "type": "Collection", }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Description", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "owner/SalesOrder", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, - }, - Object { - "name": "Title", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItem", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, - }, - Object { - "name": "TypeName", - "value": Object { - "String": "Sales Order Item", - "type": "String", - }, - }, - Object { - "name": "TypeNamePlural", - "value": Object { - "String": "Sales Order Items", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Identification Form Action", - "type": "String", - }, - }, + Object { + "name": "Title", + "value": Object { + "String": "Items Area Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "BarStackedPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/BarStacked", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Stacked Bar Chart", + "type": "String", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.IdentificationFormAction", - "type": "String", - }, + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#BarStackedPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "type": "Collection", }, - Object { - "propertyValues": Array [ + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItem", - "type": "Path", - }, + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "propertyValues": Array [ + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Stacked Bar Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "ColumnMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Column", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Column Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ Object { - "name": "Value", - "value": Object { - "Path": "Material", - "type": "Path", - }, + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "propertyValues": Array [ + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ Object { - "name": "Value", - "value": Object { - "Path": "RequestedQuantity", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#ColumnMaxPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "propertyValues": Array [ + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", - }, - Object { - "collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Column Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "ComparisonPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Bar", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Comparison Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "_Material/isHidden", - "type": "Path", - }, + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", }, ], - "propertyValues": Array [ + "type": "Collection", + }, + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItem", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#ComparisonPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "annotations": Array [ + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, ], - "propertyValues": Array [ + "type": "Collection", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Comparison Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "LineMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Line", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Line Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ Object { - "name": "Value", - "value": Object { - "Path": "HigherLevelItem", - "type": "Path", - }, + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "annotations": Array [ + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineValueCriticality", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "Material", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineTargetCriticality", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "annotations": Array [ + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "PropertyPath": "NetAmount", + "type": "PropertyPath", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "RequestedQuantity", - "type": "Path", - }, + "PropertyPath": "TargetAmount", + "type": "PropertyPath", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "annotations": Array [ + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Line Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "LineMaxPathHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "ChartType", + "value": Object { + "EnumMember": "UI.ChartType/Line", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Testing Line Chart", + "type": "String", + }, + }, + Object { + "name": "Dimensions", + "value": Object { + "Collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderItemCategory", - "type": "Path", - }, + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "annotations": Array [ + }, + Object { + "name": "MeasureAttributes", + "value": Object { + "Collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "NetAmountHidden", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineValueCriticalityHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "RequestedDeliveryDate", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "Measure", + "value": Object { + "PropertyPath": "TargetAmount", + "type": "PropertyPath", + }, + }, + Object { + "name": "Role", + "value": Object { + "EnumMember": "UI.ChartMeasureRoleType/Axis1", + "type": "EnumMember", + }, + }, + Object { + "name": "DataPoint", + "value": Object { + "AnnotationPath": "@UI.DataPoint#LineTargetCriticalityHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartMeasureAttributeType", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "annotations": Array [ + }, + Object { + "name": "Measures", + "value": Object { + "Collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "PropertyPath": "NetAmountHidden", + "type": "PropertyPath", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, + "PropertyPath": "TargetAmount", + "type": "PropertyPath", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", + }, + Object { + "name": "Title", + "value": Object { + "String": "Items Line Chart", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ChartDefinitionType", + }, + "term": "com.sap.vocabularies.UI.v1.Chart", + }, + Object { + "qualifier": "AreaMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "CriticalityCalculation", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "AcceptanceRangeHighValue", + "value": Object { + "Path": "AcceptanceRangeHigh", + "type": "Path", + }, }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "_Material/Material", - "type": "Path", + Object { + "name": "AcceptanceRangeLowValue", + "value": Object { + "Path": "AcceptanceRangeLow", + "type": "Path", + }, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "isVerified", - "type": "Path", + Object { + "name": "DeviationRangeHighValue", + "value": Object { + "Path": "DeviationRangeHigh", + "type": "Path", + }, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", + Object { + "name": "DeviationRangeLowValue", + "value": Object { + "Path": "DeviationRangeLow", + "type": "Path", + }, }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", + Object { + "name": "ImprovementDirection", + "value": Object { + "EnumMember": "UI.ImprovementDirectionType/Target", + "type": "EnumMember", + }, }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", + Object { + "name": "ToleranceRangeHighValue", + "value": Object { + "Path": "ToleranceRangeHigh", + "type": "Path", + }, }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", + Object { + "name": "ToleranceRangeLowValue", + "value": Object { + "Path": "ToleranceRangeLow", + "type": "Path", + }, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + ], + "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", + }, + "type": "Record", }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", + }, + Object { + "name": "Description", + "value": Object { + "String": "Area Micro Chart", + "type": "String", + }, + }, + Object { + "name": "TargetValue", + "value": Object { + "Path": "TargetAmount", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Data", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "BarStackedPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "Criticality", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "ColumnMaxPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "CriticalityCalculation", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "AcceptanceRangeHighValue", + "value": Object { + "Path": "AcceptanceRangeHigh", + "type": "Path", + }, }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", + Object { + "name": "AcceptanceRangeLowValue", + "value": Object { + "Path": "AcceptanceRangeLow", + "type": "Path", + }, }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN with context", - "type": "String", + Object { + "name": "DeviationRangeHighValue", + "value": Object { + "Path": "DeviationRangeHigh", + "type": "Path", + }, }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "name": "DeviationRangeLowValue", + "value": Object { + "Path": "DeviationRangeLow", + "type": "Path", + }, }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + Object { + "name": "ImprovementDirection", + "value": Object { + "EnumMember": "UI.ImprovementDirectionType/Maximize", + "type": "EnumMember", + }, + }, + Object { + "name": "ToleranceRangeHighValue", + "value": Object { + "Path": "ToleranceRangeHigh", + "type": "Path", + }, + }, + Object { + "name": "ToleranceRangeLowValue", + "value": Object { + "Path": "ToleranceRangeLow", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CriticalityCalculationType", + }, + "type": "Record", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Column Micro Chart", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Data", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "ComparisonPath", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "Path": "Criticality", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "LineTargetCriticality", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Neutral", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Target Amount Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Target Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "TargetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "LineTargetCriticalityHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Neutral", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Target Amount Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Target Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "TargetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "LineValueCriticality", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Positive", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Net Amount Line", + "type": "String", + }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "qualifier": "LineValueCriticalityHidden", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Positive", + "type": "EnumMember", + }, + }, + Object { + "name": "Description", + "value": Object { + "String": "Net Amount Hidden Line", + "type": "String", }, + }, + Object { + "name": "Title", + "value": Object { + "String": "Net Amount Hidden", + "type": "String", + }, + }, + Object { + "name": "Value", + "value": Object { + "Path": "NetAmountHidden", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "View Return Status", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/ReturnInProcess", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "name": "Label", + "value": Object { + "String": "Item Information", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.Identification", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "annotations": Array [ + Object { + "collection": Array [ + Object { "propertyValues": Array [ Object { - "name": "Label", + "name": "message", "value": Object { - "String": "Dummy Bound Action", + "String": "UI.HEADERINFO: TypeNamePlural is mandatory", "type": "String", }, }, Object { - "name": "Action", + "name": "severity", "value": Object { - "String": "com.c_salesordermanage_sd.DummyBoundAction", + "String": "error", "type": "String", }, }, ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "type": "Org.OData.Core.V1.MessageType", }, ], "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", + "term": "Org.OData.Core.V1.Messages", }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "SortOrder", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Property", - "value": Object { - "PropertyPath": "SalesOrderItem", - "type": "PropertyPath", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SortOrderType", + ], + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItem", + "type": "Path", }, - ], - "type": "Collection", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", + "type": "Record", + }, }, - "term": "com.sap.vocabularies.UI.v1.PresentationVariant", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem", + Object { + "name": "TypeName", + "value": Object { + "String": "SalesOrderItem", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Sales Order Items", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", }, Object { - "annotations": Array [ + "collection": Array [ Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": false, - "type": "Bool", - }, + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Identification Form Action", + "type": "String", }, - ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", - }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.IdentificationFormAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", - }, + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItem", + "type": "Path", }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftNodeType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order UUID", - "type": "String", - }, + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.PersonalData.v1.IsPotentiallySensitive", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedQuantity", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/ID", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", }, Object { - "annotations": Array [ + "collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item", - "type": "String", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "_Material/isHidden", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "HigherLevelItem", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "Material", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Higher-Level Item", - "type": "String", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedQuantity", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderItemCategory", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", - }, - Object { - "annotations": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "RequestedDeliveryDate", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item Category", - "type": "String", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "NetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_ItemCategory/SalesDocumentItemCategory_Text", - "type": "Path", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "View Return Status", + "type": "String", + }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/ReturnInProcess", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "SalesOrderItemCategory", - "type": "String", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "owner/ReturnInProcess", + "type": "Path", }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Document Item Category", - "type": "String", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Dummy Bound Action", + "type": "String", }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrderItemCategory", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesDocumentItemCategory", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, + }, + Object { + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.DummyBoundAction", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Sortorder", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesDocumentItemCategory_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Property", + "value": Object { + "PropertyPath": "SalesOrderItem", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ScheduleLineIsAllowed", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "Descending", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.SortOrderType", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", + ], + "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", + }, + "term": "com.sap.vocabularies.UI.v1.PresentationVariant", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "FieldControlType for Items Table", - "type": "String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.InsertRestrictions", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "Path": "fieldControlType_item", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Material", - "type": "String", + ], + "type": "com.sap.vocabularies.Common.v1.DraftNodeType", + }, + "term": "com.sap.vocabularies.Common.v1.DraftNode", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order UUID", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/ID", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Higher-Level Item", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item Category", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_ItemCategory/SalesDocumentItemCategory_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "SalesOrderItemCategory", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_Material/Material_Text", - "type": "Path", + Object { + "name": "Label", + "value": Object { + "String": "Sales Document Item Category", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "C_MaterialBySlsOrgDistrChnl", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Materials for Manage Sales Order", - "type": "String", + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrderItemCategory", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesDocumentItemCategory", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Material", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Material", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "ValueListProperty", + "value": Object { + "String": "SalesDocumentItemCategory_Text", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "owner/DistributionChannel", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "DistributionChannel", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + "name": "ValueListProperty", + "value": Object { + "String": "ScheduleLineIsAllowed", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "FieldControlType for Items Table", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "Path": "fieldControlType_item", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Material", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_Material/Material_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "C_MaterialBySlsOrgDistrChnl", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Materials for Manage Sales Order", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Material", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "owner/SalesOrganization", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + "name": "ValueListProperty", + "value": Object { + "String": "Material", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "RequestedQuantityUnit", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "RequestedQuantityUnit", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "RequestedQuantityUnit", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "MaterialName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "RequestedQuantityUnit", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterOut", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "MaterialName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/Material", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/Material", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Date", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Requested Quantity", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.Unit", - "value": Object { - "Path": "RequestedQuantityUnit", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Requested Quantity", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "Path": "fieldControlType_item", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Requested Qty Unit", - "type": "String", + "qualifier": undefined, + "term": "Org.OData.Measures.V1.Unit", + "value": Object { + "Path": "RequestedQuantityUnit", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "Path": "fieldControlType_item", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Requested Qty Unit", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_RequestedQuantityUnit/UnitOfMeasure_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "C_ProductUnitsOfMeasureVH", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_RequestedQuantityUnit/UnitOfMeasure_Text", - "type": "Path", + Object { + "name": "Label", + "value": Object { + "String": "Requested Quantity Units", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "C_ProductUnitsOfMeasureVH", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Requested Quantity Units", - "type": "String", + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "RequestedQuantityUnit", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "AlternativeUnit", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "RequestedQuantityUnit", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "AlternativeUnit", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "Material", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "Material", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Product", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + "name": "ValueListProperty", + "value": Object { + "String": "Product", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "AlternativeUnit_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "AlternativeUnit_Text", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "QuantityNumerator", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "QuantityNumerator", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "QuantityDenominator", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "QuantityDenominator", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Pricing Date", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Value", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Value", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Target Value", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/isVerified", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Requested Quantity", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Document Item Category", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "ItCa", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item Category", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Sales Document Item Category", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesDocumentItemCategory", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SchAl", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sched.lines allowed", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Schedule lines allowed", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Manage Sales Order", + "type": "String", + }, + }, + Object { + "collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Pricing Date", - "type": "String", - }, + "PropertyPath": "ID", + "type": "PropertyPath", }, ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticKey", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Analytics.v1.Measure", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Value", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": "ItemCreationOrDeletion", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Value", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": "ItemMaterialChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_Item/Material", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Target Value", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": "ItemRequestedQuantityChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_Item/RequestedQuantity", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.ExcludeFromNavigationContext", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": "ShipToPartyChange", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "_ShipToParty/BusinessPartner", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", + }, + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": "SoldToChangeSalesAreaShipTo", + "record": Object { + "propertyValues": Array [ + Object { + "name": "SourceProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "RequestedQuantity", - "type": "PropertyPath", - }, - ], - "type": "Collection", + Object { + "name": "TargetEntities", + "value": Object { + "Collection": Array [ + Object { + "NavigationPropertyPath": "_ShipToParty", + "type": "NavigationPropertyPath", }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "RequestedQuantity", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + Object { + "NavigationPropertyPath": "_Partner", + "type": "NavigationPropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/isVerified", - "type": "Path", + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "DistributionChannel", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OrganizationDivision", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "TotalNetAmount", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)", + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Requested Quantity", - "type": "String", + "qualifier": "NetValue", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Criticality", + "value": Object { + "EnumMember": "UI.CriticalityType/Positive", + "type": "EnumMember", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.IdentificationFormAction(com.c_salesordermanage_sd.SalesOrderItem)/RequestedQuantity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Document Item Category", - "type": "String", + Object { + "name": "Title", + "value": Object { + "String": "Net Amount", + "type": "String", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory", + Object { + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ItCa", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Item Category", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Sales Document Item Category", - "type": "String", + "qualifier": "Progress", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 100, + "type": "Int", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesDocumentItemCategory", - "type": "Path", + Object { + "name": "Title", + "value": Object { + "String": "Progress", + "type": "String", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", + Object { + "name": "Value", + "value": Object { + "Path": "Progress", + "type": "Path", + }, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Progress", + "type": "EnumMember", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SchAl", - "type": "String", + "qualifier": "Rating", + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetValue", + "value": Object { + "Int": 5, + "type": "Int", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "name": "Title", + "value": Object { + "String": "Rating", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sched.lines allowed", - "type": "String", + Object { + "name": "Value", + "value": Object { + "Path": "Rating", + "type": "Path", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Schedule lines allowed", - "type": "String", + Object { + "name": "Visualization", + "value": Object { + "EnumMember": "UI.VisualizationType/Rating", + "type": "EnumMember", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", + ], + "type": "com.sap.vocabularies.UI.v1.DataPointType", + }, + "term": "com.sap.vocabularies.UI.v1.DataPoint", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Manage Sales Order", - "type": "String", - }, - }, + "collection": Array [ Object { - "collection": Array [ + "propertyValues": Array [ Object { - "PropertyPath": "ID", - "type": "PropertyPath", + "name": "Label", + "value": Object { + "String": "Header", + "type": "String", + }, }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticKey", - }, - Object { - "qualifier": "ItemCreationOrDeletion", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, + Object { + "name": "ID", + "value": Object { + "String": "HeaderInfo", + "type": "String", }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, + }, + Object { + "name": "Facets", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ID", + "value": Object { + "String": "GeneralInfo", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "General Information", + "type": "String", + }, + }, + Object { + "name": "Facets", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Order Data", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "OrderData", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#OrderData", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Ship-To", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "AddressData", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_ShipToParty/@UI.FieldGroup#AddressData", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Terms & Conditions", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "TermsConditions", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#TermsConditions", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "Path": "High", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Business Partners", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "SalesOrderHeaderPartner", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Partner/@UI.LineItem", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "type": "Collection", }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + ], + "type": "com.sap.vocabularies.UI.v1.CollectionFacet", }, Object { - "qualifier": "ItemMaterialChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_Item/Material", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Items", + "type": "String", }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, + }, + Object { + "name": "ID", + "value": Object { + "String": "SalesOrderItems", + "type": "String", }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.LineItem", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, - Object { - "qualifier": "ItemRequestedQuantityChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Facets", + }, + Object { + "qualifier": "OrderData", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ Object { - "PropertyPath": "_Item/RequestedQuantity", - "type": "PropertyPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ + "propertyValues": Array [ Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", + "name": "Label", + "value": Object { + "String": "Facet Form Action", + "type": "String", + }, }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.FacetFormAction", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ShipToPartyChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ + Object { + "annotations": Array [ Object { - "PropertyPath": "_ShipToParty/BusinessPartner", - "type": "PropertyPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", - }, + "propertyValues": Array [ Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", + "name": "Value", + "value": Object { + "Path": "SoldToParty", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "SoldToChangeSalesAreaShipTo", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ + Object { + "annotations": Array [ Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", - }, + "propertyValues": Array [ Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", + "name": "Value", + "value": Object { + "Path": "PurchaseOrderByCustomer", + "type": "Path", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DistributionChannel", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OrganizationDivision", - "type": "PropertyPath", - }, + Object { + "annotations": Array [ Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "NetValue", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Criticality", - "value": Object { - "EnumMember": "UI.CriticalityType/Positive", - "type": "EnumMember", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "TotalNetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "Progress", - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetValue", - "value": Object { - "Int": 100, - "type": "Int", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Progress", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "Progress", - "type": "Path", - }, - }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Progress", - "type": "EnumMember", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "qualifier": "Rating", - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetValue", - "value": Object { - "Int": 5, - "type": "Int", - }, - }, - Object { - "name": "Title", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - Object { - "name": "Value", - "value": Object { - "Path": "Rating", - "type": "Path", - }, - }, - Object { - "name": "Visualization", - "value": Object { - "EnumMember": "UI.VisualizationType/Rating", - "type": "EnumMember", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataPointType", - }, - "term": "com.sap.vocabularies.UI.v1.DataPoint", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Header", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "HeaderInfo", - "type": "String", - }, - }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ID", - "value": Object { - "String": "GeneralInfo", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "General Information", - "type": "String", - }, - }, - Object { - "name": "Facets", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Order Data", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "OrderData", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#OrderData", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Ship-To", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "AddressData", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_ShipToParty/@UI.FieldGroup#AddressData", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Terms & Conditions", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "TermsConditions", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#TermsConditions", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "Path": "High", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Business Partners", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "SalesOrderHeaderPartner", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Partner/@UI.LineItem", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderDate", + "type": "Path", }, - ], - "type": "Collection", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ShippingCondition", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OverallSDProcessStatus", + "type": "Path", + }, + }, + Object { + "name": "Criticality", + "value": Object { + "Path": "StatusCriticality", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "DescriptionFieldForOPACleanup", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, ], - "type": "com.sap.vocabularies.UI.v1.CollectionFacet", + "type": "Collection", }, - Object { - "annotations": Array [ + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "qualifier": "OrgData", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrganization", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - ], - "propertyValues": Array [ Object { - "name": "Label", - "value": Object { - "String": "Items", - "type": "String", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "DistributionChannel", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "name": "ID", - "value": Object { - "String": "SalesOrderItems", - "type": "String", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "OrganizationDivision", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "qualifier": "OrgDataHeader", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.LineItem", - "type": "AnnotationPath", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "type": "Collection", }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Facets", - }, - Object { - "qualifier": "OrderData", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "qualifier": "TermsConditions", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBNWithContext", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + "name": "Value", + "value": Object { + "Path": "IncotermsClassification", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Facet Form Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.FacetFormAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SoldToParty", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Value", + "value": Object { + "Path": "IncotermsVersion", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PurchaseOrderByCustomer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderDate", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Value", + "value": Object { + "Path": "IncotermsLocation1", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ShippingCondition", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OverallSDProcessStatus", - "type": "Path", - }, - }, - Object { - "name": "Criticality", - "value": Object { - "Path": "StatusCriticality", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Value", + "value": Object { + "Path": "IncotermsLocation2", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "DescriptionFieldForOPACleanup", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, ], - "type": "Collection", + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "CustomerPaymentTerms", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "OrgData", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrganization", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "DistributionChannel", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Value", + "value": Object { + "Path": "CompleteDeliveryIsDefined", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationDivision", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, ], - "type": "Collection", + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "PricingDate", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", - }, - Object { - "qualifier": "OrgDataHeader", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "qualifier": "multipleActionFields", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Data", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TotalNetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Target", + "value": Object { + "AnnotationPath": "_SoldToParty/@Communication.Contact", + "type": "AnnotationPath", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", }, + ], + "type": "Collection", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.FieldGroupType", + }, + "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "collection": Array [ + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Sales Area", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "OrganizationalDataHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#OrgData", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Net Amount", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "NetValueDataHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#NetValue", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Contact Info", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "ContactHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_SoldToParty/@Communication.Contact", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "CreditLimitConsumption", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "CreditLimitChartHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#CreditLimitChart", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Comparison MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "ComparisonMicroChart", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#ComparisonPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, Object { - "qualifier": "TermsConditions", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsClassification", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsVersion", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsLocation1", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "IncotermsLocation2", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CustomerPaymentTerms", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "CompleteDeliveryIsDefined", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PricingDate", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - ], - "type": "Collection", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Radial MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "RadialMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPathHidden", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, Object { - "qualifier": "multipleActionFields", - "record": Object { - "propertyValues": Array [ - Object { - "name": "Data", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_SoldToParty/@Communication.Contact", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", - }, - ], - "type": "Collection", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.FieldGroupType", - }, - "term": "com.sap.vocabularies.UI.v1.FieldGroup", + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Rating Value", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "RatingHeader", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.DataPoint#Rating", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.HeaderFacets", + }, + Object { + "collection": Array [ Object { - "collection": Array [ + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Sales Area", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "OrganizationalDataHeader", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#OrgData", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "NetValueDataHeader", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#NetValue", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Label", + "value": Object { + "String": "Column MicroChart", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Contact Info", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "ContactHeader", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_SoldToParty/@Communication.Contact", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "ID", + "value": Object { + "String": "ColumnMicroChart", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "CreditLimitConsumption", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "CreditLimitChartHeader", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#CreditLimitChart", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#ColumnMaxPath", + "type": "AnnotationPath", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Comparison MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "ComparisonMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#ComparisonPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Radial MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "RadialMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPathHidden", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Label", + "value": Object { + "String": "Area MicroChart", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Rating Value", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "RatingHeader", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.DataPoint#Rating", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "ID", + "value": Object { + "String": "AreaMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#AreaMaxPath", + "type": "AnnotationPath", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.HeaderFacets", + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, Object { - "collection": Array [ + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Column MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "ColumnMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#ColumnMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Area MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "AreaMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#AreaMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Label", + "value": Object { + "String": "HarveyBall MicroChart", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "HarveyBall MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "HarveyBallMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#HarveyBallCriticalityPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "ID", + "value": Object { + "String": "HarveyBallMicroChart", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Line MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "LineMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#LineMaxPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#HarveyBallCriticalityPath", + "type": "AnnotationPath", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Radial MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "RadialMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Stacked Bar MicroChart", - "type": "String", - }, - }, - Object { - "name": "ID", - "value": Object { - "String": "BarStackedMicroChart", - "type": "String", - }, - }, - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "_Item/@UI.Chart#BarStackedPath", - "type": "AnnotationPath", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + "name": "Label", + "value": Object { + "String": "Line MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "LineMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#LineMaxPath", + "type": "AnnotationPath", + }, }, ], - "qualifier": "MicroCharts", - "term": "com.sap.vocabularies.UI.v1.HeaderFacets", + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", }, Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Description", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderTypeName", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - Object { - "name": "ImageUrl", - "value": Object { - "Path": "ImageUrl", - "type": "Path", - }, + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Radial MicroChart", + "type": "String", }, - Object { - "name": "Title", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrder", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - "type": "Record", - }, + }, + Object { + "name": "ID", + "value": Object { + "String": "RadialMicroChart", + "type": "String", }, - Object { - "name": "TypeName", - "value": Object { - "String": "Sales Order", - "type": "String", - }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_CreditLimitDetails/@UI.Chart#RadialCriticalityPath", + "type": "AnnotationPath", }, - Object { - "name": "TypeNamePlural", - "value": Object { - "String": "Sales Orders", - "type": "String", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", }, - ], - "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + }, + ], + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Stacked Bar MicroChart", + "type": "String", + }, + }, + Object { + "name": "ID", + "value": Object { + "String": "BarStackedMicroChart", + "type": "String", + }, + }, + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "_Item/@UI.Chart#BarStackedPath", + "type": "AnnotationPath", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.ReferenceFacet", + }, + ], + "qualifier": "MicroCharts", + "term": "com.sap.vocabularies.UI.v1.HeaderFacets", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Description", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrderTypeName", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, + }, + Object { + "name": "ImageUrl", + "value": Object { + "Path": "ImageUrl", + "type": "Path", + }, + }, + Object { + "name": "Title", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "SalesOrder", + "type": "Path", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "type": "Record", + }, }, - "term": "com.sap.vocabularies.UI.v1.HeaderInfo", - }, + Object { + "name": "TypeName", + "value": Object { + "String": "Sales Order", + "type": "String", + }, + }, + Object { + "name": "TypeNamePlural", + "value": Object { + "String": "Sales Orders", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.HeaderInfoType", + }, + "term": "com.sap.vocabularies.UI.v1.HeaderInfo", + }, + Object { + "collection": Array [ Object { - "collection": Array [ + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "editActionIsEnabled", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Enable Edit", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.EnableEditAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "editActionIsEnabled", + "type": "Path", + }, }, + ], + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "editActionIsDisabled", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Status (Header)", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ChangeOrderStatus", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "name": "Label", + "value": Object { + "String": "Enable Edit", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "editActionIsDisabled", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Status (Footer)", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.ChangeOrderStatus", - "type": "String", - }, - }, - Object { - "name": "Determining", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.EnableEditAction", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Type", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "editActionIsDisabled", + "type": "Path", + }, }, + ], + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + "name": "Label", + "value": Object { + "String": "OPAvailable (Header)", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN with context", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ChangeOrderStatus", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "annotations": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderType", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "editActionIsDisabled", + "type": "Path", + }, }, + ], + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SoldToParty", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Label", + "value": Object { + "String": "OPAvailable (Footer)", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrganization", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.ChangeOrderStatus", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "DistributionChannel", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Determining", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OrganizationDivision", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Label", + "value": Object { + "String": "Change Order Type", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "PurchaseOrderByCustomer", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", + "type": "String", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Identification", + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", }, Object { - "collection": Array [ + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Type", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "name": "Value", + "value": Object { + "Path": "SalesOrderType", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Unbound Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/UnboundAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "name": "Value", + "value": Object { + "Path": "SoldToParty", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Return In Process", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/ReturnInProcess", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "name": "Value", + "value": Object { + "Path": "SalesOrganization", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + "name": "Value", + "value": Object { + "Path": "DistributionChannel", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "v4Freestyle", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "Inbound", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN with context", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + "name": "Value", + "value": Object { + "Path": "OrganizationDivision", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ID", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Value", + "value": Object { + "Path": "PurchaseOrderByCustomer", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Identification", + }, + Object { + "collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ImageUrl", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Label", + "value": Object { + "String": "Change Order Type", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#multipleActionFields", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sold-To Party", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "_ShipToParty/isHidden", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderType", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Label", + "value": Object { + "String": "Unbound Action", + "type": "String", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "OverallSDProcessStatus", - "type": "Path", - }, - }, - Object { - "name": "Criticality", - "value": Object { - "Path": "StatusCriticality", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Action", + "value": Object { + "String": "com.c_salesordermanage_sd/UnboundAction", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "TotalNetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "name": "Value", + "value": Object { + "Path": "ID", + "type": "Path", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", + "type": "com.sap.vocabularies.UI.v1.DataField", }, Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "MaxItems", - "value": Object { - "Int": 30, - "type": "Int", - }, + "propertyValues": Array [ + Object { + "name": "Value", + "value": Object { + "Path": "ImageUrl", + "type": "Path", }, - Object { - "name": "RequestAtLeast", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrder", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ + Object { + "name": "Target", + "value": Object { + "AnnotationPath": "@UI.FieldGroup#multipleActionFields", + "type": "AnnotationPath", }, - Object { - "name": "SortOrder", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Property", - "value": Object { - "PropertyPath": "ID", - "type": "PropertyPath", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SortOrderType", - }, - ], - "type": "Collection", - }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sold-To Party", + "type": "String", }, - ], - "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", - }, - "term": "com.sap.vocabularies.UI.v1.PresentationVariant", + }, + ], + "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", }, Object { - "collection": Array [ + "annotations": Array [ Object { - "PropertyPath": "SalesOrder", - "type": "PropertyPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "_ShipToParty/isHidden", + "type": "Path", + }, }, + ], + "propertyValues": Array [ Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", + "name": "Value", + "value": Object { + "Path": "SalesOrderType", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "propertyValues": Array [ Object { - "PropertyPath": "OverallSDProcessStatus", - "type": "PropertyPath", + "name": "Value", + "value": Object { + "Path": "OverallSDProcessStatus", + "type": "Path", + }, }, Object { - "PropertyPath": "SalesOrderDate", - "type": "PropertyPath", + "name": "Criticality", + "value": Object { + "Path": "StatusCriticality", + "type": "Path", + }, }, + ], + "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "annotations": Array [ Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Hidden", + "value": Object { + "Path": "Delivered", + "type": "Path", + }, }, + ], + "propertyValues": Array [ Object { - "PropertyPath": "LastChangedDateTime", - "type": "PropertyPath", + "name": "Value", + "value": Object { + "Path": "TotalNetAmount", + "type": "Path", + }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.SelectionFields", + "type": "com.sap.vocabularies.UI.v1.DataField", }, ], - "target": "com.c_salesordermanage_sd.SalesOrderManage", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.LineItem", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "RestrictedProperties", - "value": Object { - "Collection": Array [ + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Sortorder", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "NavigationProperty", - "value": Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - }, - Object { - "name": "InsertRestrictions", - "value": Object { - "Record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", - }, - "type": "Record", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.NavigationPropertyRestriction", + "name": "Property", + "value": Object { + "PropertyPath": "SalesOrderDate", + "type": "PropertyPath", + }, + }, + Object { + "name": "Descending", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.SortOrderType", }, - }, - ], - "type": "Org.OData.Capabilities.V1.NavigationRestrictionsType", + Object { + "propertyValues": Array [ + Object { + "name": "Property", + "value": Object { + "PropertyPath": "SalesOrder", + "type": "PropertyPath", + }, + }, + Object { + "name": "Descending", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.SortOrderType", + }, + ], + "type": "Collection", + }, }, - "term": "Org.OData.Capabilities.V1.NavigationRestrictions", + ], + "type": "com.sap.vocabularies.UI.v1.PresentationVariantType", + }, + "term": "com.sap.vocabularies.UI.v1.PresentationVariant", + }, + Object { + "collection": Array [ + Object { + "PropertyPath": "SalesOrder", + "type": "PropertyPath", }, Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "ActivationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftActivate", - "type": "String", - }, - }, - Object { - "name": "EditAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftEdit", - "type": "String", - }, - }, - Object { - "name": "PreparationAction", - "value": Object { - "String": "com.c_salesordermanage_sd.draftPrepare", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.DraftRootType", - }, - "term": "com.sap.vocabularies.Common.v1.DraftRoot", + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "OverallSDProcessStatus", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SalesOrderDate", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", }, ], - "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.SelectionFields", + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "RestrictedProperties", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "NavigationProperty", + "value": Object { + "NavigationPropertyPath": "_Item", + "type": "NavigationPropertyPath", + }, + }, + Object { + "name": "InsertRestrictions", + "value": Object { + "Record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + }, + "type": "Record", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.NavigationPropertyRestriction", + }, + ], + "type": "Collection", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.NavigationRestrictionsType", + }, + "term": "Org.OData.Capabilities.V1.NavigationRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "ActivationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftActivate", + "type": "String", + }, + }, + Object { + "name": "EditAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftEdit", + "type": "String", + }, + }, + Object { + "name": "PreparationAction", + "value": Object { + "String": "com.c_salesordermanage_sd.draftPrepare", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.DraftRootType", + }, + "term": "com.sap.vocabularies.Common.v1.DraftRoot", + }, + ], + "target": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", + }, }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", + "term": "com.sap.vocabularies.UI.v1.TextArrangement", "value": Object { - "EnumMember": "Common.FieldControlType/Inapplicable", + "EnumMember": "UI.TextArrangementType/TextOnly", "type": "EnumMember", }, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextOnly", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrder", - "type": "Path", - }, - }, ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ID", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrder", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ID", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Delivery Status", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Status", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Return Status", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Order Type", + "type": "String", + }, }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.UI.v1.TextArrangement", "value": Object { - "String": "Return Status", - "type": "String", + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", }, }, ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_SalesOrderType/SalesOrderType_Text", + "type": "Path", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Order Type", - "type": "String", - }, - }, + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Image", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.IsImageURL", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Sold-To", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sold-To Party", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObject", + "value": Object { + "String": "SalesOrder", + "type": "String", + }, + }, + Object { + "collection": Array [ Object { - "annotations": Array [ + "propertyValues": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", + "name": "LocalProperty", "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, + }, + Object { + "name": "SemanticObjectProperty", + "value": Object { + "String": "SoldToParty", + "type": "String", }, }, ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_SalesOrderType/SalesOrderType_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", }, ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Image", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.IsImageURL", + "term": "com.sap.vocabularies.UI.v1.TextArrangement", "value": Object { - "Bool": true, - "type": "Bool", + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", }, }, ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_SoldToParty/CustomerName", + "type": "Path", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Sold-To", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sold-To Party", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "qualifier": "customer", - "term": "com.sap.vocabularies.Common.v1.SemanticObject", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "SoldToParty", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", - }, - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SemanticObjectMappingType", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "Customer", + "type": "String", }, - ], - "qualifier": "customer", - "term": "com.sap.vocabularies.Common.v1.SemanticObjectMapping", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sold-to Party", + "type": "String", }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_SoldToParty/CustomerName", - "type": "Path", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sold-to Party", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Customer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "Customer", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName1", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "CustomerName", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OrganizationBPName2", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName1", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "BusinessPartnerImageURL", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "OrganizationBPName2", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "PostalCode", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "BusinessPartnerImageURL", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Importance", - "value": Object { - "EnumMember": "UI.ImportanceType/High", - "type": "EnumMember", - }, - }, - ], - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CityName", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "PostalCode", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Country", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "CityName", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Country", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "InternationalPhoneNumber", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "InternationalPhoneNumber", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "EmailAddress", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "EmailAddress", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Rating", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/Rating", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Rating", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/Rating", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Progress", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/Progress", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Progress", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/Progress", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Customer Reference", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Customer Reference", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Pricing Date", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.UI.v1.TextArrangement", "value": Object { - "String": "Pricing Date", - "type": "String", + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", }, }, ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_ShippingCondition/ShippingCondition_Text", + "type": "Path", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SC", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "SalesOrderManage", + "type": "String", + }, }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, + Object { + "name": "Label", + "value": Object { + "String": "Shipping Condition", + "type": "String", }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_ShippingCondition/ShippingCondition_Text", - "type": "Path", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "SalesOrderManage", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Shipping Condition", - "type": "String", + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ShippingCondition", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ShippingCondition", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SoldToParty", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SoldToParty", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", + "name": "ValueListProperty", + "value": Object { + "String": "SoldToParty", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterIn", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Complete Delivery", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms", - "type": "String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Complete Delivery", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_IncotermsClassification/IncotermsClassification_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "IncotermsClassification", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_IncotermsClassification/IncotermsClassification_Text", - "type": "Path", + Object { + "name": "Label", + "value": Object { + "String": "Incoterms Classification", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "IncotermsClassification", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Incoterms Classification", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "IncotermsClassification", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsClassification", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "IncotermsClassification", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsClassification_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsClassification", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsClassification_Text", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "LocationIsMandatory", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "LocationIsMandatory", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Version", - "type": "String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Version", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_IncotermsVersion/IncotermsVersion_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "IncotermsVersion", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_IncotermsVersion/IncotermsVersion_Text", - "type": "Path", + Object { + "name": "Label", + "value": Object { + "String": "Incoterms Version", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "IncotermsVersion", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Incoterms Version", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "IncotermsVersion", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsVersion", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "IncotermsVersion", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IncotermsVersion_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsVersion", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "IncotermsVersion_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "fieldControlType", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "fieldControlType", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "Path": "fieldControlType", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Incoterms Version 1", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "Path": "fieldControlType", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Version 1", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Incoterms Location 2", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Terms of Payment", + "type": "String", + }, }, Object { "annotations": Array [ Object { "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", + "term": "com.sap.vocabularies.UI.v1.TextArrangement", "value": Object { - "String": "Incoterms Location 2", - "type": "String", + "EnumMember": "UI.TextArrangementType/TextFirst", + "type": "EnumMember", }, }, ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_CustomerPaymentTerms/CustomerPaymentTerms_Text", + "type": "Path", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Terms of Payment", - "type": "String", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "CustomerPaymentTerms", + "type": "String", + }, }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, + Object { + "name": "Label", + "value": Object { + "String": "Customer Payment Terms", + "type": "String", }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_CustomerPaymentTerms/CustomerPaymentTerms_Text", - "type": "Path", }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "CustomerPaymentTerms", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Customer Payment Terms", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "CustomerPaymentTerms", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerPaymentTerms", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "CustomerPaymentTerms", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CustomerPaymentTerms_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "CustomerPaymentTerms", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "CustomerPaymentTerms_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Net Amount", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Computed", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Measures.V1.ISOCurrency", - "value": Object { - "Path": "TransactionCurrency", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Curr.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Document Currency", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "SD document currency", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Amount", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Status", - "type": "String", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "TransactionCurrency", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Curr.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Document Currency", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "SD document currency", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Status", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "_OverallSDProcessStatus/OverallSDProcessStatus_Text", + "type": "Path", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "_OverallSDProcessStatus/OverallSDProcessStatus_Text", - "type": "Path", + Object { + "name": "Label", + "value": Object { + "String": "Overall SD Process Status", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "OverallSDProcessStatus", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Overall SD Process Status", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "OverallSDProcessStatus", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "OverallSDProcessStatus", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "OverallSDProcessStatus_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Last Change Date", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Document Date", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Document Date", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Document Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Document Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "type": "Null", + }, }, + ], + "target": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "editActionIsEnabled", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "editActionIsDisabled", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, + ], + "target": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsActionCritical", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OPAvailableTrueAction(com.c_salesordermanage_sd.SalesOrderManage)", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/isVerified", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OPAvailableFalseAction(com.c_salesordermanage_sd.SalesOrderManage)", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "type": "Null", - }, - }, - ], - "target": "com.c_salesordermanage_sd.OPAvailableNullAction(com.c_salesordermanage_sd.SalesOrderManage)", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Type", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "C_NotLockedSalesOrderTypeVH", + "type": "String", + }, + }, + Object { + "name": "Label", + "value": Object { + "String": "Sales Order Types", + "type": "String", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "PropertyPath": "editActionIsEnabled", - "type": "PropertyPath", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrderType", + "type": "PropertyPath", + }, }, Object { - "PropertyPath": "editActionIsDisabled", - "type": "PropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrderType", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrderType_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "SalesDocumentTypeLangDepdnt", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.c_salesordermanage_sd.EnableEditAction(com.c_salesordermanage_sd.SalesOrderManage)", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsActionCritical", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/isVerified", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_SalesOrganization", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Type", - "type": "String", + Object { + "name": "Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "C_NotLockedSalesOrderTypeVH", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Order Types", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrderType", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrderType_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "SalesOrganization", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesDocumentTypeLangDepdnt", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization", + "type": "String", + }, }, ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.ParameterDefaultValue", - "value": Object { - "Path": "_it/SalesOrderType", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrderType", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_SalesOrganization", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sales Organization", - "type": "String", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganization_Text", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganizationCurrency", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "SalesOrganizationCurrency", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "CompanyCode", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "CompanyCode", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "IntercompanyBillingCustomer", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "IntercompanyBillingCustomer", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", - }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.ParameterDefaultValue", - "value": Object { - "String": "0002", - "type": "String", + ], + "type": "Collection", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/SalesOrganization", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dv", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Division", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_OrganizationDivision", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Division", - "type": "String", + Object { + "name": "Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_OrganizationDivision", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "SalesOrganization", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "OrganizationDivision", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "OrganizationDivision", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Division", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "ValueListProperty", + "value": Object { + "String": "Division", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "Division_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "Division_Text", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/OrganizationDivision", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DChl", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Distribution Channel", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_DistributionChannel", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", + Object { + "name": "Label", + "value": Object { + "String": "Sales Organization", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "I_DistributionChannel", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Distribution Channel", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "DistributionChannel", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "DistributionChannel", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "DistributionChannel", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "DistributionChannel_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "DistributionChannel", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "DistributionChannel_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.CreateWithSalesOrderType(com.c_salesordermanage_sd.SalesOrderManage)/DistributionChannel", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/_ShipToParty/isVerified", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/_ShipToParty/isVerified", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.FieldControl", - "value": Object { - "EnumMember": "Common.FieldControlType/Mandatory", - "type": "EnumMember", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Overall Status", - "type": "String", - }, - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.TextArrangement", - "value": Object { - "EnumMember": "UI.TextArrangementType/TextFirst", - "type": "EnumMember", - }, - }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "OverallSDProcessStatus_Text", - "type": "Path", - }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "OverallSDProcessStatus", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Overall SD Process Status", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "OverallSDProcessStatus", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", - }, - Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "OverallSDProcessStatus_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", - }, - ], - "type": "Collection", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Overall Status", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "TargetProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.ChangeOrderStatus(com.c_salesordermanage_sd.SalesOrderManage)/OverallSDProcessStatus", + ], + "type": "com.sap.vocabularies.Common.v1.SideEffectsType", + }, + "term": "com.sap.vocabularies.Common.v1.SideEffects", }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.SideEffectsType", - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "_it/_ShipToParty/isVerified", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", + "qualifier": undefined, + "term": "Org.OData.Core.V1.OperationAvailable", + "value": Object { + "Path": "_it/_ShipToParty/isVerified", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SC", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "CollectionPath", + "value": Object { + "String": "ShippingCondition", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", + Object { + "name": "Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, }, - }, - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "CollectionPath", - "value": Object { - "String": "ShippingCondition", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", - }, - }, - Object { - "name": "Parameters", - "value": Object { - "Collection": Array [ + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "propertyValues": Array [ - Object { - "name": "LocalDataProperty", - "value": Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", - }, - }, - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ShippingCondition", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "ShippingCondition", + "type": "PropertyPath", + }, }, Object { - "propertyValues": Array [ - Object { - "name": "ValueListProperty", - "value": Object { - "String": "ShippingCondition_Text", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + "name": "ValueListProperty", + "value": Object { + "String": "ShippingCondition", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "type": "com.sap.vocabularies.Common.v1.ValueListType", + Object { + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ShippingCondition_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.ValueList", - }, - ], - "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", + ], + "type": "com.sap.vocabularies.Common.v1.ValueListType", + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "com.c_salesordermanage_sd.FacetFormAction(com.c_salesordermanage_sd.SalesOrderManage)/ShippingCondition", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Types", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Types", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Order Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrderType_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Document Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Sales Document Type Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Type", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "C", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Indicator", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Sales document indicator (for display in TVAK only)", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "SalesOrderType_Text", + "type": "Path", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Req.", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Billing Request", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Order type for request for billing", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Document Type", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Sales Organization", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "SalesOrganization_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Sales Document Type Description", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Condition", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingCondition", + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "SC", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Conditions", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ShippingCondition_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "C", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Shipping Conditions Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Point", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingPoint", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Indicator", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ShPt", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Point", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Shipping Point / Receiving Point", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ShippingPoint_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Sales document indicator (for display in TVAK only)", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Req.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Billing Request", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Order type for request for billing", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Condition", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingCondition", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "SC", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Conditions", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "ShippingCondition_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Shipping Conditions Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Point", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingPoint", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "ShPt", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Point", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Shipping Point / Receiving Point", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "ShippingPoint_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Type", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "ST", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Shipping Type", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "ShippingType_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingType/ShippingType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Shipping Type Description", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Message", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.UnboundAction()/MessageText", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Unit of Measure", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "MU", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Internal UoM", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Unit of Measurement", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "UnitOfMeasure_Text", + "type": "Path", + }, + }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Measurement unit text", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "UoM Text", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Unit of Measurement Text (Maximum 30 Characters)", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dimen.", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dimension", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Dimension Key", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "ISO", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "ISO Code", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Type", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "ISO Code for Unit of Measurement", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ST", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Shipping Type", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "ShippingType_Text", - "type": "Path", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingType/ShippingType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "DeR", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Shipping Type Description", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", - }, - }, - ], - "target": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Decimal Rounding", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Message", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnboundAction()/MessageText", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Number of Decimal Places for Rounding", + "type": "String", + }, }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Unit of Measure", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Heading", + "value": Object { + "String": "Dec", + "type": "String", + }, }, Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "MU", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Internal UoM", - "type": "String", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Decimal Places", + "type": "String", + }, + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.QuickInfo", + "value": Object { + "String": "Number of Decimal Places for Number Display", + "type": "String", + }, + }, + ], + "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", + }, + ], + }, + "associationSets": Array [], + "associations": Array [], + "complexTypes": Array [], + "entityContainer": Object { + "_type": "EntityContainer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer", + "name": "EntityContainer", + }, + "entitySets": Array [ + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BusinessPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BusinessPartner", + "name": "BusinessPartner", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_MaterialBySlsOrgDistrChnl", + "name": "C_MaterialBySlsOrgDistrChnl", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_NotLockedSalesOrderTypeVH", + "name": "C_NotLockedSalesOrderTypeVH", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_ProductUnitsOfMeasureVH", + "name": "C_ProductUnitsOfMeasureVH", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Unit of Measurement", - "type": "String", + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Text", - "value": Object { - "Path": "UnitOfMeasure_Text", - "type": "Path", + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Measurement unit text", - "type": "String", + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "UoM Text", - "type": "String", + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Unit of Measurement Text (Maximum 30 Characters)", - "type": "String", + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.Immutable", - "value": Object { - "Bool": true, - "type": "Bool", + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dimen.", - "type": "String", + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Dimension", - "type": "String", + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Dimension Key", - "type": "String", + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "ISO", - "type": "String", + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, }, + "owner": [Circular], }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.IsUpperCase", - "value": Object { - "Bool": true, - "type": "Bool", + }, + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": [Circular], + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "ISO Code", - "type": "String", - }, + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.I_DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_DistributionChannel", + "name": "I_DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.I_OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_OrganizationDivision", + "name": "I_OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.I_SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_SalesOrganization", + "name": "I_SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": [Circular], + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "ISO Code for Unit of Measurement", - "type": "String", + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, }, }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "DeR", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Decimal Rounding", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Number of Decimal Places for Rounding", - "type": "String", + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", + "name": "SalesOrderManage", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CreditLimitDetails": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", + "name": "CreditLimitDetails", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_CustomerPurchaseOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", + "name": "CustomerPurchaseOrderType", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", + "name": "DeliveryBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_DistributionChannel": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", + "name": "DistributionChannel", + "navigationPropertyBinding": Object {}, + }, + "_HeaderBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_Item": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", + "name": "SalesOrderItem", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "_CustomerPaymentTerms": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", + "name": "CustomerPaymentTerms", + "navigationPropertyBinding": Object {}, + }, + "_DeliveryPriority": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", + "name": "DeliveryPriority", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsClassification": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", + "name": "IncotermsClassification", + "navigationPropertyBinding": Object {}, + }, + "_IncotermsVersion": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", + "name": "IncotermsVersion", + "navigationPropertyBinding": Object {}, + }, + "_ItemBillingBlockReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", + "name": "BillingBlockReason", + "navigationPropertyBinding": Object {}, + }, + "_ItemCategory": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", + "name": "SalesOrderItemCategory", + "navigationPropertyBinding": Object {}, + }, + "_Material": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Material", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", + "name": "Material", + "navigationPropertyBinding": Object { + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, }, }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", + }, + "_MaterialGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", + "name": "MaterialGroup", + "navigationPropertyBinding": Object {}, + }, + "_RequestedQuantityUnit": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_ShippingPoint": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "owner": [Circular], }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Heading", - "value": Object { - "String": "Dec", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.Label", - "value": Object { - "String": "Decimal Places", - "type": "String", - }, - }, - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.Common.v1.QuickInfo", - "value": Object { - "String": "Number of Decimal Places for Number Display", - "type": "String", - }, - }, - ], - "target": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", + }, + "_OrganizationDivision": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", + "name": "OrganizationDivision", + "navigationPropertyBinding": Object {}, + }, + "_OverallBillingBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", + "name": "OverallBillingBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallDeliveryBlockStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", + "name": "OverallDeliveryBlockStatus", + "navigationPropertyBinding": Object {}, + }, + "_OverallSDProcessStatus": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", + "name": "OverallSDProcessStatus", + "navigationPropertyBinding": Object {}, + }, + "_Partner": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + "name": "HeaderPartner", + "navigationPropertyBinding": Object { + "SiblingEntity": [Circular], + "owner": [Circular], }, - ], - }, - "associationSets": Array [], - "associations": Array [], - "complexTypes": Array [], - "entityContainer": Object { - "_type": "EntityContainer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer", - "name": "EntityContainer", + }, + "_SDDocumentReason": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", + "name": "SDDocumentReason", + "navigationPropertyBinding": Object {}, + }, + "_SalesDistrict": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", + "name": "SalesDistrict", + "navigationPropertyBinding": Object {}, + }, + "_SalesGroup": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", + "name": "SalesGroup", + "navigationPropertyBinding": Object {}, + }, + "_SalesOffice": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", + "name": "SalesOffice", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrderType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + "_SalesOrganization": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + "_ShipToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", + "name": "HeaderShipToParty", + "navigationPropertyBinding": Object { + "_ShipToPartyVH": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "_ShippingCondition": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + "_ShippingType": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + "_SoldToParty": Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.Customer", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", + "name": "Customer", + "navigationPropertyBinding": Object {}, + }, }, - "entitySets": Array [ + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", + "name": "SalesOrderType", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", + "name": "SalesOrganization", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", + "name": "ShippingCondition", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", + "name": "ShippingPoint", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.ShippingType", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", + "name": "ShippingType", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", + "name": "UnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + ], + "entityTypes": Array [ + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + "maxLength": 2, + "name": "BillingBlockReason", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", + "maxLength": 20, + "name": "BillingBlockReason_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", + "maxLength": 2, + "name": "BillingBlockReason", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "BillingBlockReason", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", + "maxLength": 2, + "name": "PartnerFunction", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/BusinessPartner", + "maxLength": 10, + "name": "BusinessPartner", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/FullName", + "maxLength": 80, + "name": "FullName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PhoneNumber", + "maxLength": 30, + "name": "PhoneNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/MobilePhoneNumber", + "maxLength": 30, + "name": "MobilePhoneNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/EmailAddress", + "maxLength": 241, + "name": "EmailAddress", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", + "maxLength": 2, + "name": "PartnerFunction", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "BusinessPartner", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + "maxLength": 40, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", + "maxLength": 40, + "name": "MaterialName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", + "maxLength": 40, + "name": "RequestedQuantityUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", + "maxLength": 40, + "name": "MaterialBaseUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", + "maxLength": 40, + "name": "SalesMeasureUnit", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", + "maxLength": 40, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "C_MaterialBySlsOrgDistrChnl", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", + "maxLength": 20, + "name": "SalesOrderType_Text", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", + "maxLength": 4, + "name": "SalesDocumentTypeLangDepdnt", + "nullable": false, + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "C_NotLockedSalesOrderTypeVH", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + "maxLength": 18, + "name": "Product", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + "maxLength": 40, + "name": "AlternativeUnit", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", + "maxLength": 30, + "name": "AlternativeUnit_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", + "name": "QuantityNumerator", + "precision": 5, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", + "name": "QuantityDenominator", + "precision": 5, + "scale": 0, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", + "maxLength": 18, + "name": "Product", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", + "maxLength": 40, + "name": "AlternativeUnit", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "C_ProductUnitsOfMeasureVH", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", + "name": "CustomerCreditExposureAmount", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", + "name": "CustomerCreditExposureAmountHidden", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", + "name": "CustomerCreditForecast", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount_text", + "maxLength": 15, + "name": "CustomerCreditExposureAmount_text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", + "name": "CustomerCreditLimitAmount", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/MaximumCreditValue", + "name": "MaximumCreditValue", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount_text", + "maxLength": 15, + "name": "CustomerCreditLimitAmount_text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/TransactionCurrency", + "maxLength": 5, + "name": "TransactionCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerIsAboveThreshold", + "name": "CustomerIsAboveThreshold", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeLow", + "name": "ToleranceRangeLow", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeHigh", + "name": "ToleranceRangeHigh", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeLow", + "name": "DeviationRangeLow", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeHigh", + "name": "DeviationRangeHigh", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeLow", + "name": "AcceptanceRangeLow", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeHigh", + "name": "AcceptanceRangeHigh", + "precision": 23, + "scale": 2, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", + "maxLength": 10, + "name": "SalesDocument", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "CreditLimitDetails", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", + "maxLength": 10, + "name": "Customer", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CustomerName", + "maxLength": 80, + "name": "CustomerName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", + "maxLength": 35, + "name": "OrganizationBPName1", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", + "maxLength": 35, + "name": "OrganizationBPName2", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", + "name": "BusinessPartnerImageURL", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CityName", + "maxLength": 40, + "name": "CityName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", + "maxLength": 30, + "name": "InternationalPhoneNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/EmailAddress", + "maxLength": 241, + "name": "EmailAddress", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", + "maxLength": 10, + "name": "Customer", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Customer", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", + "maxLength": 30, + "name": "CustomerPaymentTerms_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "CustomerPaymentTerms", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", + "maxLength": 4, + "name": "CustomerPurchaseOrderType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", + "maxLength": 20, + "name": "CustomerPurchaseOrderType_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", + "maxLength": 4, + "name": "CustomerPurchaseOrderType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "CustomerPurchaseOrderType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", + "maxLength": 2, + "name": "DeliveryBlockReason", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", + "maxLength": 20, + "name": "DeliveryBlockReason_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", + "name": "DeliveryDueListBlock", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", + "maxLength": 2, + "name": "DeliveryBlockReason", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "DeliveryBlockReason", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", + "maxLength": 2, + "name": "DeliveryPriority", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", + "maxLength": 20, + "name": "DeliveryPriority_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", + "maxLength": 2, + "name": "DeliveryPriority", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "DeliveryPriority", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", + "maxLength": 20, + "name": "DistributionChannel_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "DistributionChannel", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", + "name": "DraftUUID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreationDateTime", + "name": "CreationDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreatedByUser", + "maxLength": 256, + "name": "CreatedByUser", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsCreatedByMe", + "name": "DraftIsCreatedByMe", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangeDateTime", + "name": "LastChangeDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangedByUser", + "maxLength": 256, + "name": "LastChangedByUser", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/InProcessByUser", + "maxLength": 256, + "name": "InProcessByUser", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsProcessedByMe", + "name": "DraftIsProcessedByMe", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", + "name": "DraftUUID", + "nullable": false, + "type": "Edm.Guid", + }, + ], + "name": "DraftAdministrativeData", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", + "maxLength": 2, + "name": "PartnerFunction", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", + "maxLength": 10, + "name": "BusinessPartner", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Rating", + "name": "Rating", + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Progress", + "name": "Progress", + "precision": 4, + "scale": 1, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SemanticObject", + "maxLength": 15, + "name": "SemanticObject", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/AddressID", + "maxLength": 10, + "name": "AddressID", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/FullName", + "maxLength": 80, + "name": "FullName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", + "maxLength": 30, + "name": "PhoneNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/CityName", + "maxLength": 40, + "name": "CityName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner_ID", + "name": "owner_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", + "name": "HasActiveEntity", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", + "name": "HasDraftEntity", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "HeaderPartner", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner", + "isCollection": false, + "name": "owner", + "partner": "_Partner", + "referentialConstraint": Array [ + Object { + "sourceProperty": "owner_ID", + "sourceTypeName": "HeaderPartner", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", + "maxLength": 10, + "name": "BusinessPartner", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", + "maxLength": 40, + "name": "CityName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", + "name": "isHidden", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/Country", + "maxLength": 3, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", + "maxLength": 60, + "name": "StreetName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", + "maxLength": 10, + "name": "HouseNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "HeaderShipToParty", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/_ShipToPartyVH", + "isCollection": false, + "name": "_ShipToPartyVH", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "BusinessPartner", + "sourceTypeName": "HeaderShipToParty", + "targetProperty": "Customer", + "targetTypeName": "com.c_salesordermanage_sd.Customer", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Customer", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", + "maxLength": 20, + "name": "DistributionChannel_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_DistributionChannel", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", + "maxLength": 20, + "name": "Division_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_OrganizationDivision", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", + "maxLength": 20, + "name": "SalesOrganization_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", + "maxLength": 5, + "name": "SalesOrganizationCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", + "maxLength": 4, + "name": "CompanyCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", + "maxLength": 10, + "name": "IntercompanyBillingCustomer", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_SalesOrganization", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", + "maxLength": 30, + "name": "IncotermsClassification_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", + "name": "LocationIsMandatory", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "IncotermsClassification", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", + "maxLength": 30, + "name": "IncotermsVersion_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "IncotermsVersion", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", + "maxLength": 18, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/isHidden", + "name": "isHidden", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material_Text", + "maxLength": 40, + "name": "Material_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup_MaterialGroup", + "maxLength": 9, + "name": "_MaterialGroup_MaterialGroup", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.Material", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", + "maxLength": 18, + "name": "Material", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Material", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup", + "isCollection": false, + "name": "_MaterialGroup", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_MaterialGroup_MaterialGroup", + "sourceTypeName": "Material", + "targetProperty": "MaterialGroup", + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + "maxLength": 9, + "name": "MaterialGroup", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", + "maxLength": 20, + "name": "MaterialGroup_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", + "maxLength": 9, + "name": "MaterialGroup", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "MaterialGroup", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", + "maxLength": 20, + "name": "Division_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", + "maxLength": 2, + "name": "Division", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OrganizationDivision", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + "maxLength": 1, + "name": "OverallBillingBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", + "maxLength": 20, + "name": "OverallBillingBlockStatus_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", + "maxLength": 1, + "name": "OverallBillingBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OverallBillingBlockStatus", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "OverallDeliveryBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", + "maxLength": 20, + "name": "OverallDeliveryBlockStatus_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "OverallDeliveryBlockStatus", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OverallDeliveryBlockStatus", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + "maxLength": 1, + "name": "OverallSDProcessStatus", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", + "maxLength": 20, + "name": "OverallSDProcessStatus_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", + "maxLength": 1, + "name": "OverallSDProcessStatus", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "OverallSDProcessStatus", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + "maxLength": 3, + "name": "SDDocumentReason", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", + "maxLength": 40, + "name": "SDDocumentReason_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", + "maxLength": 3, + "name": "SDDocumentReason", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SDDocumentReason", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + "maxLength": 6, + "name": "SalesDistrict", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", + "maxLength": 20, + "name": "SalesDistrict_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", + "maxLength": 6, + "name": "SalesDistrict", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesDistrict", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", + "maxLength": 3, + "name": "SalesGroup", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", + "maxLength": 20, + "name": "SalesGroup_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", + "maxLength": 3, + "name": "SalesGroup", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesGroup", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", + "maxLength": 4, + "name": "SalesOffice", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", + "maxLength": 20, + "name": "SalesOffice_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", + "maxLength": 4, + "name": "SalesOffice", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOffice", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", + "maxLength": 6, + "name": "SalesOrderItem", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", + "maxLength": 6, + "name": "HigherLevelItem", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", + "maxLength": 4, + "name": "SalesOrderItemCategory", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemText", + "maxLength": 40, + "name": "SalesOrderItemText", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", + "name": "fieldControlType_item", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Material", + "maxLength": 40, + "name": "Material", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PurchaseOrderByCustomer", + "maxLength": 35, + "name": "PurchaseOrderByCustomer", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", + "name": "RequestedDeliveryDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ConfirmedDeliveryDate", + "name": "ConfirmedDeliveryDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", + "name": "RequestedQuantity", + "precision": 15, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", + "maxLength": 40, + "name": "RequestedQuantityUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", + "name": "PricingDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/MaterialGroup", + "maxLength": 9, + "name": "MaterialGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Batch", + "maxLength": 10, + "name": "Batch", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Plant", + "maxLength": 4, + "name": "Plant", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/StorageLocation", + "maxLength": 4, + "name": "StorageLocation", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingPoint", + "maxLength": 4, + "name": "ShippingPoint", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeliveryPriority", + "maxLength": 2, + "name": "DeliveryPriority", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation1", + "maxLength": 70, + "name": "IncotermsLocation1", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation2", + "maxLength": 70, + "name": "IncotermsLocation2", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ItemBillingBlockReason", + "maxLength": 2, + "name": "ItemBillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TransactionCurrency", + "maxLength": 5, + "name": "TransactionCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", + "name": "NetAmount", + "precision": 15, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", + "name": "NetAmountHidden", + "precision": 15, + "scale": 10, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount_text", + "maxLength": 10, + "name": "NetAmount_text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", + "name": "TargetAmount", + "precision": 15, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeLow", + "name": "ToleranceRangeLow", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeHigh", + "name": "ToleranceRangeHigh", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeLow", + "name": "DeviationRangeLow", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeHigh", + "name": "DeviationRangeHigh", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeLow", + "name": "AcceptanceRangeLow", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeHigh", + "name": "AcceptanceRangeHigh", + "precision": 23, + "scale": 0, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Criticality", + "name": "Criticality", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms_CustomerPaymentTerms", + "maxLength": 4, + "name": "_CustomerPaymentTerms_CustomerPaymentTerms", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority_DeliveryPriority", + "maxLength": 2, + "name": "_DeliveryPriority_DeliveryPriority", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification_IncotermsClassification", + "maxLength": 3, + "name": "_IncotermsClassification_IncotermsClassification", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion_IncotermsVersion", + "maxLength": 4, + "name": "_IncotermsVersion_IncotermsVersion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason_BillingBlockReason", + "maxLength": 2, + "name": "_ItemBillingBlockReason_BillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory_SalesDocumentItemCategory", + "maxLength": 4, + "name": "_ItemCategory_SalesDocumentItemCategory", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup_MaterialGroup", + "maxLength": 9, + "name": "_MaterialGroup_MaterialGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder_SalesOrderType", + "maxLength": 4, + "name": "_SalesOrder_SalesOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint_ShippingPoint", + "maxLength": 4, + "name": "_ShippingPoint_ShippingPoint", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType_ShippingType", + "maxLength": 2, + "name": "_ShippingType_ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner_ID", + "name": "owner_ID", + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", + "name": "HasActiveEntity", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", + "name": "HasDraftEntity", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "SalesOrderItem", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms", + "isCollection": false, + "name": "_CustomerPaymentTerms", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_CustomerPaymentTerms_CustomerPaymentTerms", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "CustomerPaymentTerms", + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority", + "isCollection": false, + "name": "_DeliveryPriority", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_DeliveryPriority_DeliveryPriority", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "DeliveryPriority", + "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification", + "isCollection": false, + "name": "_IncotermsClassification", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_IncotermsClassification_IncotermsClassification", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "IncotermsClassification", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion", + "isCollection": false, + "name": "_IncotermsVersion", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_IncotermsVersion_IncotermsVersion", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "IncotermsVersion", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason", + "isCollection": false, + "name": "_ItemBillingBlockReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ItemBillingBlockReason_BillingBlockReason", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "BillingBlockReason", + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory", + "isCollection": false, + "name": "_ItemCategory", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ItemCategory_SalesDocumentItemCategory", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "SalesDocumentItemCategory", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_Material", + "isCollection": false, + "name": "_Material", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "Material", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "Material", + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup", + "isCollection": false, + "name": "_MaterialGroup", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_MaterialGroup_MaterialGroup", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "MaterialGroup", + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_RequestedQuantityUnit", + "isCollection": false, + "name": "_RequestedQuantityUnit", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "RequestedQuantityUnit", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "UnitOfMeasure", + "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder", + "isCollection": false, + "name": "_SalesOrder", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesOrder_SalesOrderType", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "SalesOrderType", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint", + "isCollection": false, + "name": "_ShippingPoint", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ShippingPoint_ShippingPoint", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "ShippingPoint", + "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType", + "isCollection": false, + "name": "_ShippingType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ShippingType_ShippingType", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "ShippingType", + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner", + "isCollection": false, + "name": "owner", + "partner": "_Item", + "referentialConstraint": Array [ + Object { + "sourceProperty": "owner_ID", + "sourceTypeName": "SalesOrderItem", + "targetProperty": "ID", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", + "maxLength": 4, + "name": "SalesDocumentItemCategory", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", + "maxLength": 20, + "name": "SalesDocumentItemCategory_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", + "name": "ScheduleLineIsAllowed", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", + "maxLength": 4, + "name": "SalesDocumentItemCategory", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOrderItemCategory", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", + "maxLength": 10, + "name": "SalesOrder", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", + "name": "Delivered", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", + "name": "ReturnInProcess", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", + "name": "ImageUrl", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", + "maxLength": 10, + "name": "SoldToParty", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Rating", + "name": "Rating", + "precision": 4, + "scale": 2, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Progress", + "name": "Progress", + "precision": 4, + "scale": 1, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", + "maxLength": 2, + "name": "DistributionChannel", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", + "maxLength": 2, + "name": "OrganizationDivision", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOffice", + "maxLength": 4, + "name": "SalesOffice", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesGroup", + "maxLength": 3, + "name": "SalesGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesDistrict", + "maxLength": 6, + "name": "SalesDistrict", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", + "maxLength": 35, + "name": "PurchaseOrderByCustomer", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderType", + "maxLength": 4, + "name": "CustomerPurchaseOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderDate", + "name": "CustomerPurchaseOrderDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SDDocumentReason", + "maxLength": 3, + "name": "SDDocumentReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", + "name": "PricingDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", + "maxLength": 2, + "name": "ShippingCondition", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", + "name": "CompleteDeliveryIsDefined", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", + "maxLength": 3, + "name": "IncotermsClassification", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", + "maxLength": 4, + "name": "IncotermsVersion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", + "name": "fieldControlType", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", + "maxLength": 70, + "name": "IncotermsLocation1", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", + "maxLength": 70, + "name": "IncotermsLocation2", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HeaderBillingBlockReason", + "maxLength": 2, + "name": "HeaderBillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockReason", + "maxLength": 2, + "name": "DeliveryBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", + "maxLength": 4, + "name": "CustomerPaymentTerms", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PaymentMethod", + "maxLength": 1, + "name": "PaymentMethod", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", + "name": "TotalNetAmount", + "precision": 15, + "scale": 10, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", + "maxLength": 5, + "name": "TransactionCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", + "maxLength": 1, + "name": "OverallSDProcessStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/StatusCriticality", + "name": "StatusCriticality", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "OverallDeliveryBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallBillingBlockStatus", + "maxLength": 1, + "name": "OverallBillingBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", + "name": "LastChangedDateTime", + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", + "name": "SalesOrderDate", + "type": "Edm.Date", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", + "maxLength": 20, + "name": "SalesOrderTypeName", + "type": "Edm.String", + }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockCriticality", + "maxLength": 1, + "name": "DeliveryBlockCriticality", + "type": "Edm.Binary", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BusinessPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BusinessPartner", - "name": "BusinessPartner", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/BillingBlockCriticality", + "maxLength": 1, + "name": "BillingBlockCriticality", + "type": "Edm.Binary", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_MaterialBySlsOrgDistrChnl", - "name": "C_MaterialBySlsOrgDistrChnl", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", + "maxLength": 40, + "name": "DescriptionFieldForOPACleanup", + "type": "Edm.String", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_NotLockedSalesOrderTypeVH", - "name": "C_NotLockedSalesOrderTypeVH", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/isVerified", + "name": "isVerified", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsEnabled", + "name": "editActionIsEnabled", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsDisabled", + "name": "editActionIsDisabled", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType_CustomerPurchaseOrderType", + "maxLength": 4, + "name": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason_DeliveryBlockReason", + "maxLength": 2, + "name": "_DeliveryBlockReason_DeliveryBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel_DistributionChannel", + "maxLength": 2, + "name": "_DistributionChannel_DistributionChannel", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason_BillingBlockReason", + "maxLength": 2, + "name": "_HeaderBillingBlockReason_BillingBlockReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision_Division", + "maxLength": 2, + "name": "_OrganizationDivision_Division", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus_OverallBillingBlockStatus", + "maxLength": 1, + "name": "_OverallBillingBlockStatus_OverallBillingBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", + "maxLength": 1, + "name": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict_SalesDistrict", + "maxLength": 6, + "name": "_SalesDistrict_SalesDistrict", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup_SalesGroup", + "maxLength": 3, + "name": "_SalesGroup_SalesGroup", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice_SalesOffice", + "maxLength": 4, + "name": "_SalesOffice_SalesOffice", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization_SalesOrganization", + "maxLength": 4, + "name": "_SalesOrganization_SalesOrganization", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason_SDDocumentReason", + "maxLength": 3, + "name": "_SDDocumentReason_SDDocumentReason", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType_ShippingType", + "maxLength": 2, + "name": "_ShippingType_ShippingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", + "name": "HasActiveEntity", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", + "name": "HasDraftEntity", + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Guid", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", + "name": "IsActiveEntity", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "SalesOrderManage", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPaymentTerms", + "isCollection": false, + "name": "_CustomerPaymentTerms", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "CustomerPaymentTerms", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "CustomerPaymentTerms", + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType", + "isCollection": false, + "name": "_CustomerPurchaseOrderType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "CustomerPurchaseOrderType", + "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason", + "isCollection": false, + "name": "_DeliveryBlockReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_DeliveryBlockReason_DeliveryBlockReason", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "DeliveryBlockReason", + "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel", + "isCollection": false, + "name": "_DistributionChannel", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_DistributionChannel_DistributionChannel", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "DistributionChannel", + "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason", + "isCollection": false, + "name": "_HeaderBillingBlockReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_HeaderBillingBlockReason_BillingBlockReason", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "BillingBlockReason", + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsClassification", + "isCollection": false, + "name": "_IncotermsClassification", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "IncotermsClassification", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "IncotermsClassification", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsVersion", + "isCollection": false, + "name": "_IncotermsVersion", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "IncotermsVersion", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "IncotermsVersion", + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Item", + "isCollection": true, + "name": "_Item", + "partner": "owner", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision", + "isCollection": false, + "name": "_OrganizationDivision", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_OrganizationDivision_Division", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "Division", + "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus", + "isCollection": false, + "name": "_OverallBillingBlockStatus", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_OverallBillingBlockStatus_OverallBillingBlockStatus", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "OverallBillingBlockStatus", + "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus", + "isCollection": false, + "name": "_OverallDeliveryBlockStatus", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "OverallDeliveryBlockStatus", + "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallSDProcessStatus", + "isCollection": false, + "name": "_OverallSDProcessStatus", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "OverallSDProcessStatus", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "OverallSDProcessStatus", + "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Partner", + "isCollection": true, + "name": "_Partner", + "partner": "owner", + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CreditLimitDetails", + "isCollection": false, + "name": "_CreditLimitDetails", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrder", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesDocument", + "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict", + "isCollection": false, + "name": "_SalesDistrict", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesDistrict_SalesDistrict", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesDistrict", + "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup", + "isCollection": false, + "name": "_SalesGroup", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesGroup_SalesGroup", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesGroup", + "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice", + "isCollection": false, + "name": "_SalesOffice", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesOffice_SalesOffice", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOffice", + "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrderType", + "isCollection": false, + "name": "_SalesOrderType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrderType", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOrderType", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization", + "isCollection": false, + "name": "_SalesOrganization", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SalesOrganization_SalesOrganization", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOrganization", + "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason", + "isCollection": false, + "name": "_SDDocumentReason", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_SDDocumentReason_SDDocumentReason", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SDDocumentReason", + "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingCondition", + "isCollection": false, + "name": "_ShippingCondition", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "ShippingCondition", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "ShippingCondition", + "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType", + "isCollection": false, + "name": "_ShippingType", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "_ShippingType_ShippingType", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "ShippingType", + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShipToParty", + "isCollection": false, + "name": "_ShipToParty", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrder", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "SalesOrder", + "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SoldToParty", + "isCollection": false, + "name": "_SoldToParty", + "partner": undefined, + "referentialConstraint": Array [ + Object { + "sourceProperty": "SoldToParty", + "sourceTypeName": "SalesOrderManage", + "targetProperty": "Customer", + "targetTypeName": "com.c_salesordermanage_sd.Customer", + }, + ], + "targetTypeName": "com.c_salesordermanage_sd.Customer", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": true, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DraftAdministrativeData", + "isCollection": false, + "name": "DraftAdministrativeData", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "_type": "NavigationProperty", + "containsTarget": false, + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SiblingEntity", + "isCollection": false, + "name": "SiblingEntity", + "partner": undefined, + "referentialConstraint": Array [], + "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", + "maxLength": 20, + "name": "SalesOrderType_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", + "maxLength": 1, + "name": "SalesOrderProcessingType", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", + "maxLength": 4, + "name": "OrderTypeForBillingRequest", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", + "maxLength": 4, + "name": "SalesOrderType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOrderType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization_Text", + "maxLength": 20, + "name": "SalesOrganization_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganizationCurrency", + "maxLength": 5, + "name": "SalesOrganizationCurrency", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/CompanyCode", + "maxLength": 4, + "name": "CompanyCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/IntercompanyBillingCustomer", + "maxLength": 10, + "name": "IntercompanyBillingCustomer", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", + "maxLength": 4, + "name": "SalesOrganization", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "SalesOrganization", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", + "maxLength": 2, + "name": "ShippingCondition", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", + "maxLength": 20, + "name": "ShippingCondition_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", + "maxLength": 2, + "name": "ShippingCondition", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "ShippingCondition", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", + "maxLength": 4, + "name": "ShippingPoint", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", + "maxLength": 30, + "name": "ShippingPoint_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", + "maxLength": 4, + "name": "ShippingPoint", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "ShippingPoint", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", + "maxLength": 20, + "name": "ShippingType_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", + "maxLength": 2, + "name": "ShippingType", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "ShippingType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", + "maxLength": 40, + "name": "UnitOfMeasure", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", + "maxLength": 30, + "name": "UnitOfMeasure_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", + "maxLength": 6, + "name": "UnitOfMeasureDimension", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", + "maxLength": 3, + "name": "UnitOfMeasureISOCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", + "name": "UnitOfMeasureNumberOfDecimals", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", + "name": "UnitOfMeasureDspNmbrOfDcmls", + "type": "Edm.Int32", + }, + ], + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", + "maxLength": 40, + "name": "UnitOfMeasure", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "UnitOfMeasure", + "navigationProperties": Array [], + }, + ], + "namespace": "com.c_salesordermanage_sd", + "singletons": Array [], + "typeDefinitions": Array [], + }, + "version": "4.0", +} +`; + +exports[`Parser can parse an v3 edmx file 1`] = ` +RawMetadataInstance { + "identification": "serviceFile", + "references": Array [], + "schema": Object { + "actions": Array [], + "annotations": Object { + "serviceFile": Array [], + }, + "associationSets": Array [ + Object { + "association": "NorthwindModel.FK_Products_Categories", + "associationEnd": Array [ + Object { + "entitySet": "Categories", + "role": "Categories", + }, + Object { + "entitySet": "Products", + "role": "Products", + }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Products_Categories", + "name": "FK_Products_Categories", + }, + Object { + "association": "NorthwindModel.CustomerCustomerDemo", + "associationEnd": Array [ + Object { + "entitySet": "CustomerDemographics", + "role": "CustomerDemographics", + }, + Object { + "entitySet": "Customers", + "role": "Customers", + }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.CustomerCustomerDemo", + "name": "CustomerCustomerDemo", + }, + Object { + "association": "NorthwindModel.FK_Orders_Customers", + "associationEnd": Array [ + Object { + "entitySet": "Customers", + "role": "Customers", + }, + Object { + "entitySet": "Orders", + "role": "Orders", + }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Orders_Customers", + "name": "FK_Orders_Customers", + }, + Object { + "association": "NorthwindModel.FK_Employees_Employees", + "associationEnd": Array [ + Object { + "entitySet": "Employees", + "role": "Employees", + }, + Object { + "entitySet": "Employees", + "role": "Employees1", + }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Employees_Employees", + "name": "FK_Employees_Employees", + }, + Object { + "association": "NorthwindModel.FK_Orders_Employees", + "associationEnd": Array [ + Object { + "entitySet": "Employees", + "role": "Employees", + }, + Object { + "entitySet": "Orders", + "role": "Orders", + }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Orders_Employees", + "name": "FK_Orders_Employees", + }, + Object { + "association": "NorthwindModel.EmployeeTerritories", + "associationEnd": Array [ + Object { + "entitySet": "Employees", + "role": "Employees", + }, + Object { + "entitySet": "Territories", + "role": "Territories", + }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.EmployeeTerritories", + "name": "EmployeeTerritories", + }, + Object { + "association": "NorthwindModel.FK_Order_Details_Orders", + "associationEnd": Array [ + Object { + "entitySet": "Order_Details", + "role": "Order_Details", + }, + Object { + "entitySet": "Orders", + "role": "Orders", + }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Order_Details_Orders", + "name": "FK_Order_Details_Orders", + }, + Object { + "association": "NorthwindModel.FK_Order_Details_Products", + "associationEnd": Array [ + Object { + "entitySet": "Order_Details", + "role": "Order_Details", + }, + Object { + "entitySet": "Products", + "role": "Products", + }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Order_Details_Products", + "name": "FK_Order_Details_Products", + }, + Object { + "association": "NorthwindModel.FK_Orders_Shippers", + "associationEnd": Array [ + Object { + "entitySet": "Orders", + "role": "Orders", + }, + Object { + "entitySet": "Shippers", + "role": "Shippers", + }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Orders_Shippers", + "name": "FK_Orders_Shippers", + }, + Object { + "association": "NorthwindModel.FK_Products_Suppliers", + "associationEnd": Array [ + Object { + "entitySet": "Products", + "role": "Products", + }, + Object { + "entitySet": "Suppliers", + "role": "Suppliers", }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Products_Suppliers", + "name": "FK_Products_Suppliers", + }, + Object { + "association": "NorthwindModel.FK_Territories_Region", + "associationEnd": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/C_ProductUnitsOfMeasureVH", - "name": "C_ProductUnitsOfMeasureVH", - "navigationPropertyBinding": Object {}, + "entitySet": "Regions", + "role": "Region", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, + "entitySet": "Territories", + "role": "Territories", }, + ], + "fullyQualifiedName": "ODataWebV3.Northwind.Model.FK_Territories_Region", + "name": "FK_Territories_Region", + }, + ], + "associations": Array [ + Object { + "associationEnd": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + "multiplicity": "0..1", + "role": "Categories", + "type": "NorthwindModel.Category", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, + "multiplicity": "*", + "role": "Products", + "type": "NorthwindModel.Product", }, + ], + "fullyQualifiedName": "NorthwindModel.FK_Products_Categories", + "name": "FK_Products_Categories", + "referentialConstraints": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, + "sourceProperty": "CategoryID", + "sourceTypeName": "NorthwindModel.Product", + "targetProperty": "CategoryID", + "targetTypeName": "NorthwindModel.Category", }, + ], + }, + Object { + "associationEnd": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, + "multiplicity": "*", + "role": "Customers", + "type": "NorthwindModel.Customer", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, + "multiplicity": "*", + "role": "CustomerDemographics", + "type": "NorthwindModel.CustomerDemographic", }, + ], + "fullyQualifiedName": "NorthwindModel.CustomerCustomerDemo", + "name": "CustomerCustomerDemo", + "referentialConstraints": Array [], + }, + Object { + "associationEnd": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, + "multiplicity": "0..1", + "role": "Customers", + "type": "NorthwindModel.Customer", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "owner": [Circular], - }, - }, - }, - }, - }, - }, - "_MaterialDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialdetail": [Circular], - }, - }, - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": [Circular], - }, - }, - }, - }, - "owner": [Circular], - }, - }, - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": [Circular], - }, - }, - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": [Circular], - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - }, + "multiplicity": "*", + "role": "Orders", + "type": "NorthwindModel.Order", }, + ], + "fullyQualifiedName": "NorthwindModel.FK_Orders_Customers", + "name": "FK_Orders_Customers", + "referentialConstraints": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, + "sourceProperty": "CustomerID", + "sourceTypeName": "NorthwindModel.Order", + "targetProperty": "CustomerID", + "targetTypeName": "NorthwindModel.Customer", }, + ], + }, + Object { + "associationEnd": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.I_DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_DistributionChannel", - "name": "I_DistributionChannel", - "navigationPropertyBinding": Object {}, + "multiplicity": "0..1", + "role": "Employees", + "type": "NorthwindModel.Employee", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.I_OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_OrganizationDivision", - "name": "I_OrganizationDivision", - "navigationPropertyBinding": Object {}, + "multiplicity": "*", + "role": "Employees1", + "type": "NorthwindModel.Employee", }, + ], + "fullyQualifiedName": "NorthwindModel.FK_Employees_Employees", + "name": "FK_Employees_Employees", + "referentialConstraints": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.I_SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/I_SalesOrganization", - "name": "I_SalesOrganization", - "navigationPropertyBinding": Object {}, + "sourceProperty": "ReportsTo", + "sourceTypeName": "NorthwindModel.Employee", + "targetProperty": "EmployeeID", + "targetTypeName": "NorthwindModel.Employee", }, + ], + }, + Object { + "associationEnd": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, + "multiplicity": "0..1", + "role": "Employees", + "type": "NorthwindModel.Employee", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, + "multiplicity": "*", + "role": "Orders", + "type": "NorthwindModel.Order", }, + ], + "fullyQualifiedName": "NorthwindModel.FK_Orders_Employees", + "name": "FK_Orders_Employees", + "referentialConstraints": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": [Circular], - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, - }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - }, - }, - }, - }, - }, - }, - }, + "sourceProperty": "EmployeeID", + "sourceTypeName": "NorthwindModel.Order", + "targetProperty": "EmployeeID", + "targetTypeName": "NorthwindModel.Employee", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "*", + "role": "Territories", + "type": "NorthwindModel.Territory", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, + "multiplicity": "*", + "role": "Employees", + "type": "NorthwindModel.Employee", }, + ], + "fullyQualifiedName": "NorthwindModel.EmployeeTerritories", + "name": "EmployeeTerritories", + "referentialConstraints": Array [], + }, + Object { + "associationEnd": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, + "multiplicity": "1", + "role": "Orders", + "type": "NorthwindModel.Order", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialdetail": [Circular], - }, - }, - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": [Circular], - }, - }, - }, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": [Circular], - }, - }, - }, - }, - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, - }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - }, - }, - }, + "multiplicity": "*", + "role": "Order_Details", + "type": "NorthwindModel.Order_Detail", }, + ], + "fullyQualifiedName": "NorthwindModel.FK_Order_Details_Orders", + "name": "FK_Order_Details_Orders", + "referentialConstraints": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + "sourceProperty": "OrderID", + "sourceTypeName": "NorthwindModel.Order", + "targetProperty": "OrderID", + "targetTypeName": "NorthwindModel.Order_Detail", }, + ], + }, + Object { + "associationEnd": Array [ Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialdetail": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, - }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - }, - }, - }, - }, - }, + "multiplicity": "1", + "role": "Products", + "type": "NorthwindModel.Product", + }, + Object { + "multiplicity": "*", + "role": "Order_Details", + "type": "NorthwindModel.Order_Detail", + }, + ], + "fullyQualifiedName": "NorthwindModel.FK_Order_Details_Products", + "name": "FK_Order_Details_Products", + "referentialConstraints": Array [ + Object { + "sourceProperty": "ProductID", + "sourceTypeName": "NorthwindModel.Product", + "targetProperty": "ProductID", + "targetTypeName": "NorthwindModel.Order_Detail", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "0..1", + "role": "Shippers", + "type": "NorthwindModel.Shipper", + }, + Object { + "multiplicity": "*", + "role": "Orders", + "type": "NorthwindModel.Order", + }, + ], + "fullyQualifiedName": "NorthwindModel.FK_Orders_Shippers", + "name": "FK_Orders_Shippers", + "referentialConstraints": Array [ + Object { + "sourceProperty": "ShipVia", + "sourceTypeName": "NorthwindModel.Order", + "targetProperty": "ShipperID", + "targetTypeName": "NorthwindModel.Shipper", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "0..1", + "role": "Suppliers", + "type": "NorthwindModel.Supplier", + }, + Object { + "multiplicity": "*", + "role": "Products", + "type": "NorthwindModel.Product", + }, + ], + "fullyQualifiedName": "NorthwindModel.FK_Products_Suppliers", + "name": "FK_Products_Suppliers", + "referentialConstraints": Array [ + Object { + "sourceProperty": "SupplierID", + "sourceTypeName": "NorthwindModel.Product", + "targetProperty": "SupplierID", + "targetTypeName": "NorthwindModel.Supplier", }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "Region", + "type": "NorthwindModel.Region", + }, + Object { + "multiplicity": "*", + "role": "Territories", + "type": "NorthwindModel.Territory", + }, + ], + "fullyQualifiedName": "NorthwindModel.FK_Territories_Region", + "name": "FK_Territories_Region", + "referentialConstraints": Array [ Object { + "sourceProperty": "RegionID", + "sourceTypeName": "NorthwindModel.Region", + "targetProperty": "RegionID", + "targetTypeName": "NorthwindModel.Territory", + }, + ], + }, + ], + "complexTypes": Array [], + "entityContainer": Object { + "_type": "EntityContainer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities", + "name": "NorthwindEntities", + }, + "entitySets": Array [ + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", + "navigationPropertyBinding": Object { + "Products": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { + "Category": [Circular], + "Order_Details": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { + "Order": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": [Circular], - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": Object { + "Customer": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { + "CustomerDemographics": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", + "navigationPropertyBinding": Object { + "Customers": [Circular], + }, }, - "material": [Circular], - "owner": Object { + "Orders": [Circular], + }, + }, + "Employee": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", + "navigationPropertyBinding": Object { + "Orders": [Circular], + "Territories": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": [Circular], - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": Object { + "Employees": [Circular], + "Region": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, - }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, + "Territories": [Circular], }, }, }, }, }, }, + "Order_Details": [Circular], + "Shipper": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": [Circular], + }, + }, }, }, + "Product": [Circular], }, }, - "materialrating": Object { + "Supplier": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": [Circular], - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialdetail": Object { + "Products": [Circular], + }, + }, + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", + "navigationPropertyBinding": Object { + "Customers": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", + "navigationPropertyBinding": Object { + "CustomerDemographics": [Circular], + "Orders": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", + "navigationPropertyBinding": Object { + "Customer": [Circular], + "Employee": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": Object { + "Orders": [Circular], + "Territories": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", "navigationPropertyBinding": Object { - "_MaterialGroup": Object { + "Employees": [Circular], + "Region": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", + "navigationPropertyBinding": Object { + "Territories": [Circular], + }, }, - "_MaterialRatings": [Circular], }, }, - "owner": Object { + }, + }, + "Order_Details": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": [Circular], + "Product": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": Object { + "Category": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], + "Products": [Circular], }, }, - "_MaterialDetails": [Circular], - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "owner": Object { + "Order_Details": [Circular], + "Supplier": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, - }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, - }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, - }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, - }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, + "Products": [Circular], }, }, }, }, }, }, + "Shipper": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": [Circular], + }, + }, }, }, }, }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - Object { + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", + "navigationPropertyBinding": Object { + "CustomerDemographics": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", + "navigationPropertyBinding": Object { + "Customers": [Circular], + }, }, - Object { + "Orders": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": Object { + "Customer": [Circular], + "Employee": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { + "Orders": [Circular], + "Territories": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { + "Employees": [Circular], + "Region": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], + "Territories": [Circular], }, }, - "_Rating": Object { + }, + }, + }, + }, + "Order_Details": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": [Circular], + "Product": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", + "navigationPropertyBinding": Object { + "Category": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, }, - "material": [Circular], - "materialdetail": Object { + "Order_Details": [Circular], + "Supplier": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "owner": [Circular], + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", + "navigationPropertyBinding": Object { + "Products": [Circular], }, }, }, }, }, }, - "_MaterialDetails": Object { + "Shipper": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { + "Orders": [Circular], + }, + }, + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", + "navigationPropertyBinding": Object { + "Orders": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", + "navigationPropertyBinding": Object { + "Customer": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", + "navigationPropertyBinding": Object { + "CustomerDemographics": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", + "navigationPropertyBinding": Object { + "Customers": [Circular], + }, }, - "_MaterialRatings": Object { + "Orders": [Circular], + }, + }, + "Employee": [Circular], + "Order_Details": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": [Circular], + "Product": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { + "Category": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialrating": [Circular], + "Products": [Circular], }, }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { + "Order_Details": [Circular], + "Supplier": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], + "Products": [Circular], }, }, - "materialdetail": [Circular], }, }, - "_ModelYear": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, - }, - "_WarrantyYear": Object { + }, + }, + "Shipper": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": [Circular], + }, + }, + }, + }, + "Territories": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", + "navigationPropertyBinding": Object { + "Employees": [Circular], + "Region": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", + "navigationPropertyBinding": Object { + "Territories": [Circular], + }, + }, + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", + "navigationPropertyBinding": Object { + "Customer": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", + "navigationPropertyBinding": Object { + "CustomerDemographics": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", + "navigationPropertyBinding": Object { + "Customers": [Circular], + }, }, - "material": Object { + "Orders": [Circular], + }, + }, + "Employee": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", + "navigationPropertyBinding": Object { + "Orders": [Circular], + "Territories": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { + "Employees": [Circular], + "Region": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": [Circular], + "Territories": [Circular], }, }, }, }, - "owner": [Circular], }, }, - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { + "Order_Details": [Circular], + "Shipper": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": [Circular], + }, }, - "_SalesOrder": Object { + }, + }, + "Product": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", + "navigationPropertyBinding": Object { + "Category": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, }, - "_ShippingPoint": Object { + "Order_Details": [Circular], + "Supplier": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, }, - "_ShippingType": Object { + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", + "navigationPropertyBinding": Object { + "Customer": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", + "navigationPropertyBinding": Object { + "CustomerDemographics": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", + "navigationPropertyBinding": Object { + "Customers": [Circular], + }, }, - "owner": Object { + "Orders": [Circular], + }, + }, + "Employee": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", + "navigationPropertyBinding": Object { + "Orders": [Circular], + "Territories": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": [Circular], - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, - }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, - }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, - }, - "_Partner": Object { + "Employees": [Circular], + "Region": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], + "Territories": [Circular], }, }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, - }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, - }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, - }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrderType": Object { + }, + }, + }, + }, + "Order_Details": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": [Circular], + "Product": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", + "navigationPropertyBinding": Object { + "Category": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, }, - "_SalesOrganization": Object { + "Order_Details": [Circular], + "Supplier": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, }, - "_ShipToParty": Object { + }, + }, + }, + }, + "Shipper": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": [Circular], + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", + "navigationPropertyBinding": Object { + "Category": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, + }, + "Order_Details": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", + "navigationPropertyBinding": Object { + "Customer": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { + "CustomerDemographics": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", + "navigationPropertyBinding": Object { + "Customers": [Circular], + }, }, + "Orders": [Circular], }, }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { + "Employee": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", + "navigationPropertyBinding": Object { + "Orders": [Circular], + "Territories": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", + "navigationPropertyBinding": Object { + "Employees": [Circular], + "Region": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", + "navigationPropertyBinding": Object { + "Territories": [Circular], + }, + }, + }, + }, + }, }, - "_SoldToParty": Object { + "Order_Details": [Circular], + "Shipper": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": [Circular], + }, }, }, }, + "Product": [Circular], }, }, - Object { + "Supplier": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, }, - Object { + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", + "navigationPropertyBinding": Object { + "Territories": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderManage", - "name": "SalesOrderManage", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CreditLimitDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CreditLimitDetails", - "name": "CreditLimitDetails", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_CustomerPurchaseOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPurchaseOrderType", - "name": "CustomerPurchaseOrderType", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryBlockReason", - "name": "DeliveryBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_DistributionChannel": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DistributionChannel", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DistributionChannel", - "name": "DistributionChannel", - "navigationPropertyBinding": Object {}, - }, - "_HeaderBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_Item": Object { + "Employees": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItem", - "name": "SalesOrderItem", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_CustomerPaymentTerms": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/CustomerPaymentTerms", - "name": "CustomerPaymentTerms", - "navigationPropertyBinding": Object {}, - }, - "_DeliveryPriority": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/DeliveryPriority", - "name": "DeliveryPriority", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsClassification": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsClassification", - "name": "IncotermsClassification", - "navigationPropertyBinding": Object {}, - }, - "_IncotermsVersion": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/IncotermsVersion", - "name": "IncotermsVersion", - "navigationPropertyBinding": Object {}, - }, - "_ItemBillingBlockReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/BillingBlockReason", - "name": "BillingBlockReason", - "navigationPropertyBinding": Object {}, - }, - "_ItemCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderItemCategory", - "name": "SalesOrderItemCategory", - "navigationPropertyBinding": Object {}, - }, - "_Material": Object { + "Orders": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { + "Customer": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { + "CustomerDemographics": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], + "Customers": [Circular], }, }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": Object { + "Orders": [Circular], + }, + }, + "Employee": [Circular], + "Order_Details": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": [Circular], + "Product": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - "_ModelYear": Object { + "Category": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, }, - "_WarrantyYear": Object { + "Order_Details": [Circular], + "Supplier": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, }, - "material": [Circular], - "owner": [Circular], }, }, }, }, + "Shipper": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": [Circular], + }, + }, }, }, - "_MaterialDetails": Object { + "Territories": [Circular], + }, + }, + "Region": [Circular], + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", + "navigationPropertyBinding": Object { + "Customer": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", + "navigationPropertyBinding": Object { + "CustomerDemographics": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", + "navigationPropertyBinding": Object { + "Customers": [Circular], + }, + }, + "Orders": [Circular], + }, + }, + "Employee": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", + "navigationPropertyBinding": Object { + "Orders": [Circular], + "Territories": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", + "navigationPropertyBinding": Object { + "Employees": [Circular], + "Region": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", + "navigationPropertyBinding": Object { + "Territories": [Circular], + }, + }, + }, + }, + }, + }, + "Order_Details": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": [Circular], + "Product": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", + "navigationPropertyBinding": Object { + "Category": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, + }, + "Order_Details": [Circular], + "Supplier": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, + }, + }, + }, + }, + }, + "Shipper": [Circular], + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", + "navigationPropertyBinding": Object { + "Products": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", + "navigationPropertyBinding": Object { + "Category": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, + }, + "Order_Details": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialDetails", - "name": "MaterialDetails", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialCategory": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCategory", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCategory", - "name": "MaterialCategory", - "navigationPropertyBinding": Object {}, - }, - "_MaterialCountry": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialCountry", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialCountry", - "name": "MaterialCountry", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": Object { + "Customer": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { + "CustomerDemographics": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", - "navigationPropertyBinding": Object { - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_MaterialRatings": [Circular], - }, - }, - "materialrating": [Circular], + "Customers": [Circular], }, }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": Object { + "Orders": [Circular], + }, + }, + "Employee": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", + "navigationPropertyBinding": Object { + "Orders": [Circular], + "Territories": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", "navigationPropertyBinding": Object { - "_MaterialGroup": Object { + "Employees": [Circular], + "Region": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", + "navigationPropertyBinding": Object { + "Territories": [Circular], + }, }, - "_MaterialRatings": [Circular], }, }, - "materialdetail": [Circular], }, }, - "_ModelYear": Object { + "Order_Details": [Circular], + "Shipper": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": [Circular], + }, }, - "_WarrantyYear": Object { + }, + }, + "Product": [Circular], + }, + }, + "Supplier": [Circular], + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Territory", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Territories", + "name": "Territories", + "navigationPropertyBinding": Object { + "Employees": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Employee", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Employees", + "name": "Employees", + "navigationPropertyBinding": Object { + "Orders": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders", + "name": "Orders", + "navigationPropertyBinding": Object { + "Customer": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Customer", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customers", + "name": "Customers", + "navigationPropertyBinding": Object { + "CustomerDemographics": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialYears", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialYears", - "name": "MaterialYears", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.CustomerDemographic", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/CustomerDemographics", + "name": "CustomerDemographics", + "navigationPropertyBinding": Object { + "Customers": [Circular], + }, }, - "material": Object { + "Orders": [Circular], + }, + }, + "Employee": [Circular], + "Order_Details": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Detail", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details", + "name": "Order_Details", + "navigationPropertyBinding": Object { + "Order": [Circular], + "Product": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Material", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Material", - "name": "Material", + "entityTypeName": "NorthwindModel.Product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products", + "name": "Products", "navigationPropertyBinding": Object { - "_MaterialGroup": Object { + "Category": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Categories", + "name": "Categories", + "navigationPropertyBinding": Object { + "Products": [Circular], + }, }, - "_MaterialRatings": Object { + "Order_Details": [Circular], + "Supplier": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatings", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatings", - "name": "MaterialRatings", + "entityTypeName": "NorthwindModel.Supplier", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Suppliers", + "name": "Suppliers", "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "_MaterialRatingsDetails": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialRatingsDetails", - "name": "MaterialRatingsDetails", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "material": [Circular], - "materialrating": [Circular], - }, - }, - "_Rating": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Rating", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Rating", - "name": "Rating", - "navigationPropertyBinding": Object {}, - }, - "material": [Circular], - "materialdetail": [Circular], + "Products": [Circular], }, }, }, }, - "owner": [Circular], }, }, - "_MaterialGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.MaterialGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/MaterialGroup", - "name": "MaterialGroup", - "navigationPropertyBinding": Object {}, - }, - "_RequestedQuantityUnit": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, - }, - "_SalesOrder": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, - }, - "_ShippingPoint": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, - }, - "_ShippingType": Object { + "Shipper": Object { "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + "entityTypeName": "NorthwindModel.Shipper", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Shippers", + "name": "Shippers", + "navigationPropertyBinding": Object { + "Orders": [Circular], + }, }, - "owner": [Circular], }, }, - "_OrganizationDivision": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OrganizationDivision", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OrganizationDivision", - "name": "OrganizationDivision", - "navigationPropertyBinding": Object {}, + "Territories": [Circular], + }, + }, + "Region": Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Region", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Regions", + "name": "Regions", + "navigationPropertyBinding": Object { + "Territories": [Circular], + }, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Alphabetical_list_of_product", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Alphabetical_list_of_products", + "name": "Alphabetical_list_of_products", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Category_Sales_for_1997", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Category_Sales_for_1997", + "name": "Category_Sales_for_1997", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Current_Product_List", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Current_Product_Lists", + "name": "Current_Product_Lists", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Customer_and_Suppliers_by_City", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Customer_and_Suppliers_by_Cities", + "name": "Customer_and_Suppliers_by_Cities", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Invoice", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Invoices", + "name": "Invoices", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Details_Extended", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Details_Extendeds", + "name": "Order_Details_Extendeds", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Order_Subtotal", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Order_Subtotals", + "name": "Order_Subtotals", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Orders_Qry", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Orders_Qries", + "name": "Orders_Qries", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Product_Sales_for_1997", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Product_Sales_for_1997", + "name": "Product_Sales_for_1997", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Products_Above_Average_Price", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products_Above_Average_Prices", + "name": "Products_Above_Average_Prices", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Products_by_Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Products_by_Categories", + "name": "Products_by_Categories", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Sales_by_Category", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Sales_by_Categories", + "name": "Sales_by_Categories", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Sales_Totals_by_Amount", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Sales_Totals_by_Amounts", + "name": "Sales_Totals_by_Amounts", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Summary_of_Sales_by_Quarter", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Summary_of_Sales_by_Quarters", + "name": "Summary_of_Sales_by_Quarters", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "NorthwindModel.Summary_of_Sales_by_Year", + "fullyQualifiedName": "ODataWebV3.Northwind.Model.NorthwindEntities/Summary_of_Sales_by_Years", + "name": "Summary_of_Sales_by_Years", + "navigationPropertyBinding": Object {}, + }, + ], + "entityTypes": Array [ + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Category/CategoryID", + "name": "CategoryID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Category/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Category/Description", + "maxLength": NaN, + "name": "Description", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Category/Picture", + "maxLength": NaN, + "name": "Picture", + "type": "Edm.Binary", + }, + ], + "fullyQualifiedName": "NorthwindModel.Category", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Category/CategoryID", + "name": "CategoryID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Category", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Categories", + "fullyQualifiedName": "NorthwindModel.Category/Products", + "name": "Products", + "referentialConstraint": Array [ + Object { + "sourceProperty": "CategoryID", + "sourceTypeName": "NorthwindModel.Category", + "targetProperty": "CategoryID", + "targetTypeName": "NorthwindModel.Product", }, - "_OverallBillingBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallBillingBlockStatus", - "name": "OverallBillingBlockStatus", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Products_Categories", + "toRole": "Products", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.CustomerDemographic/CustomerTypeID", + "maxLength": 10, + "name": "CustomerTypeID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.CustomerDemographic/CustomerDesc", + "maxLength": NaN, + "name": "CustomerDesc", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.CustomerDemographic", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.CustomerDemographic/CustomerTypeID", + "maxLength": 10, + "name": "CustomerTypeID", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "CustomerDemographic", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "CustomerDemographics", + "fullyQualifiedName": "NorthwindModel.CustomerDemographic/Customers", + "name": "Customers", + "relationship": "NorthwindModel.CustomerCustomerDemo", + "toRole": "Customers", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/CustomerID", + "maxLength": 5, + "name": "CustomerID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/CompanyName", + "maxLength": 40, + "name": "CompanyName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/ContactName", + "maxLength": 30, + "name": "ContactName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/ContactTitle", + "maxLength": 30, + "name": "ContactTitle", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/Address", + "maxLength": 60, + "name": "Address", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/City", + "maxLength": 15, + "name": "City", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/Region", + "maxLength": 15, + "name": "Region", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/Country", + "maxLength": 15, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/Phone", + "maxLength": 24, + "name": "Phone", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/Fax", + "maxLength": 24, + "name": "Fax", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Customer", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer/CustomerID", + "maxLength": 5, + "name": "CustomerID", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Customer", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Customers", + "fullyQualifiedName": "NorthwindModel.Customer/Orders", + "name": "Orders", + "referentialConstraint": Array [ + Object { + "sourceProperty": "CustomerID", + "sourceTypeName": "NorthwindModel.Customer", + "targetProperty": "CustomerID", + "targetTypeName": "NorthwindModel.Order", }, - "_OverallDeliveryBlockStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallDeliveryBlockStatus", - "name": "OverallDeliveryBlockStatus", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Orders_Customers", + "toRole": "Orders", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Customers", + "fullyQualifiedName": "NorthwindModel.Customer/CustomerDemographics", + "name": "CustomerDemographics", + "relationship": "NorthwindModel.CustomerCustomerDemo", + "toRole": "CustomerDemographics", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/EmployeeID", + "name": "EmployeeID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/LastName", + "maxLength": 20, + "name": "LastName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/FirstName", + "maxLength": 10, + "name": "FirstName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/Title", + "maxLength": 30, + "name": "Title", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/TitleOfCourtesy", + "maxLength": 25, + "name": "TitleOfCourtesy", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/BirthDate", + "name": "BirthDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/HireDate", + "name": "HireDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/Address", + "maxLength": 60, + "name": "Address", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/City", + "maxLength": 15, + "name": "City", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/Region", + "maxLength": 15, + "name": "Region", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/Country", + "maxLength": 15, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/HomePhone", + "maxLength": 24, + "name": "HomePhone", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/Extension", + "maxLength": 4, + "name": "Extension", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/Photo", + "maxLength": NaN, + "name": "Photo", + "type": "Edm.Binary", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/Notes", + "maxLength": NaN, + "name": "Notes", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/ReportsTo", + "name": "ReportsTo", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/PhotoPath", + "maxLength": 255, + "name": "PhotoPath", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Employee", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Employee/EmployeeID", + "name": "EmployeeID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Employee", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Employees", + "fullyQualifiedName": "NorthwindModel.Employee/Employees1", + "name": "Employees1", + "referentialConstraint": Array [ + Object { + "sourceProperty": "ReportsTo", + "sourceTypeName": "NorthwindModel.Employee", + "targetProperty": "EmployeeID", + "targetTypeName": "NorthwindModel.Employee", }, - "_OverallSDProcessStatus": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/OverallSDProcessStatus", - "name": "OverallSDProcessStatus", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Employees_Employees", + "toRole": "Employees1", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Employees1", + "fullyQualifiedName": "NorthwindModel.Employee/Employee1", + "name": "Employee1", + "referentialConstraint": Array [ + Object { + "sourceProperty": "ReportsTo", + "sourceTypeName": "NorthwindModel.Employee", + "targetProperty": "EmployeeID", + "targetTypeName": "NorthwindModel.Employee", }, - "_Partner": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderPartner", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", - "name": "HeaderPartner", - "navigationPropertyBinding": Object { - "SiblingEntity": [Circular], - "owner": [Circular], - }, + ], + "relationship": "NorthwindModel.FK_Employees_Employees", + "toRole": "Employees", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Employees", + "fullyQualifiedName": "NorthwindModel.Employee/Orders", + "name": "Orders", + "referentialConstraint": Array [ + Object { + "sourceProperty": "EmployeeID", + "sourceTypeName": "NorthwindModel.Employee", + "targetProperty": "EmployeeID", + "targetTypeName": "NorthwindModel.Order", + }, + ], + "relationship": "NorthwindModel.FK_Orders_Employees", + "toRole": "Orders", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Employees", + "fullyQualifiedName": "NorthwindModel.Employee/Territories", + "name": "Territories", + "relationship": "NorthwindModel.EmployeeTerritories", + "toRole": "Territories", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Detail/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Detail/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Detail/UnitPrice", + "name": "UnitPrice", + "nullable": false, + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Detail/Quantity", + "name": "Quantity", + "nullable": false, + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Detail/Discount", + "name": "Discount", + "nullable": false, + "type": "Edm.Single", + }, + ], + "fullyQualifiedName": "NorthwindModel.Order_Detail", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Detail/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Detail/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Order_Detail", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Order_Details", + "fullyQualifiedName": "NorthwindModel.Order_Detail/Order", + "name": "Order", + "referentialConstraint": Array [ + Object { + "sourceProperty": "OrderID", + "sourceTypeName": "NorthwindModel.Order_Detail", + "targetProperty": "OrderID", + "targetTypeName": "NorthwindModel.Order", + }, + ], + "relationship": "NorthwindModel.FK_Order_Details_Orders", + "toRole": "Orders", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Order_Details", + "fullyQualifiedName": "NorthwindModel.Order_Detail/Product", + "name": "Product", + "referentialConstraint": Array [ + Object { + "sourceProperty": "ProductID", + "sourceTypeName": "NorthwindModel.Order_Detail", + "targetProperty": "ProductID", + "targetTypeName": "NorthwindModel.Product", + }, + ], + "relationship": "NorthwindModel.FK_Order_Details_Products", + "toRole": "Products", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/CustomerID", + "maxLength": 5, + "name": "CustomerID", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/EmployeeID", + "name": "EmployeeID", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/OrderDate", + "name": "OrderDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/RequiredDate", + "name": "RequiredDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/ShippedDate", + "name": "ShippedDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/ShipVia", + "name": "ShipVia", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/Freight", + "name": "Freight", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/ShipName", + "maxLength": 40, + "name": "ShipName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/ShipAddress", + "maxLength": 60, + "name": "ShipAddress", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/ShipCity", + "maxLength": 15, + "name": "ShipCity", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/ShipRegion", + "maxLength": 15, + "name": "ShipRegion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/ShipPostalCode", + "maxLength": 10, + "name": "ShipPostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/ShipCountry", + "maxLength": 15, + "name": "ShipCountry", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Order", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Order", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Orders", + "fullyQualifiedName": "NorthwindModel.Order/Customer", + "name": "Customer", + "referentialConstraint": Array [ + Object { + "sourceProperty": "CustomerID", + "sourceTypeName": "NorthwindModel.Order", + "targetProperty": "CustomerID", + "targetTypeName": "NorthwindModel.Customer", }, - "_SDDocumentReason": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SDDocumentReason", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SDDocumentReason", - "name": "SDDocumentReason", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Orders_Customers", + "toRole": "Customers", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Orders", + "fullyQualifiedName": "NorthwindModel.Order/Employee", + "name": "Employee", + "referentialConstraint": Array [ + Object { + "sourceProperty": "EmployeeID", + "sourceTypeName": "NorthwindModel.Order", + "targetProperty": "EmployeeID", + "targetTypeName": "NorthwindModel.Employee", }, - "_SalesDistrict": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesDistrict", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesDistrict", - "name": "SalesDistrict", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Orders_Employees", + "toRole": "Employees", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Orders", + "fullyQualifiedName": "NorthwindModel.Order/Order_Details", + "name": "Order_Details", + "referentialConstraint": Array [ + Object { + "sourceProperty": "OrderID", + "sourceTypeName": "NorthwindModel.Order", + "targetProperty": "OrderID", + "targetTypeName": "NorthwindModel.Order_Detail", }, - "_SalesGroup": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesGroup", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesGroup", - "name": "SalesGroup", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Order_Details_Orders", + "toRole": "Order_Details", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Orders", + "fullyQualifiedName": "NorthwindModel.Order/Shipper", + "name": "Shipper", + "referentialConstraint": Array [ + Object { + "sourceProperty": "ShipVia", + "sourceTypeName": "NorthwindModel.Order", + "targetProperty": "ShipperID", + "targetTypeName": "NorthwindModel.Shipper", }, - "_SalesOffice": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOffice", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOffice", - "name": "SalesOffice", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Orders_Shippers", + "toRole": "Shippers", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/SupplierID", + "name": "SupplierID", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/CategoryID", + "name": "CategoryID", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/QuantityPerUnit", + "maxLength": 20, + "name": "QuantityPerUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/UnitPrice", + "name": "UnitPrice", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/UnitsInStock", + "name": "UnitsInStock", + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/UnitsOnOrder", + "name": "UnitsOnOrder", + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/ReorderLevel", + "name": "ReorderLevel", + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/Discontinued", + "name": "Discontinued", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "NorthwindModel.Product", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Product", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Products", + "fullyQualifiedName": "NorthwindModel.Product/Category", + "name": "Category", + "referentialConstraint": Array [ + Object { + "sourceProperty": "CategoryID", + "sourceTypeName": "NorthwindModel.Product", + "targetProperty": "CategoryID", + "targetTypeName": "NorthwindModel.Category", }, - "_SalesOrderType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Products_Categories", + "toRole": "Categories", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Products", + "fullyQualifiedName": "NorthwindModel.Product/Order_Details", + "name": "Order_Details", + "referentialConstraint": Array [ + Object { + "sourceProperty": "ProductID", + "sourceTypeName": "NorthwindModel.Product", + "targetProperty": "ProductID", + "targetTypeName": "NorthwindModel.Order_Detail", }, - "_SalesOrganization": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Order_Details_Products", + "toRole": "Order_Details", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Products", + "fullyQualifiedName": "NorthwindModel.Product/Supplier", + "name": "Supplier", + "referentialConstraint": Array [ + Object { + "sourceProperty": "SupplierID", + "sourceTypeName": "NorthwindModel.Product", + "targetProperty": "SupplierID", + "targetTypeName": "NorthwindModel.Supplier", }, - "_ShipToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/HeaderShipToParty", - "name": "HeaderShipToParty", - "navigationPropertyBinding": Object { - "_ShipToPartyVH": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, - }, - }, + ], + "relationship": "NorthwindModel.FK_Products_Suppliers", + "toRole": "Suppliers", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Region/RegionID", + "name": "RegionID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Region/RegionDescription", + "maxLength": 50, + "name": "RegionDescription", + "nullable": false, + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Region", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Region/RegionID", + "name": "RegionID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Region", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Region", + "fullyQualifiedName": "NorthwindModel.Region/Territories", + "name": "Territories", + "referentialConstraint": Array [ + Object { + "sourceProperty": "RegionID", + "sourceTypeName": "NorthwindModel.Region", + "targetProperty": "RegionID", + "targetTypeName": "NorthwindModel.Territory", }, - "_ShippingCondition": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Territories_Region", + "toRole": "Territories", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Shipper/ShipperID", + "name": "ShipperID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Shipper/CompanyName", + "maxLength": 40, + "name": "CompanyName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Shipper/Phone", + "maxLength": 24, + "name": "Phone", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Shipper", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Shipper/ShipperID", + "name": "ShipperID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Shipper", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Shippers", + "fullyQualifiedName": "NorthwindModel.Shipper/Orders", + "name": "Orders", + "referentialConstraint": Array [ + Object { + "sourceProperty": "ShipperID", + "sourceTypeName": "NorthwindModel.Shipper", + "targetProperty": "ShipVia", + "targetTypeName": "NorthwindModel.Order", }, - "_ShippingType": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Orders_Shippers", + "toRole": "Orders", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/SupplierID", + "name": "SupplierID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/CompanyName", + "maxLength": 40, + "name": "CompanyName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/ContactName", + "maxLength": 30, + "name": "ContactName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/ContactTitle", + "maxLength": 30, + "name": "ContactTitle", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/Address", + "maxLength": 60, + "name": "Address", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/City", + "maxLength": 15, + "name": "City", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/Region", + "maxLength": 15, + "name": "Region", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/Country", + "maxLength": 15, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/Phone", + "maxLength": 24, + "name": "Phone", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/Fax", + "maxLength": 24, + "name": "Fax", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/HomePage", + "maxLength": NaN, + "name": "HomePage", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Supplier", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Supplier/SupplierID", + "name": "SupplierID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Supplier", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Suppliers", + "fullyQualifiedName": "NorthwindModel.Supplier/Products", + "name": "Products", + "referentialConstraint": Array [ + Object { + "sourceProperty": "SupplierID", + "sourceTypeName": "NorthwindModel.Supplier", + "targetProperty": "SupplierID", + "targetTypeName": "NorthwindModel.Product", }, - "_SoldToParty": Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.Customer", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/Customer", - "name": "Customer", - "navigationPropertyBinding": Object {}, + ], + "relationship": "NorthwindModel.FK_Products_Suppliers", + "toRole": "Products", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Territory/TerritoryID", + "maxLength": 20, + "name": "TerritoryID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Territory/TerritoryDescription", + "maxLength": 50, + "name": "TerritoryDescription", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Territory/RegionID", + "name": "RegionID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "fullyQualifiedName": "NorthwindModel.Territory", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Territory/TerritoryID", + "maxLength": 20, + "name": "TerritoryID", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Territory", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "Territories", + "fullyQualifiedName": "NorthwindModel.Territory/Region", + "name": "Region", + "referentialConstraint": Array [ + Object { + "sourceProperty": "RegionID", + "sourceTypeName": "NorthwindModel.Territory", + "targetProperty": "RegionID", + "targetTypeName": "NorthwindModel.Region", }, - }, + ], + "relationship": "NorthwindModel.FK_Territories_Region", + "toRole": "Region", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "Territories", + "fullyQualifiedName": "NorthwindModel.Territory/Employees", + "name": "Employees", + "relationship": "NorthwindModel.EmployeeTerritories", + "toRole": "Employees", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/SupplierID", + "name": "SupplierID", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/CategoryID", + "name": "CategoryID", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/QuantityPerUnit", + "maxLength": 20, + "name": "QuantityPerUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/UnitPrice", + "name": "UnitPrice", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/UnitsInStock", + "name": "UnitsInStock", + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/UnitsOnOrder", + "name": "UnitsOnOrder", + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ReorderLevel", + "name": "ReorderLevel", + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/Discontinued", + "name": "Discontinued", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/Discontinued", + "name": "Discontinued", + "nullable": false, + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Alphabetical_list_of_product/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Alphabetical_list_of_product", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Category_Sales_for_1997/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Category_Sales_for_1997/CategorySales", + "name": "CategorySales", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "NorthwindModel.Category_Sales_for_1997", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Category_Sales_for_1997/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Category_Sales_for_1997", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Current_Product_List/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Current_Product_List/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Current_Product_List", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Current_Product_List/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Current_Product_List/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Current_Product_List", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/City", + "maxLength": 15, + "name": "City", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/CompanyName", + "maxLength": 40, + "name": "CompanyName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/ContactName", + "maxLength": 30, + "name": "ContactName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/Relationship", + "maxLength": 9, + "name": "Relationship", + "nullable": false, + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/CompanyName", + "maxLength": 40, + "name": "CompanyName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Customer_and_Suppliers_by_City/Relationship", + "maxLength": 9, + "name": "Relationship", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Customer_and_Suppliers_by_City", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ShipName", + "maxLength": 40, + "name": "ShipName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ShipAddress", + "maxLength": 60, + "name": "ShipAddress", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ShipCity", + "maxLength": 15, + "name": "ShipCity", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ShipRegion", + "maxLength": 15, + "name": "ShipRegion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ShipPostalCode", + "maxLength": 10, + "name": "ShipPostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ShipCountry", + "maxLength": 15, + "name": "ShipCountry", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/CustomerID", + "maxLength": 5, + "name": "CustomerID", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/CustomerName", + "maxLength": 40, + "name": "CustomerName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Address", + "maxLength": 60, + "name": "Address", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/City", + "maxLength": 15, + "name": "City", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Region", + "maxLength": 15, + "name": "Region", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Country", + "maxLength": 15, + "name": "Country", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Salesperson", + "maxLength": 31, + "name": "Salesperson", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/OrderDate", + "name": "OrderDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/RequiredDate", + "name": "RequiredDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ShippedDate", + "name": "ShippedDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ShipperName", + "maxLength": 40, + "name": "ShipperName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/UnitPrice", + "name": "UnitPrice", + "nullable": false, + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Quantity", + "name": "Quantity", + "nullable": false, + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Discount", + "name": "Discount", + "nullable": false, + "type": "Edm.Single", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ExtendedPrice", + "name": "ExtendedPrice", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Freight", + "name": "Freight", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "NorthwindModel.Invoice", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/CustomerName", + "maxLength": 40, + "name": "CustomerName", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrderType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrderType", - "name": "SalesOrderType", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Salesperson", + "maxLength": 31, + "name": "Salesperson", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.SalesOrganization", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/SalesOrganization", - "name": "SalesOrganization", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingCondition", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingCondition", - "name": "ShippingCondition", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ShipperName", + "maxLength": 40, + "name": "ShipperName", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingPoint", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingPoint", - "name": "ShippingPoint", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.ShippingType", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/ShippingType", - "name": "ShippingType", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "EntitySet", - "entityTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", - "fullyQualifiedName": "com.c_salesordermanage_sd.EntityContainer/UnitOfMeasure", - "name": "UnitOfMeasure", - "navigationPropertyBinding": Object {}, + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/UnitPrice", + "name": "UnitPrice", + "nullable": false, + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Quantity", + "name": "Quantity", + "nullable": false, + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Invoice/Discount", + "name": "Discount", + "nullable": false, + "type": "Edm.Single", }, ], - "entityTypes": Array [ + "name": "Invoice", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", - "maxLength": 2, - "name": "BillingBlockReason", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason_Text", - "maxLength": 20, - "name": "BillingBlockReason_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BillingBlockReason/BillingBlockReason", - "maxLength": 2, - "name": "BillingBlockReason", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "BillingBlockReason", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", - "maxLength": 2, - "name": "PartnerFunction", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/BusinessPartner", - "maxLength": 10, - "name": "BusinessPartner", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/FullName", - "maxLength": 80, - "name": "FullName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PhoneNumber", - "maxLength": 30, - "name": "PhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/MobilePhoneNumber", - "maxLength": 30, - "name": "MobilePhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/EmailAddress", - "maxLength": 241, - "name": "EmailAddress", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.BusinessPartner/PartnerFunction", - "maxLength": 2, - "name": "PartnerFunction", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "BusinessPartner", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", - "maxLength": 40, - "name": "Material", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialName", - "maxLength": 40, - "name": "MaterialName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/RequestedQuantityUnit", - "maxLength": 40, - "name": "RequestedQuantityUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/MaterialBaseUnit", - "maxLength": 40, - "name": "MaterialBaseUnit", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesMeasureUnit", - "maxLength": 40, - "name": "SalesMeasureUnit", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_MaterialBySlsOrgDistrChnl/Material", - "maxLength": 40, - "name": "Material", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "C_MaterialBySlsOrgDistrChnl", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType_Text", - "maxLength": 20, - "name": "SalesOrderType_Text", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesDocumentTypeLangDepdnt", - "maxLength": 4, - "name": "SalesDocumentTypeLangDepdnt", - "nullable": false, - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_NotLockedSalesOrderTypeVH/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "C_NotLockedSalesOrderTypeVH", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/UnitPrice", + "name": "UnitPrice", + "nullable": false, + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", - "maxLength": 18, - "name": "Product", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", - "maxLength": 40, - "name": "AlternativeUnit", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit_Text", - "maxLength": 30, - "name": "AlternativeUnit_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityNumerator", - "name": "QuantityNumerator", - "precision": 5, - "scale": 0, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/QuantityDenominator", - "name": "QuantityDenominator", - "precision": 5, - "scale": 0, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/Product", - "maxLength": 18, - "name": "Product", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.C_ProductUnitsOfMeasureVH/AlternativeUnit", - "maxLength": 40, - "name": "AlternativeUnit", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "C_ProductUnitsOfMeasureVH", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/Quantity", + "name": "Quantity", + "nullable": false, + "type": "Edm.Int16", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount", - "name": "CustomerCreditExposureAmount", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmountHidden", - "name": "CustomerCreditExposureAmountHidden", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditForecast", - "name": "CustomerCreditForecast", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditExposureAmount_text", - "maxLength": 15, - "name": "CustomerCreditExposureAmount_text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount", - "name": "CustomerCreditLimitAmount", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/MaximumCreditValue", - "name": "MaximumCreditValue", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerCreditLimitAmount_text", - "maxLength": 15, - "name": "CustomerCreditLimitAmount_text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/TransactionCurrency", - "maxLength": 5, - "name": "TransactionCurrency", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/CustomerIsAboveThreshold", - "name": "CustomerIsAboveThreshold", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeLow", - "name": "ToleranceRangeLow", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/ToleranceRangeHigh", - "name": "ToleranceRangeHigh", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeLow", - "name": "DeviationRangeLow", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/DeviationRangeHigh", - "name": "DeviationRangeHigh", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeLow", - "name": "AcceptanceRangeLow", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/AcceptanceRangeHigh", - "name": "AcceptanceRangeHigh", - "precision": 23, - "scale": 2, - "type": "Edm.Decimal", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CreditLimitDetails/SalesDocument", - "maxLength": 10, - "name": "SalesDocument", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "CreditLimitDetails", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/Discount", + "name": "Discount", + "nullable": false, + "type": "Edm.Single", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ExtendedPrice", + "name": "ExtendedPrice", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ProductID", + "name": "ProductID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/UnitPrice", + "name": "UnitPrice", + "nullable": false, + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/Quantity", + "name": "Quantity", + "nullable": false, + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Details_Extended/Discount", + "name": "Discount", + "nullable": false, + "type": "Edm.Single", + }, + ], + "name": "Order_Details_Extended", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Subtotal/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Subtotal/Subtotal", + "name": "Subtotal", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "NorthwindModel.Order_Subtotal", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Order_Subtotal/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Order_Subtotal", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/CustomerID", + "maxLength": 5, + "name": "CustomerID", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/EmployeeID", + "name": "EmployeeID", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/OrderDate", + "name": "OrderDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/RequiredDate", + "name": "RequiredDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShippedDate", + "name": "ShippedDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipVia", + "name": "ShipVia", + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/Freight", + "name": "Freight", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipName", + "maxLength": 40, + "name": "ShipName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipAddress", + "maxLength": 60, + "name": "ShipAddress", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipCity", + "maxLength": 15, + "name": "ShipCity", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipRegion", + "maxLength": 15, + "name": "ShipRegion", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipPostalCode", + "maxLength": 10, + "name": "ShipPostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/ShipCountry", + "maxLength": 15, + "name": "ShipCountry", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/CompanyName", + "maxLength": 40, + "name": "CompanyName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/Address", + "maxLength": 60, + "name": "Address", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/City", + "maxLength": 15, + "name": "City", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/Region", + "maxLength": 15, + "name": "Region", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/PostalCode", + "maxLength": 10, + "name": "PostalCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/Country", + "maxLength": 15, + "name": "Country", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "NorthwindModel.Orders_Qry", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Orders_Qry/CompanyName", + "maxLength": 40, + "name": "CompanyName", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Orders_Qry", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/ProductSales", + "name": "ProductSales", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Product_Sales_for_1997/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Product_Sales_for_1997", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_Above_Average_Price/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_Above_Average_Price/UnitPrice", + "name": "UnitPrice", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "NorthwindModel.Products_Above_Average_Price", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_Above_Average_Price/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "Products_Above_Average_Price", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_by_Category/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_by_Category/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_by_Category/QuantityPerUnit", + "maxLength": 20, + "name": "QuantityPerUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_by_Category/UnitsInStock", + "name": "UnitsInStock", + "type": "Edm.Int16", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_by_Category/Discontinued", + "name": "Discontinued", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "fullyQualifiedName": "NorthwindModel.Products_by_Category", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_by_Category/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_by_Category/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Products_by_Category/Discontinued", + "name": "Discontinued", + "nullable": false, + "type": "Edm.Boolean", + }, + ], + "name": "Products_by_Category", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_by_Category/CategoryID", + "name": "CategoryID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_by_Category/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_by_Category/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_by_Category/ProductSales", + "name": "ProductSales", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "NorthwindModel.Sales_by_Category", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_by_Category/CategoryID", + "name": "CategoryID", + "nullable": false, + "type": "Edm.Int32", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", - "maxLength": 10, - "name": "Customer", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CustomerName", - "maxLength": 80, - "name": "CustomerName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName1", - "maxLength": 35, - "name": "OrganizationBPName1", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/OrganizationBPName2", - "maxLength": 35, - "name": "OrganizationBPName2", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/BusinessPartnerImageURL", - "name": "BusinessPartnerImageURL", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/CityName", - "maxLength": 40, - "name": "CityName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/InternationalPhoneNumber", - "maxLength": 30, - "name": "InternationalPhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/EmailAddress", - "maxLength": 241, - "name": "EmailAddress", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Customer/Customer", - "maxLength": 10, - "name": "Customer", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Customer", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_by_Category/CategoryName", + "maxLength": 15, + "name": "CategoryName", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms_Text", - "maxLength": 30, - "name": "CustomerPaymentTerms_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPaymentTerms/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "CustomerPaymentTerms", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_by_Category/ProductName", + "maxLength": 40, + "name": "ProductName", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "Sales_by_Category", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", - "maxLength": 4, - "name": "CustomerPurchaseOrderType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType_Text", - "maxLength": 20, - "name": "CustomerPurchaseOrderType_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType/CustomerPurchaseOrderType", - "maxLength": 4, - "name": "CustomerPurchaseOrderType", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "CustomerPurchaseOrderType", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/SaleAmount", + "name": "SaleAmount", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", - "maxLength": 2, - "name": "DeliveryBlockReason", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason_Text", - "maxLength": 20, - "name": "DeliveryBlockReason_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryDueListBlock", - "name": "DeliveryDueListBlock", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryBlockReason/DeliveryBlockReason", - "maxLength": 2, - "name": "DeliveryBlockReason", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "DeliveryBlockReason", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", - "maxLength": 2, - "name": "DeliveryPriority", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority_Text", - "maxLength": 20, - "name": "DeliveryPriority_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DeliveryPriority/DeliveryPriority", - "maxLength": 2, - "name": "DeliveryPriority", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "DeliveryPriority", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/CompanyName", + "maxLength": 40, + "name": "CompanyName", + "nullable": false, + "type": "Edm.String", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel_Text", - "maxLength": 20, - "name": "DistributionChannel_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "DistributionChannel", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/ShippedDate", + "name": "ShippedDate", + "type": "Edm.DateTime", }, + ], + "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount", + "keys": Array [ Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", - "name": "DraftUUID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreationDateTime", - "name": "CreationDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/CreatedByUser", - "maxLength": 256, - "name": "CreatedByUser", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsCreatedByMe", - "name": "DraftIsCreatedByMe", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangeDateTime", - "name": "LastChangeDateTime", - "precision": 7, - "type": "Edm.DateTimeOffset", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/LastChangedByUser", - "maxLength": 256, - "name": "LastChangedByUser", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/InProcessByUser", - "maxLength": 256, - "name": "InProcessByUser", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftIsProcessedByMe", - "name": "DraftIsProcessedByMe", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.DraftAdministrativeData/DraftUUID", - "name": "DraftUUID", - "nullable": false, - "type": "Edm.Guid", - }, - ], - "name": "DraftAdministrativeData", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PartnerFunction", - "maxLength": 2, - "name": "PartnerFunction", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/BusinessPartner", - "maxLength": 10, - "name": "BusinessPartner", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Rating", - "name": "Rating", - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Progress", - "name": "Progress", - "precision": 4, - "scale": 1, - "type": "Edm.Decimal", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SemanticObject", - "maxLength": 15, - "name": "SemanticObject", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/AddressID", - "maxLength": 10, - "name": "AddressID", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/FullName", - "maxLength": 80, - "name": "FullName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PhoneNumber", - "maxLength": 30, - "name": "PhoneNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/CityName", - "maxLength": 40, - "name": "CityName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner_ID", - "name": "owner_ID", - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "name": "HeaderPartner", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/owner", - "isCollection": false, - "name": "owner", - "partner": "_Partner", - "referentialConstraint": Array [ - Object { - "sourceProperty": "owner_ID", - "sourceTypeName": "HeaderPartner", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderPartner/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", - }, - ], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Sales_Totals_by_Amount/CompanyName", + "maxLength": 40, + "name": "CompanyName", + "nullable": false, + "type": "Edm.String", }, + ], + "name": "Sales_Totals_by_Amount", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/BusinessPartner", - "maxLength": 10, - "name": "BusinessPartner", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/PostalCode", - "maxLength": 10, - "name": "PostalCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/CityName", - "maxLength": 40, - "name": "CityName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isHidden", - "name": "isHidden", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/Country", - "maxLength": 3, - "name": "Country", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/StreetName", - "maxLength": 60, - "name": "StreetName", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/HouseNumber", - "maxLength": 10, - "name": "HouseNumber", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "HeaderShipToParty", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.HeaderShipToParty/_ShipToPartyVH", - "isCollection": false, - "name": "_ShipToPartyVH", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "BusinessPartner", - "sourceTypeName": "HeaderShipToParty", - "targetProperty": "Customer", - "targetTypeName": "com.c_salesordermanage_sd.Customer", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Customer", - }, - ], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter/ShippedDate", + "name": "ShippedDate", + "type": "Edm.DateTime", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel_Text", - "maxLength": 20, - "name": "DistributionChannel_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_DistributionChannel/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_DistributionChannel", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division_Text", - "maxLength": 20, - "name": "Division_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_OrganizationDivision", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter/Subtotal", + "name": "Subtotal", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Quarter/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", }, + ], + "name": "Summary_of_Sales_by_Quarter", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization_Text", - "maxLength": 20, - "name": "SalesOrganization_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganizationCurrency", - "maxLength": 5, - "name": "SalesOrganizationCurrency", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/CompanyCode", - "maxLength": 4, - "name": "CompanyCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/IntercompanyBillingCustomer", - "maxLength": 10, - "name": "IntercompanyBillingCustomer", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.I_SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "I_SalesOrganization", - "navigationProperties": Array [], + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year/ShippedDate", + "name": "ShippedDate", + "type": "Edm.DateTime", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year/Subtotal", + "name": "Subtotal", + "precision": 19, + "scale": 4, + "type": "Edm.Decimal", + }, + ], + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "NorthwindModel.Summary_of_Sales_by_Year/OrderID", + "name": "OrderID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "Summary_of_Sales_by_Year", + "navigationProperties": Array [], + }, + ], + "namespace": "ODataWebV3.Northwind.Model", + "singletons": Array [], + "typeDefinitions": Array [], + }, + "version": "1.0", +} +`; + +exports[`Parser can parse edmx with a static action 1`] = ` +RawMetadataInstance { + "identification": "serviceFile", + "references": Array [], + "schema": Object { + "actions": Array [ + Object { + "_type": "Action", + "fullyQualifiedName": "TestService.staticAction(Collection(TestService.TestEntities))", + "isBound": true, + "isFunction": false, + "name": "staticAction", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "TestService.staticAction(Collection(TestService.TestEntities))/in", + "isCollection": true, + "isEntitySet": true, + "name": "in", + "type": "Collection(TestService.TestEntities)", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "TestService.staticAction(Collection(TestService.TestEntities))/a", + "isCollection": false, + "isEntitySet": false, + "name": "a", + "type": "Edm.Int32", + }, + ], + "returnType": "TestService.TestEntities", + "sourceType": "Collection(TestService.TestEntities)", + }, + ], + "annotations": Object { + "serviceFile": Array [], + }, + "associationSets": Array [], + "associations": Array [], + "complexTypes": Array [], + "entityContainer": Object { + "_type": "EntityContainer", + "fullyQualifiedName": "TestService.EntityContainer", + "name": "EntityContainer", + }, + "entitySets": Array [ + Object { + "_type": "EntitySet", + "entityTypeName": "TestService.TestEntities", + "fullyQualifiedName": "TestService.EntityContainer/TestEntities", + "name": "TestEntities", + "navigationPropertyBinding": Object {}, + }, + ], + "entityTypes": Array [ + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "TestService.TestEntities/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "fullyQualifiedName": "TestService.TestEntities", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "TestService.TestEntities/ID", + "name": "ID", + "nullable": false, + "type": "Edm.Int32", + }, + ], + "name": "TestEntities", + "navigationProperties": Array [], + }, + ], + "namespace": "TestService", + "singletons": Array [], + "typeDefinitions": Array [], + }, + "version": "4.0", +} +`; + +exports[`Parser can parse the worklist edmx file 1`] = ` +RawMetadataInstance { + "identification": "serviceFile", + "references": Array [ + Object { + "alias": "Common", + "namespace": "com.sap.vocabularies.Common.v1", + "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMON',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Capabilities", + "namespace": "Org.OData.Capabilities.V1", + "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_CAPABILITIES',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Communication", + "namespace": "com.sap.vocabularies.Communication.v1", + "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMUNICATION',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Aggregation", + "namespace": "Org.OData.Aggregation.V1", + "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_AGGREGATION',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "PersonalData", + "namespace": "com.sap.vocabularies.PersonalData.v1", + "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_PERSONALDATA',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Validation", + "namespace": "Org.OData.Validation.V1", + "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_VALIDATION',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Analytics", + "namespace": "com.sap.vocabularies.Analytics.v1", + "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_ANALYTICS',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "Measures", + "namespace": "Org.OData.Measures.V1", + "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_MEASURES',Version='0001',SAP__Origin='LOCAL')/$value", + }, + Object { + "alias": "UI", + "namespace": "com.sap.vocabularies.UI.v1", + "uri": "https://odata.example:443/sap/opu/odata/iwfnd/catalogservice;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_UI',Version='0001',SAP__Origin='LOCAL')/$value", + }, + ], + "schema": Object { + "actions": Array [ + Object { + "_type": "Action", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/AFF8CCF97ADelete_stta_i_so_salesorder_nd()", + "isBound": false, + "isFunction": false, + "name": "AFF8CCF97ADelete_stta_i_so_salesorder_nd", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/AFF8CCF97ADelete_stta_i_so_salesorder_nd()/SalesOrderID", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrderID", + "type": "Edm.String", + }, + ], + "returnType": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult", + "sourceType": "", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/AFF8CCF97ACESave_stta_i_so_salesorder_nd()", + "isBound": false, + "isFunction": false, + "name": "AFF8CCF97ACESave_stta_i_so_salesorder_nd", + "parameters": Array [ + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/AFF8CCF97ACESave_stta_i_so_salesorder_nd()/SalesOrderID", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrderID", + "type": "Edm.String", }, + ], + "returnType": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "sourceType": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSetopportunityid()", + "isBound": false, + "isFunction": false, + "name": "STTA_C_SO_SalesOrder_NDSetopportunityid", + "parameters": Array [ Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification_Text", - "maxLength": 30, - "name": "IncotermsClassification_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/LocationIsMandatory", - "name": "LocationIsMandatory", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsClassification/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "IncotermsClassification", - "navigationProperties": Array [], + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSetopportunityid()/SalesOrderID", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrderID", + "type": "Edm.String", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion_Text", - "maxLength": 30, - "name": "IncotermsVersion_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.IncotermsVersion/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "IncotermsVersion", - "navigationProperties": Array [], + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSetopportunityid()/OpId", + "isCollection": false, + "isEntitySet": false, + "name": "OpId", + "type": "Edm.String", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", - "maxLength": 18, - "name": "Material", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/isHidden", - "name": "isHidden", - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material_Text", - "maxLength": 40, - "name": "Material_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup_MaterialGroup", - "maxLength": 9, - "name": "_MaterialGroup_MaterialGroup", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.Material", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/Material", - "maxLength": 18, - "name": "Material", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "Material", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialGroup", - "isCollection": false, - "name": "_MaterialGroup", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_MaterialGroup_MaterialGroup", - "sourceTypeName": "Material", - "targetProperty": "MaterialGroup", - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.Material/_MaterialRatings", - "isCollection": true, - "name": "_MaterialRatings", - "partner": "material", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", - }, - ], + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSetopportunityid()/OpidFc", + "isCollection": false, + "isEntitySet": false, + "name": "OpidFc", + "type": "Edm.Byte", }, + ], + "returnType": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "sourceType": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "_type": "Action", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()", + "isBound": false, + "isFunction": false, + "name": "STTA_C_SO_SalesOrder_NDSet_currency_code", + "parameters": Array [ Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category", - "maxLength": 2, - "name": "Category", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category_Text", - "maxLength": 20, - "name": "Category_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCategory/Category", - "maxLength": 2, - "name": "Category", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "MaterialCategory", - "navigationProperties": Array [], + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/SalesOrderID", + "isCollection": false, + "isEntitySet": false, + "name": "SalesOrderID", + "type": "Edm.String", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country", - "maxLength": 2, - "name": "Country", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country_Text", - "maxLength": 20, - "name": "Country_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialCountry/Country", - "maxLength": 2, - "name": "Country", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "MaterialCountry", - "navigationProperties": Array [], + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/CurrencyCode", + "isCollection": false, + "isEntitySet": false, + "name": "CurrencyCode", + "type": "Edm.String", }, Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ModelYear", - "maxLength": 4, - "name": "ModelYear", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/WarrantyYear", - "maxLength": 4, - "name": "WarrantyYear", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/BrandCategory", - "maxLength": 20, - "name": "BrandCategory", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/FabricationCountry", - "maxLength": 20, - "name": "FabricationCountry", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/material_Material", - "maxLength": 18, - "name": "material_Material", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/owner_ID", - "name": "owner_ID", - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_WarrantyYear_Model_Year", - "maxLength": 4, - "name": "_WarrantyYear_Model_Year", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", - }, - ], - "name": "MaterialDetails", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/material", - "isCollection": false, - "name": "material", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "material_Material", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Material", - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/owner", - "isCollection": false, - "name": "owner", - "partner": "_MaterialDetails", - "referentialConstraint": Array [ - Object { - "sourceProperty": "owner_ID", - "sourceTypeName": "MaterialDetails", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_ModelYear", - "isCollection": false, - "name": "_ModelYear", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "ModelYear", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Model_Year", - "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_WarrantyYear", - "isCollection": false, - "name": "_WarrantyYear", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_WarrantyYear_Model_Year", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Model_Year", - "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialYears", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialCountry", - "isCollection": false, - "name": "_MaterialCountry", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "FabricationCountry", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Country", - "targetTypeName": "com.c_salesordermanage_sd.MaterialCountry", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialCountry", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialCategory", - "isCollection": false, - "name": "_MaterialCategory", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "BrandCategory", - "sourceTypeName": "MaterialDetails", - "targetProperty": "Category", - "targetTypeName": "com.c_salesordermanage_sd.MaterialCategory", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialCategory", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/_MaterialRatings", - "isCollection": true, - "name": "_MaterialRatings", - "partner": "materialdetail", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/Areyousure", + "isCollection": false, + "isEntitySet": false, + "name": "Areyousure", + "type": "Edm.Boolean", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/Timetochange", + "isCollection": false, + "isEntitySet": false, + "name": "Timetochange", + "type": "Edm.DateTime", + }, + Object { + "_type": "ActionParameter", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_NDSet_currency_code()/Datetochange", + "isCollection": false, + "isEntitySet": false, + "name": "Datetochange", + "type": "Edm.DateTime", + }, + ], + "returnType": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult", + "sourceType": "", + }, + ], + "annotations": Object { + "serviceFile": Array [ + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Lower Value", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Status_Text", + "type": "Path", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialDetails/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", - "maxLength": 9, - "name": "MaterialGroup", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup_Text", - "maxLength": 20, - "name": "MaterialGroup_Text", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Short Descript.", + "type": "String", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialGroup/MaterialGroup", - "maxLength": 9, - "name": "MaterialGroup", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status_Text", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Item ATP Status", + "type": "String", }, - ], - "name": "MaterialGroup", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Lower Value", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/Rating", - "name": "Rating", - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Status_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/Title", - "maxLength": 100, - "name": "Title", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/materialdetail_ID", - "name": "materialdetail_ID", - "type": "Edm.Guid", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/material_Material", - "maxLength": 18, - "name": "material_Material", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Short Descript.", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status_Text", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Confirmation Status", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Lower Value", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Status_Text", + "type": "Path", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "name": "MaterialRatings", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/_Rating", - "isCollection": false, - "name": "_Rating", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "Rating", - "sourceTypeName": "MaterialRatings", - "targetProperty": "Rating", - "targetTypeName": "com.c_salesordermanage_sd.Rating", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Rating", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Short Descript.", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/materialdetail", - "isCollection": false, - "name": "materialdetail", - "partner": "_MaterialRatings", - "referentialConstraint": Array [ - Object { - "sourceProperty": "materialdetail_ID", - "sourceTypeName": "MaterialRatings", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status_Text", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Delivery Status", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/material", - "isCollection": false, - "name": "material", - "partner": "_MaterialRatings", - "referentialConstraint": Array [ - Object { - "sourceProperty": "material_Material", - "sourceTypeName": "MaterialRatings", - "targetProperty": "Material", - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Lower Value", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/_MaterialRatingsDetails", - "isCollection": true, - "name": "_MaterialRatingsDetails", - "partner": "materialrating", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Status_Text", + "type": "Path", }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatings/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Short Descript.", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/Comments", - "maxLength": 1000, - "name": "Comments", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status_Text", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Lifecycle Status", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/CREATEDAT", - "name": "CREATEDAT", - "type": "Edm.DateTimeOffset", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Business Partner ID", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDAT", - "name": "MODIFIEDAT", - "type": "Edm.DateTimeOffset", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "CompanyName", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/MODIFIEDBY", - "maxLength": 241, - "name": "MODIFIEDBY", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/materialrating_ID", - "name": "materialrating_ID", - "type": "Edm.Guid", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerID", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Bus. Part. Role", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/material_Material", - "maxLength": 18, - "name": "material_Material", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerRole", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Email", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/MailAddress", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Phone", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/PhoneNumber", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Phone", + "type": "String", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/FaxNumber", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Company", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/CompanyName", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Legal Form", + "type": "String", }, - ], - "name": "MaterialRatingsDetails", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/materialrating", - "isCollection": false, - "name": "materialrating", - "partner": "_MaterialRatingsDetails", - "referentialConstraint": Array [ - Object { - "sourceProperty": "materialrating_ID", - "sourceTypeName": "MaterialRatingsDetails", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatings", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/material", - "isCollection": false, - "name": "material", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "material_Material", - "sourceTypeName": "MaterialRatingsDetails", - "targetProperty": "Material", - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/LegalForm", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Currency Code", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/CurrencyCode", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Business Partner", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialRatingsDetails/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialRatingsDetails", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Currency", + "type": "String", }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Model_Year", - "maxLength": 4, - "name": "Model_Year", - "nullable": false, - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "Currency_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Warranty_Expiration", - "maxLength": 4, - "name": "Warranty_Expiration", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.MaterialYears/Model_Year", - "maxLength": 4, - "name": "Model_Year", - "nullable": false, - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Short Text", + "type": "String", }, - ], - "name": "MaterialYears", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency_Text", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "ISO Code", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division_Text", - "maxLength": 20, - "name": "Division_Text", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OrganizationDivision/Division", - "maxLength": 2, - "name": "Division", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/CurrencyISOCode", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Currency", + "type": "String", }, - ], - "name": "OrganizationDivision", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", - "maxLength": 1, - "name": "OverallBillingBlockStatus", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Product ID", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus_Text", - "maxLength": 20, - "name": "OverallBillingBlockStatus_Text", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "ProductID_Text", + "type": "Path", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallBillingBlockStatus/OverallBillingBlockStatus", - "maxLength": 1, - "name": "OverallBillingBlockStatus", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "name": "OverallBillingBlockStatus", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "OverallDeliveryBlockStatus", - "nullable": false, - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Description", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus_Text", - "maxLength": 20, - "name": "OverallDeliveryBlockStatus_Text", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID_Text", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Type Code", + "type": "String", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus/OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "OverallDeliveryBlockStatus", - "nullable": false, - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - ], - "name": "OverallDeliveryBlockStatus", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", - "maxLength": 1, - "name": "OverallSDProcessStatus", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/TypeCode", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Category", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus_Text", - "maxLength": 20, - "name": "OverallSDProcessStatus_Text", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Category", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Tax Tariff Code", + "type": "String", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.OverallSDProcessStatus/OverallSDProcessStatus", - "maxLength": 1, - "name": "OverallSDProcessStatus", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/TaxTarifCode", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Unit of Measure", + "type": "String", }, - ], - "name": "OverallSDProcessStatus", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating", - "name": "Rating", - "nullable": false, - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/MeasureUnit", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Weight", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating_Text", - "maxLength": 25, - "name": "Rating_Text", - "type": "Edm.String", + }, + Object { + "term": "Org.OData.Measures.V1.Unit", + "value": Object { + "Path": "WeightUnit", + "type": "Path", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.Rating", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.Rating/Rating", - "name": "Rating", - "nullable": false, - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", + }, + Object { + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "WeightUnit", + "type": "Path", }, - ], - "name": "Rating", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", - "maxLength": 3, - "name": "SDDocumentReason", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/WeightMeasure", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Unit of Measure", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason_Text", - "maxLength": 40, - "name": "SDDocumentReason_Text", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/WeightUnit", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Price", + "type": "String", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SDDocumentReason/SDDocumentReason", - "maxLength": 3, - "name": "SDDocumentReason", - "nullable": false, - "type": "Edm.String", + }, + Object { + "term": "Org.OData.Measures.V1.Unit", + "value": Object { + "Path": "CurrencyCode", + "type": "Path", }, - ], - "name": "SDDocumentReason", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", - "maxLength": 6, - "name": "SalesDistrict", - "nullable": false, - "type": "Edm.String", + }, + Object { + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "CurrencyCode", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict_Text", - "maxLength": 20, - "name": "SalesDistrict_Text", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Price", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Currency Code", + "type": "String", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesDistrict/SalesDistrict", - "maxLength": 6, - "name": "SalesDistrict", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/CurrencyCode", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Image", + "type": "String", }, - ], - "name": "SalesDistrict", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", - "maxLength": 3, - "name": "SalesGroup", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/PictureURL", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Width", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup_Text", - "maxLength": 20, - "name": "SalesGroup_Text", - "type": "Edm.String", + }, + Object { + "term": "Org.OData.Measures.V1.Unit", + "value": Object { + "Path": "DimensionUnit", + "type": "Path", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesGroup/SalesGroup", - "maxLength": 3, - "name": "SalesGroup", - "nullable": false, - "type": "Edm.String", + }, + Object { + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "DimensionUnit", + "type": "Path", }, - ], - "name": "SalesGroup", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", - "maxLength": 4, - "name": "SalesOffice", - "nullable": false, - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Width", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Depth", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice_Text", - "maxLength": 20, - "name": "SalesOffice_Text", - "type": "Edm.String", + }, + Object { + "term": "Org.OData.Measures.V1.Unit", + "value": Object { + "Path": "DimensionUnit", + "type": "Path", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOffice/SalesOffice", - "maxLength": 4, - "name": "SalesOffice", - "nullable": false, - "type": "Edm.String", + }, + Object { + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "DimensionUnit", + "type": "Path", }, - ], - "name": "SalesOffice", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Depth", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Height", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "type": "Edm.String", + }, + Object { + "term": "Org.OData.Measures.V1.Unit", + "value": Object { + "Path": "DimensionUnit", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItem", - "maxLength": 6, - "name": "SalesOrderItem", - "type": "Edm.String", + }, + Object { + "term": "Org.OData.Measures.V1.ISOCurrency", + "value": Object { + "Path": "DimensionUnit", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HigherLevelItem", - "maxLength": 6, - "name": "HigherLevelItem", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Height", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dimension Unit", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemCategory", - "maxLength": 4, - "name": "SalesOrderItemCategory", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/DimensionUnit", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Product", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrderItemText", - "maxLength": 40, - "name": "SalesOrderItemText", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Internal UoM", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/fieldControlType_item", - "name": "fieldControlType_item", - "type": "Edm.Int32", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "UnitOfMeasure_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Material", - "maxLength": 40, - "name": "Material", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PurchaseOrderByCustomer", - "maxLength": 35, - "name": "PurchaseOrderByCustomer", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Technical", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedDeliveryDate", - "name": "RequestedDeliveryDate", - "type": "Edm.Date", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure_Text", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dimension", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ConfirmedDeliveryDate", - "name": "ConfirmedDeliveryDate", - "type": "Edm.Date", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "UnitOfMeasureDimension_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantity", - "name": "RequestedQuantity", - "precision": 15, - "scale": 3, - "type": "Edm.Decimal", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/RequestedQuantityUnit", - "maxLength": 40, - "name": "RequestedQuantityUnit", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasureDimension", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/PricingDate", - "name": "PricingDate", - "type": "Edm.Date", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dimension text", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/MaterialGroup", - "maxLength": 9, - "name": "MaterialGroup", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasureDimension_Text", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Unit of Measure", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Batch", - "maxLength": 10, - "name": "Batch", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Plant", - "maxLength": 4, - "name": "Plant", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order ID", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/StorageLocation", - "maxLength": 4, - "name": "StorageLocation", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingPoint", - "maxLength": 4, - "name": "ShippingPoint", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderID", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item Position", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderItemID", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Product ID", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeliveryPriority", - "maxLength": 2, - "name": "DeliveryPriority", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "to_Product/ProductID_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/ProductID", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Quantity", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation1", - "maxLength": 70, - "name": "IncotermsLocation1", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/Quantity", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Internal UoM", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsLocation2", - "maxLength": 70, - "name": "IncotermsLocation2", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "to_UnitOfMeasure/UnitOfMeasure_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/QuantityUnitCode", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/DeliveryDate", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Currency", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ItemBillingBlockReason", - "maxLength": 2, - "name": "ItemBillingBlockReason", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CurrencyCode", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Gross Amount", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TransactionCurrency", - "maxLength": 5, - "name": "TransactionCurrency", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/GrossAmount", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Amount", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount", - "name": "NetAmount", - "precision": 15, - "scale": 2, - "type": "Edm.Decimal", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/NetAmount", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Tax Amount", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmountHidden", - "name": "NetAmountHidden", - "precision": 15, - "scale": 10, - "type": "Edm.Decimal", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/TaxAmount", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "ATP Status", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/NetAmount_text", - "maxLength": 10, - "name": "NetAmount_text", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "to_AvailableToPromiseStatus/Status_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/TargetAmount", - "name": "TargetAmount", - "precision": 15, - "scale": 2, - "type": "Edm.Decimal", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/AvailableToPromiseStatus", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item Position", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeLow", - "name": "ToleranceRangeLow", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/OpportunityItemID", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ToleranceRangeHigh", - "name": "ToleranceRangeHigh", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeLow", - "name": "DeviationRangeLow", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CreationDateTime", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DeviationRangeHigh", - "name": "DeviationRangeHigh", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "User Name", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeLow", - "name": "AcceptanceRangeLow", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/AcceptanceRangeHigh", - "name": "AcceptanceRangeHigh", - "precision": 23, - "scale": 0, - "type": "Edm.Decimal", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CreationUserName", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/Criticality", - "name": "Criticality", - "type": "Edm.Int32", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/LastChangedDateTime", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "User Name", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms_CustomerPaymentTerms", - "maxLength": 4, - "name": "_CustomerPaymentTerms_CustomerPaymentTerms", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority_DeliveryPriority", - "maxLength": 2, - "name": "_DeliveryPriority_DeliveryPriority", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/LastChangedUserName", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order Item non draft", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification_IncotermsClassification", - "maxLength": 3, - "name": "_IncotermsClassification_IncotermsClassification", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion_IncotermsVersion", - "maxLength": 4, - "name": "_IncotermsVersion_IncotermsVersion", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order ID", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason_BillingBlockReason", - "maxLength": 2, - "name": "_ItemBillingBlockReason_BillingBlockReason", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory_SalesDocumentItemCategory", - "maxLength": 4, - "name": "_ItemCategory_SalesDocumentItemCategory", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderID", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup_MaterialGroup", - "maxLength": 9, - "name": "_MaterialGroup_MaterialGroup", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Item Position", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder_SalesOrderType", - "maxLength": 4, - "name": "_SalesOrder_SalesOrderType", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint_ShippingPoint", - "maxLength": 4, - "name": "_ShippingPoint_ShippingPoint", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderItemID", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType_ShippingType", - "maxLength": 2, - "name": "_ShippingType_ShippingType", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/DeliveryDate", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Quantity", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner_ID", - "name": "owner_ID", - "type": "Edm.Guid", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/Quantity", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Internal UoM", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "to_UnitOfMeasure/UnitOfMeasure_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/QuantityUnitCode", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/CreationDateTime", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "User Name", + "type": "String", }, - ], - "name": "SalesOrderItem", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_CustomerPaymentTerms", - "isCollection": false, - "name": "_CustomerPaymentTerms", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_CustomerPaymentTerms_CustomerPaymentTerms", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "CustomerPaymentTerms", - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_DeliveryPriority", - "isCollection": false, - "name": "_DeliveryPriority", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_DeliveryPriority_DeliveryPriority", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "DeliveryPriority", - "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.DeliveryPriority", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/CreationUserName", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsClassification", - "isCollection": false, - "name": "_IncotermsClassification", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_IncotermsClassification_IncotermsClassification", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "IncotermsClassification", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_IncotermsVersion", - "isCollection": false, - "name": "_IncotermsVersion", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_IncotermsVersion_IncotermsVersion", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "IncotermsVersion", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/LastChangedDateTime", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemBillingBlockReason", - "isCollection": false, - "name": "_ItemBillingBlockReason", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ItemBillingBlockReason_BillingBlockReason", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "BillingBlockReason", - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "User Name", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ItemCategory", - "isCollection": false, - "name": "_ItemCategory", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ItemCategory_SalesDocumentItemCategory", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "SalesDocumentItemCategory", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItemCategory", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_Material", - "isCollection": false, - "name": "_Material", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "Material", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "Material", - "targetTypeName": "com.c_salesordermanage_sd.Material", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.Material", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/LastChangedUserName", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order ScheduleLine non draft", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialDetails", - "isCollection": true, - "name": "_MaterialDetails", - "partner": "owner", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.MaterialDetails", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_MaterialGroup", - "isCollection": false, - "name": "_MaterialGroup", - "partner": undefined, - "referentialConstraint": Array [ + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_MaterialGroup_MaterialGroup", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "MaterialGroup", - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", + "name": "NonFilterableProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Delete_stta_i_so_salesorder_nd_ac", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.MaterialGroup", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_RequestedQuantityUnit", - "isCollection": false, - "name": "_RequestedQuantityUnit", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.FilterRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "RequestedQuantityUnit", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "UnitOfMeasure", - "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", + "name": "NonSortableProperties", + "value": Object { + "PropertyPath": "Delete_stta_i_so_salesorder_nd_ac", + "type": "PropertyPath", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.UnitOfMeasure", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_SalesOrder", - "isCollection": false, - "name": "_SalesOrder", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_SalesOrder_SalesOrderType", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "SalesOrderType", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "term": "Org.OData.Capabilities.V1.SortRestrictions", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dyn. Action Control", + "type": "String", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingPoint", - "isCollection": false, - "name": "_ShippingPoint", - "partner": undefined, - "referentialConstraint": Array [ - Object { - "sourceProperty": "_ShippingPoint_ShippingPoint", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "ShippingPoint", - "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", - }, - ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingPoint", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Delete_stta_i_so_salesorder_nd_ac", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/_ShippingType", - "isCollection": false, - "name": "_ShippingType", - "partner": undefined, - "referentialConstraint": Array [ + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_ShippingType_ShippingType", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "ShippingType", - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + "name": "NonFilterableProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Save_stta_i_so_salesorder_nd_ac", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/owner", - "isCollection": false, - "name": "owner", - "partner": "_Item", - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.FilterRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "owner_ID", - "sourceTypeName": "SalesOrderItem", - "targetProperty": "ID", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", + "name": "NonSortableProperties", + "value": Object { + "PropertyPath": "Save_stta_i_so_salesorder_nd_ac", + "type": "PropertyPath", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItem/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", - "maxLength": 4, - "name": "SalesDocumentItemCategory", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory_Text", - "maxLength": 20, - "name": "SalesDocumentItemCategory_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/ScheduleLineIsAllowed", - "name": "ScheduleLineIsAllowed", - "type": "Edm.Boolean", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderItemCategory/SalesDocumentItemCategory", - "maxLength": 4, - "name": "SalesDocumentItemCategory", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesOrderItemCategory", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrder", - "maxLength": 10, - "name": "SalesOrder", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.SortRestrictions", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dyn. Action Control", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Delivered", - "name": "Delivered", - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Save_stta_i_so_salesorder_nd_ac", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ReturnInProcess", - "name": "ReturnInProcess", - "type": "Edm.Boolean", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "NonFilterableProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Setopportunityid_ac", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.FilterRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "NonSortableProperties", + "value": Object { + "PropertyPath": "Setopportunityid_ac", + "type": "PropertyPath", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ImageUrl", - "name": "ImageUrl", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.SortRestrictions", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dyn. Action Control", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SoldToParty", - "maxLength": 10, - "name": "SoldToParty", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Setopportunityid_ac", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "type": "Edm.String", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "NonFilterableProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Set_currency_code_ac", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Rating", - "name": "Rating", - "precision": 4, - "scale": 2, - "type": "Edm.Decimal", + "term": "Org.OData.Capabilities.V1.FilterRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "NonSortableProperties", + "value": Object { + "PropertyPath": "Set_currency_code_ac", + "type": "PropertyPath", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/Progress", - "name": "Progress", - "precision": 4, - "scale": 1, - "type": "Edm.Decimal", + "term": "Org.OData.Capabilities.V1.SortRestrictions", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dyn. Action Control", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DistributionChannel", - "maxLength": 2, - "name": "DistributionChannel", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Set_currency_code_ac", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OrganizationDivision", - "maxLength": 2, - "name": "OrganizationDivision", - "type": "Edm.String", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "NonFilterableProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Update_mc", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOffice", - "maxLength": 4, - "name": "SalesOffice", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.FilterRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "NonSortableProperties", + "value": Object { + "PropertyPath": "Update_mc", + "type": "PropertyPath", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesGroup", - "maxLength": 3, - "name": "SalesGroup", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.SortRestrictions", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Dyn. Method Control", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesDistrict", - "maxLength": 6, - "name": "SalesDistrict", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Update_mc", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PurchaseOrderByCustomer", - "maxLength": 35, - "name": "PurchaseOrderByCustomer", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order ID", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderType", - "maxLength": 4, - "name": "CustomerPurchaseOrderType", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPurchaseOrderDate", - "name": "CustomerPurchaseOrderDate", - "type": "Edm.Date", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Business Partner ID", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SDDocumentReason", - "maxLength": 3, - "name": "SDDocumentReason", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "to_BusinessPartner/CompanyName", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PricingDate", - "name": "PricingDate", - "type": "Edm.Date", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingCondition", - "maxLength": 2, - "name": "ShippingCondition", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BusinessPartnerID", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Currency", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CompleteDeliveryIsDefined", - "name": "CompleteDeliveryIsDefined", - "type": "Edm.Boolean", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "to_Currency/Currency_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CurrencyCode", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Gross Amount", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsClassification", - "maxLength": 3, - "name": "IncotermsClassification", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/GrossAmount", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Net Amount", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsVersion", - "maxLength": 4, - "name": "IncotermsVersion", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/NetAmount", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Tax Amount", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/fieldControlType", - "name": "fieldControlType", - "type": "Edm.Int32", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/TaxAmount", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Lifecycle Status", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation1", - "maxLength": 70, - "name": "IncotermsLocation1", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "to_LifecycleStatus/Status_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IncotermsLocation2", - "maxLength": 70, - "name": "IncotermsLocation2", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HeaderBillingBlockReason", - "maxLength": 2, - "name": "HeaderBillingBlockReason", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LifecycleStatus", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Confirmation Status", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockReason", - "maxLength": 2, - "name": "DeliveryBlockReason", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "to_BillingStatus/Status_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/CustomerPaymentTerms", - "maxLength": 4, - "name": "CustomerPaymentTerms", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/PaymentMethod", - "maxLength": 1, - "name": "PaymentMethod", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BillingStatus", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Status", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TotalNetAmount", - "name": "TotalNetAmount", - "precision": 15, - "scale": 10, - "type": "Edm.Decimal", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Text", + "value": Object { + "Path": "to_DeliveryStatus/Status_Text", + "type": "Path", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/TransactionCurrency", - "maxLength": 5, - "name": "TransactionCurrency", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallSDProcessStatus", - "maxLength": 1, - "name": "OverallSDProcessStatus", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/DeliveryStatus", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Opportunity ID", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/StatusCriticality", - "name": "StatusCriticality", - "type": "Edm.Int32", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/OpportunityID", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "OverallDeliveryBlockStatus", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "TRUE", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/OverallBillingBlockStatus", - "maxLength": 1, - "name": "OverallBillingBlockStatus", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/LastChangedDateTime", - "name": "LastChangedDateTime", - "type": "Edm.DateTimeOffset", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Approved", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderDate", - "name": "SalesOrderDate", - "type": "Edm.Date", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "COMMENT", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SalesOrderTypeName", - "maxLength": 20, - "name": "SalesOrderTypeName", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DeliveryBlockCriticality", - "name": "DeliveryBlockCriticality", - "type": "Edm.Byte", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/ApprovalComment", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/BillingBlockCriticality", - "name": "BillingBlockCriticality", - "type": "Edm.Byte", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DescriptionFieldForOPACleanup", - "maxLength": 40, - "name": "DescriptionFieldForOPACleanup", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CreationDateTime", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/isVerified", - "name": "isVerified", - "type": "Edm.Boolean", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "User Name", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsEnabled", - "name": "editActionIsEnabled", - "type": "Edm.Boolean", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/editActionIsDisabled", - "name": "editActionIsDisabled", - "type": "Edm.Boolean", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CreationUserName", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType_CustomerPurchaseOrderType", - "maxLength": 4, - "name": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Delivery Date", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason_DeliveryBlockReason", - "maxLength": 2, - "name": "_DeliveryBlockReason_DeliveryBlockReason", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LastChangedDateTime", + }, + Object { + "annotations": Array [ + Object { + "term": "Org.OData.Core.V1.Computed", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel_DistributionChannel", - "maxLength": 2, - "name": "_DistributionChannel_DistributionChannel", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "User Name", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason_BillingBlockReason", - "maxLength": 2, - "name": "_HeaderBillingBlockReason_BillingBlockReason", - "type": "Edm.String", + }, + Object { + "term": "com.sap.vocabularies.Common.v1.IsUpperCase", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision_Division", - "maxLength": 2, - "name": "_OrganizationDivision_Division", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LastChangedUserName", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.IsDigitSequence", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus_OverallBillingBlockStatus", - "maxLength": 1, - "name": "_OverallBillingBlockStatus_OverallBillingBlockStatus", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID2", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "Sales Order non draft", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", - "maxLength": 1, - "name": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "annotations": Array [ + Object { + "term": "com.sap.vocabularies.Common.v1.Label", + "value": Object { + "String": "TRUE", + "type": "String", }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict_SalesDistrict", - "maxLength": 6, - "name": "_SalesDistrict_SalesDistrict", - "type": "Edm.String", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult/IsInvalid", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup_SalesGroup", - "maxLength": 3, - "name": "_SalesGroup_SalesGroup", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Updatable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice_SalesOffice", - "maxLength": 4, - "name": "_SalesOffice_SalesOffice", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Deletable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization_SalesOrganization", - "maxLength": 4, - "name": "_SalesOrganization_SalesOrganization", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason_SDDocumentReason", - "maxLength": 3, - "name": "_SDDocumentReason_SDDocumentReason", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType_ShippingType", - "maxLength": 2, - "name": "_ShippingType_ShippingType", - "type": "Edm.String", + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Updatable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Deletable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasActiveEntity", - "name": "HasActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/HasDraftEntity", - "name": "HasDraftEntity", - "nullable": false, - "type": "Edm.Boolean", + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/ID", - "name": "ID", - "nullable": false, - "type": "Edm.Guid", + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Updatable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/IsActiveEntity", - "name": "IsActiveEntity", - "nullable": false, - "type": "Edm.Boolean", + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Deletable", + "value": Object { + "Bool": false, + "type": "Bool", + }, + }, + ], }, - ], - "name": "SalesOrderManage", - "navigationProperties": Array [ - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPaymentTerms", - "isCollection": false, - "name": "_CustomerPaymentTerms", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ + Object { + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "CustomerPaymentTerms", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "CustomerPaymentTerms", - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.CustomerPaymentTerms", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CustomerPurchaseOrderType", - "isCollection": false, - "name": "_CustomerPurchaseOrderType", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_CustomerPurchaseOrderType_CustomerPurchaseOrderType", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "CustomerPurchaseOrderType", - "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", + "name": "Updatable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.CustomerPurchaseOrderType", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DeliveryBlockReason", - "isCollection": false, - "name": "_DeliveryBlockReason", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_DeliveryBlockReason_DeliveryBlockReason", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "DeliveryBlockReason", - "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", + "name": "Deletable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.DeliveryBlockReason", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_DistributionChannel", - "isCollection": false, - "name": "_DistributionChannel", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_DistributionChannel_DistributionChannel", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "DistributionChannel", - "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.DistributionChannel", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_HeaderBillingBlockReason", - "isCollection": false, - "name": "_HeaderBillingBlockReason", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_HeaderBillingBlockReason_BillingBlockReason", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "BillingBlockReason", - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.BillingBlockReason", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsClassification", - "isCollection": false, - "name": "_IncotermsClassification", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "IncotermsClassification", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "IncotermsClassification", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", + "name": "Updatable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsClassification", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_IncotermsVersion", - "isCollection": false, - "name": "_IncotermsVersion", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "IncotermsVersion", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "IncotermsVersion", - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", + "name": "Deletable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.IncotermsVersion", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Item", - "isCollection": true, - "name": "_Item", - "partner": "owner", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderItem", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OrganizationDivision", - "isCollection": false, - "name": "_OrganizationDivision", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_OrganizationDivision_Division", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "Division", - "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.OrganizationDivision", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallBillingBlockStatus", - "isCollection": false, - "name": "_OverallBillingBlockStatus", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_OverallBillingBlockStatus_OverallBillingBlockStatus", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "OverallBillingBlockStatus", - "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.OverallBillingBlockStatus", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallDeliveryBlockStatus", - "isCollection": false, - "name": "_OverallDeliveryBlockStatus", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_OverallDeliveryBlockStatus_OverallDeliveryBlockStatus", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "OverallDeliveryBlockStatus", - "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", + "name": "Updatable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.OverallDeliveryBlockStatus", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_OverallSDProcessStatus", - "isCollection": false, - "name": "_OverallSDProcessStatus", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "OverallSDProcessStatus", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "OverallSDProcessStatus", - "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", + "name": "Deletable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.OverallSDProcessStatus", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_Partner", - "isCollection": true, - "name": "_Partner", - "partner": "owner", - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.HeaderPartner", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_CreditLimitDetails", - "isCollection": false, - "name": "_CreditLimitDetails", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "SalesOrder", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesDocument", - "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.CreditLimitDetails", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesDistrict", - "isCollection": false, - "name": "_SalesDistrict", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_SalesDistrict_SalesDistrict", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesDistrict", - "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.SalesDistrict", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesGroup", - "isCollection": false, - "name": "_SalesGroup", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_SalesGroup_SalesGroup", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesGroup", - "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", + "name": "Updatable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.SalesGroup", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOffice", - "isCollection": false, - "name": "_SalesOffice", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_SalesOffice_SalesOffice", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOffice", - "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", + "name": "Deletable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOffice", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrderType", - "isCollection": false, - "name": "_SalesOrderType", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "SalesOrderType", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOrderType", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderType", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SalesOrganization", - "isCollection": false, - "name": "_SalesOrganization", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_SalesOrganization_SalesOrganization", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOrganization", - "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", + "name": "Insertable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrganization", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SDDocumentReason", - "isCollection": false, - "name": "_SDDocumentReason", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.InsertRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_SDDocumentReason_SDDocumentReason", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SDDocumentReason", - "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", + "name": "Updatable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.SDDocumentReason", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingCondition", - "isCollection": false, - "name": "_ShippingCondition", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "ShippingCondition", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "ShippingCondition", - "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", + "name": "Deletable", + "value": Object { + "Bool": false, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingCondition", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShippingType", - "isCollection": false, - "name": "_ShippingType", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.DeleteRestrictions", + }, + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "_ShippingType_ShippingType", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "ShippingType", - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.ShippingType", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_ShipToParty", - "isCollection": false, - "name": "_ShipToParty", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "SalesOrder", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "SalesOrder", - "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.HeaderShipToParty", }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/_SoldToParty", - "isCollection": false, - "name": "_SoldToParty", - "partner": undefined, - "referentialConstraint": Array [ + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", + }, + Object { + "annotations": Array [ + Object { + "record": Object { + "propertyValues": Array [ Object { - "sourceProperty": "SoldToParty", - "sourceTypeName": "SalesOrderManage", - "targetProperty": "Customer", - "targetTypeName": "com.c_salesordermanage_sd.Customer", + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", + }, }, ], - "targetTypeName": "com.c_salesordermanage_sd.Customer", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": true, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/DraftAdministrativeData", - "isCollection": false, - "name": "DraftAdministrativeData", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.DraftAdministrativeData", - }, - Object { - "_type": "NavigationProperty", - "containsTarget": false, - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderManage/SiblingEntity", - "isCollection": false, - "name": "SiblingEntity", - "partner": undefined, - "referentialConstraint": Array [], - "targetTypeName": "com.c_salesordermanage_sd.SalesOrderManage", - }, - ], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType_Text", - "maxLength": 20, - "name": "SalesOrderType_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderProcessingType", - "maxLength": 1, - "name": "SalesOrderProcessingType", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/OrderTypeForBillingRequest", - "maxLength": 4, - "name": "OrderTypeForBillingRequest", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrderType/SalesOrderType", - "maxLength": 4, - "name": "SalesOrderType", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesOrderType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization_Text", - "maxLength": 20, - "name": "SalesOrganization_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganizationCurrency", - "maxLength": 5, - "name": "SalesOrganizationCurrency", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/CompanyCode", - "maxLength": 4, - "name": "CompanyCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/IntercompanyBillingCustomer", - "maxLength": 10, - "name": "IntercompanyBillingCustomer", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.SalesOrganization/SalesOrganization", - "maxLength": 4, - "name": "SalesOrganization", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "SalesOrganization", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", - "maxLength": 2, - "name": "ShippingCondition", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition_Text", - "maxLength": 20, - "name": "ShippingCondition_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingCondition/ShippingCondition", - "maxLength": 2, - "name": "ShippingCondition", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "ShippingCondition", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", - "maxLength": 4, - "name": "ShippingPoint", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint_Text", - "maxLength": 30, - "name": "ShippingPoint_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingPoint/ShippingPoint", - "maxLength": 4, - "name": "ShippingPoint", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "ShippingPoint", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType_Text", - "maxLength": 20, - "name": "ShippingType_Text", - "type": "Edm.String", - }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.ShippingType/ShippingType", - "maxLength": 2, - "name": "ShippingType", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "ShippingType", - "navigationProperties": Array [], - }, - Object { - "_type": "EntityType", - "actions": Object {}, - "entityProperties": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", - "maxLength": 40, - "name": "UnitOfMeasure", - "nullable": false, - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure_Text", - "maxLength": 30, - "name": "UnitOfMeasure_Text", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDimension", - "maxLength": 6, - "name": "UnitOfMeasureDimension", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureISOCode", - "maxLength": 3, - "name": "UnitOfMeasureISOCode", - "type": "Edm.String", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureNumberOfDecimals", - "name": "UnitOfMeasureNumberOfDecimals", - "type": "Edm.Int32", - }, - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasureDspNmbrOfDcmls", - "name": "UnitOfMeasureDspNmbrOfDcmls", - "type": "Edm.Int32", }, - ], - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure", - "keys": Array [ - Object { - "_type": "Property", - "fullyQualifiedName": "com.c_salesordermanage_sd.UnitOfMeasure/UnitOfMeasure", - "maxLength": 40, - "name": "UnitOfMeasure", - "nullable": false, - "type": "Edm.String", - }, - ], - "name": "UnitOfMeasure", - "navigationProperties": Array [], - }, - ], - "namespace": "com.c_salesordermanage_sd", - "singletons": Array [], - "typeDefinitions": Array [], - }, - "version": "4.0", - }, - RawMetadataInstance { - "identification": "annoFile", - "references": Array [ - Object { - "alias": "SalesOrder", - "namespace": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001", - "uri": "/sap/opu/odata4/sap/c_salesordermanage_srv/srvd/sap/c_salesordermanage_sd/0001/$metadata", - }, - Object { - "alias": "UI", - "namespace": "com.sap.vocabularies.UI.v1", - "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_UI',Version='0001',SAP__Origin='LOCAL')/$value", - }, - Object { - "alias": "vCard", - "namespace": "com.sap.vocabularies.Communication.v1", - "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMUNICATION',Version='0001',SAP__Origin='LOCAL')/$value", - }, - Object { - "alias": "Common", - "namespace": "com.sap.vocabularies.Common.v1", - "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMON',Version='0001',SAP__Origin='LOCAL')/$value", - }, - Object { - "alias": "Core", - "namespace": "Org.OData.Core.V1", - "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Core.V1.xml", - }, - Object { - "alias": "CQP", - "namespace": "Org.OData.Measures.V1", - "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Measures.V1.xml", + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderSL_ND", }, Object { - "alias": "Capabilities", - "namespace": "Org.OData.Capabilities.V1", - "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Capabilities.V1.xml", - }, - ], - "schema": Object { - "actions": Array [], - "annotations": Object { - "annoFile": Array [ + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "Org.OData.Core.V1.OperationAvailable", - "value": Object { - "Path": "in/editActionIsEnabled", - "type": "Path", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Updatable", + "value": Object { + "Path": "Update_mc", + "type": "Path", + }, }, - }, - ], - "target": "com.c_salesordermanage_sd.draftEdit(com.c_salesordermanage_sd.SalesOrderManage)", + ], + }, + "term": "Org.OData.Capabilities.V1.UpdateRestrictions", }, Object { - "annotations": Array [ - Object { - "collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Change Order Type", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd.CreateWithSalesOrderType", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", - }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Unbound Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/UnboundAction", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + "record": Object { + "propertyValues": Array [ + Object { + "name": "Searchable", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "propertyValues": Array [ - Object { - "name": "Label", - "value": Object { - "String": "Return In Process", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "com.c_salesordermanage_sd/ReturnInProcess", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAction", + }, + ], + }, + "term": "Org.OData.Capabilities.V1.SearchRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Product", + "type": "String", }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "SalesOrder", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "manageInline", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN", - "type": "String", - }, - }, - Object { - "name": "RequiresContext", - "value": Object { - "Bool": false, - "type": "Bool", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + }, + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_PrototypeProduct", + "type": "String", }, - Object { - "propertyValues": Array [ - Object { - "name": "SemanticObject", - "value": Object { - "String": "Action", - "type": "String", - }, - }, - Object { - "name": "Action", - "value": Object { - "String": "toappnavsampleParam", - "type": "String", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "IBN with context", - "type": "String", - }, - }, + }, + Object { + "name": "SearchSupported", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ Object { - "name": "RequiresContext", - "value": Object { - "Bool": true, - "type": "Bool", - }, + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, + }, + ], + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ProductID_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, Object { - "name": "Mapping", - "value": Object { - "Collection": Array [ - Object { - "propertyValues": Array [ - Object { - "name": "LocalProperty", - "value": Object { - "PropertyPath": "Delivered", - "type": "PropertyPath", - }, - }, - Object { - "name": "SemanticObjectProperty", - "value": Object { - "String": "Completed", - "type": "String", - }, - }, - ], - "type": undefined, + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "ProductID", + "type": "PropertyPath", }, - ], - "type": "Collection", - }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "ProductID", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation", + "type": "Collection", }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ID", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/ProductID", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Unit of Measure", + "type": "String", }, - Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "ImageUrl", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + }, + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_PrototypeUnitOfMeasure", + "type": "String", }, - Object { - "propertyValues": Array [ - Object { - "name": "Target", - "value": Object { - "AnnotationPath": "@UI.FieldGroup#multipleActionFields", - "type": "AnnotationPath", - }, - }, - Object { - "name": "Label", - "value": Object { - "String": "Sold-To Party", - "type": "String", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataFieldForAnnotation", + }, + Object { + "name": "SearchSupported", + "value": Object { + "Bool": true, + "type": "Bool", }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "_ShipToParty/isHidden", - "type": "Path", - }, - }, - ], - "propertyValues": Array [ + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ Object { - "name": "Value", - "value": Object { - "Path": "SalesOrderType", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "QuantityUnitCode", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "UnitOfMeasure", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", - }, - Object { - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "OverallSDProcessStatus", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "UnitOfMeasure_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, Object { - "name": "Criticality", - "value": Object { - "Path": "StatusCriticality", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "UnitOfMeasureDimension_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - Object { - "annotations": Array [ + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/QuantityUnitCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Sales Order Item ATP Status", + "type": "String", + }, + }, + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_AIS_SOI_Atp_Status", + "type": "String", + }, + }, + Object { + "name": "SearchSupported", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ Object { - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.Hidden", - "value": Object { - "Path": "Delivered", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "AvailableToPromiseStatus", + "type": "PropertyPath", + }, + }, + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Status", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - ], - "propertyValues": Array [ Object { - "name": "Value", - "value": Object { - "Path": "TotalNetAmount", - "type": "Path", - }, + "propertyValues": Array [ + Object { + "name": "ValueListProperty", + "value": Object { + "String": "Status_Text", + "type": "String", + }, + }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "type": "Collection", }, - ], - "qualifier": undefined, - "term": "com.sap.vocabularies.UI.v1.LineItem", - }, - ], - "target": "com.c_salesordermanage_sd.SalesOrderManage", + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/AvailableToPromiseStatus", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ - Object { - "qualifier": "Messages", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": undefined, - "type": "NavigationPropertyPath", - }, + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Unit of Measure", + "type": "String", + }, + }, + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_PrototypeUnitOfMeasure", + "type": "String", + }, + }, + Object { + "name": "SearchSupported", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "QuantityUnitCode", + "type": "PropertyPath", + }, }, Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "UnitOfMeasure", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "PropertyPath": "SAP__Messages", - "type": "PropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "UnitOfMeasure_Text", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "SoldToChangeSalesAreaShipTo", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "PropertyPath": "SoldToParty", - "type": "PropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "UnitOfMeasureDimension_Text", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SalesOrganization", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DistributionChannel", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OrganizationDivision", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "TransactionCurrency", - "type": "PropertyPath", - }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/QuantityUnitCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Business Partner", + "type": "String", + }, + }, + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_PrototypeBusinessPartner", + "type": "String", + }, + }, + Object { + "name": "SearchSupported", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "annotations": Array [ Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", + "qualifier": undefined, + "term": "com.sap.vocabularies.UI.v1.Importance", + "value": Object { + "EnumMember": "UI.ImportanceType/High", + "type": "EnumMember", + }, }, + ], + "propertyValues": Array [ Object { - "PropertyPath": "ShippingCondition", - "type": "PropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "CompanyName", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + Object { + "propertyValues": Array [ Object { - "PropertyPath": "CustomerPaymentTerms", - "type": "PropertyPath", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "BusinessPartnerID", + "type": "PropertyPath", + }, }, Object { - "PropertyPath": "IncotermsClassification", - "type": "PropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "BusinessPartnerID", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BusinessPartnerID", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Currency", + "type": "String", + }, + }, + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_PrototypeCurrency", + "type": "String", + }, + }, + Object { + "name": "SearchSupported", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "PropertyPath": "IncotermsVersion", - "type": "PropertyPath", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "CurrencyCode", + "type": "PropertyPath", + }, }, Object { - "PropertyPath": "IncotermsLocation1", - "type": "PropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "Currency", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ Object { - "PropertyPath": "IncotermsLocation2", - "type": "PropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "Currency_Text", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CurrencyCode", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Sales Order Lifecycle Status", + "type": "String", + }, + }, + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_AIS_SO_Lifecycle_Status", + "type": "String", + }, + }, + Object { + "name": "SearchSupported", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "PropertyPath": "CompleteDeliveryIsDefined", - "type": "PropertyPath", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "LifecycleStatus", + "type": "PropertyPath", + }, }, Object { - "PropertyPath": "SetBillingBlockIsHidden", - "type": "PropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "Status", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ Object { - "PropertyPath": "SetDeliveryBlockIsHidden", - "type": "PropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "Status_Text", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LifecycleStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Sales Order Confirmation Status", + "type": "String", + }, + }, + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_AIS_SO_Confirmation_Status", + "type": "String", + }, + }, + Object { + "name": "SearchSupported", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "NavigationPropertyPath": undefined, - "type": "NavigationPropertyPath", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "BillingStatus", + "type": "PropertyPath", + }, }, Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "Status", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", + }, + Object { + "propertyValues": Array [ Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "Status_Text", + "type": "String", + }, }, + ], + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BillingStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Label", + "value": Object { + "String": "Sales Order Delivery Status", + "type": "String", + }, + }, + Object { + "name": "CollectionPath", + "value": Object { + "String": "I_AIS_SO_Delivery_Status", + "type": "String", + }, + }, + Object { + "name": "SearchSupported", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "name": "Parameters", + "value": Object { + "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", + "name": "LocalDataProperty", + "value": Object { + "PropertyPath": "DeliveryStatus", + "type": "PropertyPath", + }, }, Object { - "NavigationPropertyPath": "_CreditLimitDetails", - "type": "NavigationPropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "Status", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterInOut", }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ItemCreationOrDeletion", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ + Object { + "propertyValues": Array [ Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", + "name": "ValueListProperty", + "value": Object { + "String": "Status_Text", + "type": "String", + }, }, ], - "type": "Collection", + "type": "com.sap.vocabularies.Common.v1.ValueListParameterDisplayOnly", + }, + ], + "type": "Collection", + }, + }, + ], + "type": undefined, + }, + "term": "com.sap.vocabularies.Common.v1.ValueList", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/DeliveryStatus", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.ApplyMultiUnitBehaviorForSortingAndFiltering", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "Transformations", + "value": Object { + "Collection": Array [ + "aggregate", + "groupby", + "filter", + ], + "type": "Collection", + }, + }, + Object { + "name": "Rollup", + "value": Object { + "EnumMember": "None", + "type": "EnumMember", + }, + }, + ], + "type": undefined, + }, + "term": "Org.OData.Aggregation.V1.ApplySupported", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderItemID", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/DeliveryDate", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/GrossAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/NetAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.FieldControl", + "value": Object { + "EnumMember": "Common.FieldControlType/Mandatory", + "type": "EnumMember", + }, + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/TaxAmount", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "NonFilterableProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Delete_stta_i_so_salesorder_nd_ac", + "type": "PropertyPath", }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + Object { + "PropertyPath": "Save_stta_i_so_salesorder_nd_ac", + "type": "PropertyPath", }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ItemUpdateAnyField", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + Object { + "PropertyPath": "Setopportunityid_ac", + "type": "PropertyPath", }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_Item", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + Object { + "PropertyPath": "Set_currency_code_ac", + "type": "PropertyPath", }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "TotalNetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", + Object { + "PropertyPath": "Update_mc", + "type": "PropertyPath", }, - }, - ], - "type": undefined, + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ShipToPartyChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "_ShipToParty/BusinessPartner", - "type": "PropertyPath", - }, - ], - "type": "Collection", + ], + "type": undefined, + }, + "term": "Org.OData.Capabilities.V1.FilterRestrictions", + }, + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "NonSortableProperties", + "value": Object { + "Collection": Array [ + Object { + "PropertyPath": "Delete_stta_i_so_salesorder_nd_ac", + "type": "PropertyPath", }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ShipToParty", - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_Partner", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", + Object { + "PropertyPath": "Save_stta_i_so_salesorder_nd_ac", + "type": "PropertyPath", }, - }, - ], - "type": undefined, + Object { + "PropertyPath": "Setopportunityid_ac", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "Set_currency_code_ac", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "Update_mc", + "type": "PropertyPath", + }, + ], + "type": "Collection", + }, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + ], + "type": undefined, + }, + "term": "Org.OData.Capabilities.V1.SortRestrictions", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", + }, + Object { + "annotations": Array [ + Object { + "collection": Array [ + Object { + "PropertyPath": "SalesOrderItemID", + "type": "PropertyPath", + }, + Object { + "PropertyPath": "SalesOrderID", + "type": "PropertyPath", }, ], - "target": "SalesOrder.SalesOrderManageType", + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticKey", }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + Object { + "annotations": Array [ Object { - "annotations": Array [ + "collection": Array [ Object { - "qualifier": "Messages", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": undefined, - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "SAP__Messages", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + "PropertyPath": "DeliveryDate", + "type": "PropertyPath", }, Object { - "qualifier": "PricingDateChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "PricingDate", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "NetAmount", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + "PropertyPath": "SalesOrderItemID", + "type": "PropertyPath", }, Object { - "qualifier": "PlantChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Plant", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Plant", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "ShippingPoint", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "Route", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, - }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", + "PropertyPath": "SalesOrderID", + "type": "PropertyPath", }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticKey", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + Object { + "annotations": Array [ + Object { + "collection": Array [ Object { - "qualifier": "StorageLocationChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "StorageLocation", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "PropertyPath": "SalesOrderID", + "type": "PropertyPath", + }, + ], + "qualifier": undefined, + "term": "com.sap.vocabularies.Common.v1.SemanticKey", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "annotations": Array [ + Object { + "qualifier": undefined, + "record": Object { + "propertyValues": Array [ + Object { + "name": "ReferencesAcrossChangeSetsSupported", + "value": Object { + "Bool": true, + "type": "Bool", + }, + }, + ], + "type": "Org.OData.Capabilities.V1.BatchSupportType", + }, + "term": "Org.OData.Capabilities.V1.BatchSupport", + }, + ], + "target": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities", + }, + ], + }, + "associationSets": Array [ + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_98B619DC575EE026387B36061DC79CA9", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrderItem_ND", + "role": "FromRole_assoc_98B619DC575EE026387B36061DC79CA9", + }, + Object { + "entitySet": "I_PrototypeCurrency", + "role": "ToRole_assoc_98B619DC575EE026387B36061DC79CA9", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_98B619DC575EE026387B36061DC79CA9", + "name": "assoc_98B619DC575EE026387B36061DC79CA9", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrder_ND", + "role": "FromRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + }, + Object { + "entitySet": "I_AIS_SO_Delivery_Status", + "role": "ToRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + "name": "assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrderItem_ND", + "role": "FromRole_assoc_B31EA5B76B2BE17336008E744602BB4A", + }, + Object { + "entitySet": "STTA_C_SO_SalesOrderSL_ND", + "role": "ToRole_assoc_B31EA5B76B2BE17336008E744602BB4A", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", + "name": "assoc_B31EA5B76B2BE17336008E744602BB4A", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrder_ND", + "role": "FromRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + }, + Object { + "entitySet": "STTA_C_SO_SalesOrder_ND", + "role": "ToRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + "name": "assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrder_ND", + "role": "FromRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + }, + Object { + "entitySet": "I_AIS_SO_Confirmation_Status", + "role": "ToRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + "name": "assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_B634F826B442E2FE38BD915BE0F1A337", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrderItem_ND", + "role": "FromRole_assoc_B634F826B442E2FE38BD915BE0F1A337", + }, + Object { + "entitySet": "I_PrototypeProduct", + "role": "ToRole_assoc_B634F826B442E2FE38BD915BE0F1A337", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_B634F826B442E2FE38BD915BE0F1A337", + "name": "assoc_B634F826B442E2FE38BD915BE0F1A337", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrder_ND", + "role": "FromRole_assoc_308674C33787A2E145F672046AE274B5", + }, + Object { + "entitySet": "STTA_C_SO_SalesOrderItem_ND", + "role": "ToRole_assoc_308674C33787A2E145F672046AE274B5", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", + "name": "assoc_308674C33787A2E145F672046AE274B5", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrderItem_ND", + "role": "FromRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + }, + Object { + "entitySet": "I_PrototypeUnitOfMeasure", + "role": "ToRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + "name": "assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_5020648A266404A9C9B80BF09D1A788E", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrderItem_ND", + "role": "FromRole_assoc_5020648A266404A9C9B80BF09D1A788E", + }, + Object { + "entitySet": "I_AIS_SOI_Atp_Status", + "role": "ToRole_assoc_5020648A266404A9C9B80BF09D1A788E", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_5020648A266404A9C9B80BF09D1A788E", + "name": "assoc_5020648A266404A9C9B80BF09D1A788E", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_CC1C658404B4508AA84831191CB1DE1E", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrderSL_ND", + "role": "FromRole_assoc_CC1C658404B4508AA84831191CB1DE1E", + }, + Object { + "entitySet": "STTA_C_SO_SalesOrder_ND", + "role": "ToRole_assoc_CC1C658404B4508AA84831191CB1DE1E", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_CC1C658404B4508AA84831191CB1DE1E", + "name": "assoc_CC1C658404B4508AA84831191CB1DE1E", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_C877CEF05B1D2D410C087D994993DFD0", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrder_ND", + "role": "FromRole_assoc_C877CEF05B1D2D410C087D994993DFD0", + }, + Object { + "entitySet": "I_PrototypeBusinessPartner", + "role": "ToRole_assoc_C877CEF05B1D2D410C087D994993DFD0", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_C877CEF05B1D2D410C087D994993DFD0", + "name": "assoc_C877CEF05B1D2D410C087D994993DFD0", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_A215B0A473F9686ACB5DDA8698C751DD", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrder_ND", + "role": "FromRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", + }, + Object { + "entitySet": "I_AIS_SO_Lifecycle_Status", + "role": "ToRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_A215B0A473F9686ACB5DDA8698C751DD", + "name": "assoc_A215B0A473F9686ACB5DDA8698C751DD", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrderSL_ND", + "role": "FromRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + }, + Object { + "entitySet": "I_PrototypeUnitOfMeasure", + "role": "ToRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + "name": "assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + }, + Object { + "association": "STTA_SALES_ORDER_ND_SRV_01.assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + "associationEnd": Array [ + Object { + "entitySet": "STTA_C_SO_SalesOrder_ND", + "role": "FromRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + }, + Object { + "entitySet": "I_PrototypeCurrency", + "role": "ToRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + "name": "assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + }, + ], + "associations": Array [ + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_CC1C658404B4508AA84831191CB1DE1E", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + Object { + "multiplicity": "1", + "role": "ToRole_assoc_CC1C658404B4508AA84831191CB1DE1E", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_CC1C658404B4508AA84831191CB1DE1E", + "name": "assoc_CC1C658404B4508AA84831191CB1DE1E", + "referentialConstraints": Array [ + Object { + "sourceProperty": "SalesOrderID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "SalesOrderID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + "name": "assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + "referentialConstraints": Array [ + Object { + "sourceProperty": "QuantityUnitCode", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "targetProperty": "UnitOfMeasure", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_98B619DC575EE026387B36061DC79CA9", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_98B619DC575EE026387B36061DC79CA9", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_98B619DC575EE026387B36061DC79CA9", + "name": "assoc_98B619DC575EE026387B36061DC79CA9", + "referentialConstraints": Array [], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_B634F826B442E2FE38BD915BE0F1A337", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_B634F826B442E2FE38BD915BE0F1A337", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_B634F826B442E2FE38BD915BE0F1A337", + "name": "assoc_B634F826B442E2FE38BD915BE0F1A337", + "referentialConstraints": Array [ + Object { + "sourceProperty": "ProductID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "ProductID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_B31EA5B76B2BE17336008E744602BB4A", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + Object { + "multiplicity": "*", + "role": "ToRole_assoc_B31EA5B76B2BE17336008E744602BB4A", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", + "name": "assoc_B31EA5B76B2BE17336008E744602BB4A", + "referentialConstraints": Array [ + Object { + "sourceProperty": "SalesOrderItemID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "SalesOrderItemID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + Object { + "sourceProperty": "SalesOrderID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "SalesOrderID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + "name": "assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + "referentialConstraints": Array [ + Object { + "sourceProperty": "QuantityUnitCode", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "UnitOfMeasure", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_5020648A266404A9C9B80BF09D1A788E", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_5020648A266404A9C9B80BF09D1A788E", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_5020648A266404A9C9B80BF09D1A788E", + "name": "assoc_5020648A266404A9C9B80BF09D1A788E", + "referentialConstraints": Array [ + Object { + "sourceProperty": "AvailableToPromiseStatus", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "Status", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + "name": "assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + "referentialConstraints": Array [ + Object { + "sourceProperty": "BillingStatus", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "Status", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_C877CEF05B1D2D410C087D994993DFD0", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_C877CEF05B1D2D410C087D994993DFD0", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_C877CEF05B1D2D410C087D994993DFD0", + "name": "assoc_C877CEF05B1D2D410C087D994993DFD0", + "referentialConstraints": Array [ + Object { + "sourceProperty": "BusinessPartnerID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "BusinessPartnerID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + "name": "assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + "referentialConstraints": Array [ + Object { + "sourceProperty": "CurrencyCode", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "Currency", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + "name": "assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + "referentialConstraints": Array [ + Object { + "sourceProperty": "DeliveryStatus", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "Status", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_308674C33787A2E145F672046AE274B5", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "multiplicity": "*", + "role": "ToRole_assoc_308674C33787A2E145F672046AE274B5", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", + "name": "assoc_308674C33787A2E145F672046AE274B5", + "referentialConstraints": Array [ + Object { + "sourceProperty": "SalesOrderID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "SalesOrderID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", + "type": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_A215B0A473F9686ACB5DDA8698C751DD", + "name": "assoc_A215B0A473F9686ACB5DDA8698C751DD", + "referentialConstraints": Array [ + Object { + "sourceProperty": "LifecycleStatus", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "Status", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + }, + ], + }, + Object { + "associationEnd": Array [ + Object { + "multiplicity": "1", + "role": "FromRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + Object { + "multiplicity": "0..1", + "role": "ToRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + "type": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + "name": "assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + "referentialConstraints": Array [], + }, + ], + "complexTypes": Array [ + Object { + "_type": "ComplexType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult", + "name": "DummyFunctionImportResult", + "navigationProperties": Array [], + "properties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.DummyFunctionImportResult/IsInvalid", + "name": "IsInvalid", + "type": "Edm.Boolean", + }, + ], + }, + ], + "entityContainer": Object { + "_type": "EntityContainer", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities", + "name": "STTA_SALES_ORDER_ND_SRV_01_Entities", + }, + "entitySets": Array [ + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", + "name": "I_AIS_SOI_Atp_Status", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", + "name": "I_AIS_SO_Confirmation_Status", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", + "name": "I_AIS_SO_Delivery_Status", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", + "name": "I_AIS_SO_Lifecycle_Status", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", + "name": "I_PrototypeBusinessPartner", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", + "name": "I_PrototypeProduct", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + "name": "I_PrototypeUnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", + "name": "STTA_C_SO_SalesOrderItem_ND", + "navigationPropertyBinding": Object { + "to_AvailableToPromiseStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", + "name": "I_AIS_SOI_Atp_Status", + "navigationPropertyBinding": Object {}, + }, + "to_Currency": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, + }, + "to_Product": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", + "name": "I_PrototypeProduct", + "navigationPropertyBinding": Object {}, + }, + "to_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", + "name": "STTA_C_SO_SalesOrder_ND", + "navigationPropertyBinding": Object { + "to_BillingStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", + "name": "I_AIS_SO_Confirmation_Status", + "navigationPropertyBinding": Object {}, + }, + "to_BusinessPartner": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", + "name": "I_PrototypeBusinessPartner", + "navigationPropertyBinding": Object {}, + }, + "to_Currency": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, + }, + "to_DeliveryStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", + "name": "I_AIS_SO_Delivery_Status", + "navigationPropertyBinding": Object {}, + }, + "to_Item": [Circular], + "to_LifecycleStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", + "name": "I_AIS_SO_Lifecycle_Status", + "navigationPropertyBinding": Object {}, + }, + }, + }, + "to_ScheduleLine": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderSL_ND", + "name": "STTA_C_SO_SalesOrderSL_ND", + "navigationPropertyBinding": Object { + "to_Item": [Circular], + "to_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", + "name": "STTA_C_SO_SalesOrder_ND", + "navigationPropertyBinding": Object { + "to_BillingStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", + "name": "I_AIS_SO_Confirmation_Status", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "ShippingPointChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ShippingPoint", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Route", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "to_BusinessPartner": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", + "name": "I_PrototypeBusinessPartner", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "RouteChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "Route", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "to_Currency": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "RequestedQuantityChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "RequestedQuantity", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": undefined, - "type": "NavigationPropertyPath", - }, - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "to_DeliveryStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", + "name": "I_AIS_SO_Delivery_Status", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - Object { - "qualifier": "RequestedDeliveryDateChange", - "record": Object { - "propertyValues": Array [ - Object { - "name": "SourceProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "RequestedDeliveryDate", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - Object { - "name": "TargetEntities", - "value": Object { - "Collection": Array [ - Object { - "NavigationPropertyPath": "_ScheduleLine", - "type": "NavigationPropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "to_Item": [Circular], + "to_LifecycleStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", + "name": "I_AIS_SO_Lifecycle_Status", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", }, - ], - "target": "SalesOrder.SalesOrderItemType", + }, + "to_UnitOfMeasure": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + "name": "I_PrototypeUnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "NetAmount", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + }, + "to_UnitOfMeasure": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + "name": "I_PrototypeUnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderSL_ND", + "name": "STTA_C_SO_SalesOrderSL_ND", + "navigationPropertyBinding": Object { + "to_Item": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", + "name": "STTA_C_SO_SalesOrderItem_ND", + "navigationPropertyBinding": Object { + "to_AvailableToPromiseStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", + "name": "I_AIS_SOI_Atp_Status", + "navigationPropertyBinding": Object {}, + }, + "to_Currency": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, + }, + "to_Product": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", + "name": "I_PrototypeProduct", + "navigationPropertyBinding": Object {}, + }, + "to_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", + "name": "STTA_C_SO_SalesOrder_ND", + "navigationPropertyBinding": Object { + "to_BillingStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", + "name": "I_AIS_SO_Confirmation_Status", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.UI.v1.DataFieldDefault", - }, - ], - "target": "SalesOrder.SalesOrderItemType/NetAmount", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Value", - "value": Object { - "Path": "RequestedQuantity", - "type": "Path", - }, - }, - ], - "type": "com.sap.vocabularies.UI.v1.DataField", + "to_BusinessPartner": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", + "name": "I_PrototypeBusinessPartner", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.UI.v1.DataFieldDefault", - }, - ], - "target": "SalesOrder.SalesOrderItemType/RequestedQuantity", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "HeaderBillingBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallBillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveBillingBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "to_Currency": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "HeaderBillingBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallBillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveBillingBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "to_DeliveryStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", + "name": "I_AIS_SO_Delivery_Status", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "DeliveryBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallDeliveryBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveDeliveryBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DeliveryBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DeliveryBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "to_Item": [Circular], + "to_LifecycleStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", + "name": "I_AIS_SO_Lifecycle_Status", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetDeliveryBlock", + }, + "to_ScheduleLine": [Circular], + "to_UnitOfMeasure": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + "name": "I_PrototypeUnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "DeliveryBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "OverallDeliveryBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveDeliveryBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DeliveryBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "DeliveryBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + }, + "to_SalesOrder": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", + "name": "STTA_C_SO_SalesOrder_ND", + "navigationPropertyBinding": Object { + "to_BillingStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", + "name": "I_AIS_SO_Confirmation_Status", + "navigationPropertyBinding": Object {}, + }, + "to_BusinessPartner": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", + "name": "I_PrototypeBusinessPartner", + "navigationPropertyBinding": Object {}, + }, + "to_Currency": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, + }, + "to_DeliveryStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", + "name": "I_AIS_SO_Delivery_Status", + "navigationPropertyBinding": Object {}, + }, + "to_Item": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", + "name": "STTA_C_SO_SalesOrderItem_ND", + "navigationPropertyBinding": Object { + "to_AvailableToPromiseStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", + "name": "I_AIS_SOI_Atp_Status", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveDeliveryBlock", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ItemBillingBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveBillingBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "_SalesOrder/OverallBillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "_SalesOrder/BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "to_Currency": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.SetBillingBlockItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "TargetProperties", - "value": Object { - "Collection": Array [ - Object { - "PropertyPath": "ItemBillingBlockReason", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "RemoveBillingBlockIsHidden", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "_SalesOrder/OverallBillingBlockStatus", - "type": "PropertyPath", - }, - Object { - "PropertyPath": "_SalesOrder/BillingBlockStatusCriticality", - "type": "PropertyPath", - }, - ], - "type": "Collection", - }, - }, - ], - "type": undefined, + "to_Product": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", + "name": "I_PrototypeProduct", + "navigationPropertyBinding": Object {}, }, - "term": "com.sap.vocabularies.Common.v1.SideEffects", - }, - ], - "target": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.RemoveBillingBlockItem", - }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Insertable", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.InsertRestrictionsType", + "to_SalesOrder": [Circular], + "to_ScheduleLine": [Circular], + "to_UnitOfMeasure": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + "name": "I_PrototypeUnitOfMeasure", + "navigationPropertyBinding": Object {}, }, - "term": "Org.OData.Capabilities.V1.InsertRestrictions", }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + }, + "to_LifecycleStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", + "name": "I_AIS_SO_Lifecycle_Status", + "navigationPropertyBinding": Object {}, + }, }, - Object { - "annotations": Array [ - Object { - "qualifier": undefined, - "record": Object { - "propertyValues": Array [ - Object { - "name": "Deletable", - "value": Object { - "Path": "owner/ReturnInProcess", - "type": "Path", - }, - }, - ], - "type": "Org.OData.Capabilities.V1.DeleteRestrictionsType", + }, + "to_UnitOfMeasure": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + "name": "I_PrototypeUnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, + }, + }, + Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrder_ND", + "name": "STTA_C_SO_SalesOrder_ND", + "navigationPropertyBinding": Object { + "to_BillingStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Confirmation_Status", + "name": "I_AIS_SO_Confirmation_Status", + "navigationPropertyBinding": Object {}, + }, + "to_BusinessPartner": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeBusinessPartner", + "name": "I_PrototypeBusinessPartner", + "navigationPropertyBinding": Object {}, + }, + "to_Currency": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, + }, + "to_DeliveryStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Delivery_Status", + "name": "I_AIS_SO_Delivery_Status", + "navigationPropertyBinding": Object {}, + }, + "to_Item": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderItem_ND", + "name": "STTA_C_SO_SalesOrderItem_ND", + "navigationPropertyBinding": Object { + "to_AvailableToPromiseStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SOI_Atp_Status", + "name": "I_AIS_SOI_Atp_Status", + "navigationPropertyBinding": Object {}, + }, + "to_Currency": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeCurrency", + "name": "I_PrototypeCurrency", + "navigationPropertyBinding": Object {}, + }, + "to_Product": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeProduct", + "name": "I_PrototypeProduct", + "navigationPropertyBinding": Object {}, + }, + "to_SalesOrder": [Circular], + "to_ScheduleLine": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/STTA_C_SO_SalesOrderSL_ND", + "name": "STTA_C_SO_SalesOrderSL_ND", + "navigationPropertyBinding": Object { + "to_Item": [Circular], + "to_SalesOrder": [Circular], + "to_UnitOfMeasure": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + "name": "I_PrototypeUnitOfMeasure", + "navigationPropertyBinding": Object {}, }, - "term": "Org.OData.Capabilities.V1.DeleteRestrictions", }, - ], - "target": "com.c_salesordermanage_sd.EntityContainer/HeaderPartner", + }, + "to_UnitOfMeasure": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_PrototypeUnitOfMeasure", + "name": "I_PrototypeUnitOfMeasure", + "navigationPropertyBinding": Object {}, + }, }, - ], - }, - "associationSets": Array [], - "associations": Array [], - "complexTypes": Array [], - "entityContainer": Object { - "_type": "EntityContainer", - "fullyQualifiedName": "", + }, + "to_LifecycleStatus": Object { + "_type": "EntitySet", + "entityTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_SALES_ORDER_ND_SRV_01_Entities/I_AIS_SO_Lifecycle_Status", + "name": "I_AIS_SO_Lifecycle_Status", + "navigationPropertyBinding": Object {}, + }, }, - "entitySets": Array [], - "entityTypes": Array [], - "namespace": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001.annotations", - "singletons": Array [], - "typeDefinitions": Array [], }, - "version": "4.0", - }, - ], - "_references": Array [ - Object { - "alias": "Analytics", - "namespace": "com.sap.vocabularies.Analytics.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Analytics.xml", - }, - Object { - "alias": "Capabilities", - "namespace": "Org.OData.Capabilities.V1", - "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.xml", - }, - Object { - "alias": "Common", - "namespace": "com.sap.vocabularies.Common.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Common.xml", - }, - Object { - "alias": "Communication", - "namespace": "com.sap.vocabularies.Communication.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/Communication.xml", - }, - Object { - "alias": "Core", - "namespace": "Org.OData.Core.V1", - "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml", - }, - Object { - "alias": "Measures", - "namespace": "Org.OData.Measures.V1", - "uri": "https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Measures.V1.xml", - }, - Object { - "alias": "PersonalData", - "namespace": "com.sap.vocabularies.PersonalData.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/PersonalData.xml", - }, - Object { - "alias": "UI", - "namespace": "com.sap.vocabularies.UI.v1", - "uri": "https://sap.github.io/odata-vocabularies/vocabularies/UI.xml", - }, - Object { - "alias": "SalesOrder", - "namespace": "com.sap.gateway.srvd.c_salesordermanage_sd.v0001", - "uri": "/sap/opu/odata4/sap/c_salesordermanage_srv/srvd/sap/c_salesordermanage_sd/0001/$metadata", - }, - Object { - "alias": "UI", - "namespace": "com.sap.vocabularies.UI.v1", - "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_UI',Version='0001',SAP__Origin='LOCAL')/$value", - }, - Object { - "alias": "vCard", - "namespace": "com.sap.vocabularies.Communication.v1", - "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMUNICATION',Version='0001',SAP__Origin='LOCAL')/$value", - }, - Object { - "alias": "Common", - "namespace": "com.sap.vocabularies.Common.v1", - "uri": "/sap/opu/odata/IWFND/CATALOGSERVICE;v=2/Vocabularies(TechnicalName='%2FIWBEP%2FVOC_COMMON',Version='0001',SAP__Origin='LOCAL')/$value", - }, - Object { - "alias": "Core", - "namespace": "Org.OData.Core.V1", - "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Core.V1.xml", - }, - Object { - "alias": "CQP", - "namespace": "Org.OData.Measures.V1", - "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Measures.V1.xml", - }, - Object { - "alias": "Capabilities", - "namespace": "Org.OData.Capabilities.V1", - "uri": "https://github.com/oasis-tcs/odata-vocabularies/blob/master/vocabularies/Org.OData.Capabilities.V1.xml", - }, - ], - "_singletons": Array [], - "_typeDefinitions": Array [], - "identification": "mergedParserInstance", - "version": "4.0", + ], + "entityTypes": Array [ + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status", + "maxLength": 10, + "name": "Status", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status_Text", + "maxLength": 60, + "name": "Status_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType/Status", + "maxLength": 10, + "name": "Status", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_AIS_SOI_Atp_StatusType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status", + "maxLength": 10, + "name": "Status", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status_Text", + "maxLength": 60, + "name": "Status_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType/Status", + "maxLength": 10, + "name": "Status", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_AIS_SO_Confirmation_StatusType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status", + "maxLength": 10, + "name": "Status", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status_Text", + "maxLength": 60, + "name": "Status_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType/Status", + "maxLength": 10, + "name": "Status", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_AIS_SO_Delivery_StatusType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status", + "maxLength": 10, + "name": "Status", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status_Text", + "maxLength": 60, + "name": "Status_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType/Status", + "maxLength": 10, + "name": "Status", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_AIS_SO_Lifecycle_StatusType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerID", + "maxLength": 10, + "name": "BusinessPartnerID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerRole", + "maxLength": 3, + "name": "BusinessPartnerRole", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/MailAddress", + "maxLength": 255, + "name": "MailAddress", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/PhoneNumber", + "maxLength": 30, + "name": "PhoneNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/FaxNumber", + "maxLength": 30, + "name": "FaxNumber", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/CompanyName", + "maxLength": 80, + "name": "CompanyName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/LegalForm", + "maxLength": 10, + "name": "LegalForm", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/CurrencyCode", + "maxLength": 5, + "name": "CurrencyCode", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType/BusinessPartnerID", + "maxLength": 10, + "name": "BusinessPartnerID", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_PrototypeBusinessPartnerType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency", + "maxLength": 5, + "name": "Currency", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency_Text", + "maxLength": 15, + "name": "Currency_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Decimals", + "name": "Decimals", + "type": "Edm.Byte", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/CurrencyISOCode", + "maxLength": 3, + "name": "CurrencyISOCode", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType/Currency", + "maxLength": 5, + "name": "Currency", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_PrototypeCurrencyType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID", + "maxLength": 10, + "name": "ProductID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID_Text", + "maxLength": 255, + "name": "ProductID_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/TypeCode", + "maxLength": 2, + "name": "TypeCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Category", + "maxLength": 40, + "name": "Category", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/TaxTarifCode", + "name": "TaxTarifCode", + "type": "Edm.Byte", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/MeasureUnit", + "maxLength": 3, + "name": "MeasureUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/WeightMeasure", + "name": "WeightMeasure", + "precision": 13, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/WeightUnit", + "maxLength": 3, + "name": "WeightUnit", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Price", + "name": "Price", + "precision": 16, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/CurrencyCode", + "maxLength": 5, + "name": "CurrencyCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/PictureURL", + "maxLength": 255, + "name": "PictureURL", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Width", + "name": "Width", + "precision": 13, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Depth", + "name": "Depth", + "precision": 13, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/Height", + "name": "Height", + "precision": 13, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/DimensionUnit", + "maxLength": 3, + "name": "DimensionUnit", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType/ProductID", + "maxLength": 10, + "name": "ProductID", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_PrototypeProductType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure", + "maxLength": 3, + "name": "UnitOfMeasure", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure_Text", + "maxLength": 6, + "name": "UnitOfMeasure_Text", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasureDimension", + "maxLength": 6, + "name": "UnitOfMeasureDimension", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasureDimension_Text", + "maxLength": 20, + "name": "UnitOfMeasureDimension_Text", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType/UnitOfMeasure", + "maxLength": 3, + "name": "UnitOfMeasure", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "I_PrototypeUnitOfMeasureType", + "navigationProperties": Array [], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderID", + "maxLength": 10, + "name": "SalesOrderID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderItemID", + "maxLength": 10, + "name": "SalesOrderItemID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/ProductID", + "maxLength": 10, + "name": "ProductID", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/Quantity", + "name": "Quantity", + "precision": 13, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/QuantityUnitCode", + "maxLength": 3, + "name": "QuantityUnitCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/DeliveryDate", + "name": "DeliveryDate", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CurrencyCode", + "maxLength": 5, + "name": "CurrencyCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/GrossAmount", + "name": "GrossAmount", + "precision": 16, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/NetAmount", + "name": "NetAmount", + "precision": 16, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/TaxAmount", + "name": "TaxAmount", + "precision": 16, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/AvailableToPromiseStatus", + "maxLength": 1, + "name": "AvailableToPromiseStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/OpportunityItemID", + "maxLength": 10, + "name": "OpportunityItemID", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CreationDateTime", + "name": "CreationDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/CreationUserName", + "maxLength": 12, + "name": "CreationUserName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/LastChangedDateTime", + "name": "LastChangedDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/LastChangedUserName", + "maxLength": 12, + "name": "LastChangedUserName", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderID", + "maxLength": 10, + "name": "SalesOrderID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/SalesOrderItemID", + "maxLength": 10, + "name": "SalesOrderItemID", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "STTA_C_SO_SalesOrderItem_NDType", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_5020648A266404A9C9B80BF09D1A788E", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_AvailableToPromiseStatus", + "name": "to_AvailableToPromiseStatus", + "referentialConstraint": Array [ + Object { + "sourceProperty": "AvailableToPromiseStatus", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "Status", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SOI_Atp_StatusType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_5020648A266404A9C9B80BF09D1A788E", + "toRole": "ToRole_assoc_5020648A266404A9C9B80BF09D1A788E", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_98B619DC575EE026387B36061DC79CA9", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_Currency", + "name": "to_Currency", + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_98B619DC575EE026387B36061DC79CA9", + "toRole": "ToRole_assoc_98B619DC575EE026387B36061DC79CA9", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_B634F826B442E2FE38BD915BE0F1A337", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_Product", + "name": "to_Product", + "referentialConstraint": Array [ + Object { + "sourceProperty": "ProductID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "ProductID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeProductType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_B634F826B442E2FE38BD915BE0F1A337", + "toRole": "ToRole_assoc_B634F826B442E2FE38BD915BE0F1A337", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_B31EA5B76B2BE17336008E744602BB4A", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_ScheduleLine", + "name": "to_ScheduleLine", + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrderItemID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "SalesOrderItemID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + Object { + "sourceProperty": "SalesOrderID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "SalesOrderID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", + "toRole": "ToRole_assoc_B31EA5B76B2BE17336008E744602BB4A", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_UnitOfMeasure", + "name": "to_UnitOfMeasure", + "referentialConstraint": Array [ + Object { + "sourceProperty": "QuantityUnitCode", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "UnitOfMeasure", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + "toRole": "ToRole_assoc_DAC3F5C3C763D24AB1C7B0197CB93703", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "ToRole_assoc_308674C33787A2E145F672046AE274B5", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType/to_SalesOrder", + "name": "to_SalesOrder", + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrderID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + "targetProperty": "SalesOrderID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", + "toRole": "FromRole_assoc_308674C33787A2E145F672046AE274B5", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderID", + "maxLength": 10, + "name": "SalesOrderID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderItemID", + "maxLength": 10, + "name": "SalesOrderItemID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/DeliveryDate", + "name": "DeliveryDate", + "nullable": false, + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/Quantity", + "name": "Quantity", + "precision": 13, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/QuantityUnitCode", + "maxLength": 3, + "name": "QuantityUnitCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/CreationDateTime", + "name": "CreationDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/CreationUserName", + "maxLength": 12, + "name": "CreationUserName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/LastChangedDateTime", + "name": "LastChangedDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/LastChangedUserName", + "maxLength": 12, + "name": "LastChangedUserName", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderID", + "maxLength": 10, + "name": "SalesOrderID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/SalesOrderItemID", + "maxLength": 10, + "name": "SalesOrderItemID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/DeliveryDate", + "name": "DeliveryDate", + "nullable": false, + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + ], + "name": "STTA_C_SO_SalesOrderSL_NDType", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "ToRole_assoc_B31EA5B76B2BE17336008E744602BB4A", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/to_Item", + "name": "to_Item", + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrderItemID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "targetProperty": "SalesOrderItemID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + Object { + "sourceProperty": "SalesOrderID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "targetProperty": "SalesOrderID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_B31EA5B76B2BE17336008E744602BB4A", + "toRole": "FromRole_assoc_B31EA5B76B2BE17336008E744602BB4A", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_CC1C658404B4508AA84831191CB1DE1E", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/to_SalesOrder", + "name": "to_SalesOrder", + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrderID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "targetProperty": "SalesOrderID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_CC1C658404B4508AA84831191CB1DE1E", + "toRole": "ToRole_assoc_CC1C658404B4508AA84831191CB1DE1E", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType/to_UnitOfMeasure", + "name": "to_UnitOfMeasure", + "referentialConstraint": Array [ + Object { + "sourceProperty": "QuantityUnitCode", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderSL_NDType", + "targetProperty": "UnitOfMeasure", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeUnitOfMeasureType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + "toRole": "ToRole_assoc_2B82274F7B1FEC48FFCE1DB07F51E02D", + }, + ], + }, + Object { + "_type": "EntityType", + "actions": Object {}, + "entityProperties": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Delete_stta_i_so_salesorder_nd_ac", + "name": "Delete_stta_i_so_salesorder_nd_ac", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Save_stta_i_so_salesorder_nd_ac", + "name": "Save_stta_i_so_salesorder_nd_ac", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Setopportunityid_ac", + "name": "Setopportunityid_ac", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Set_currency_code_ac", + "name": "Set_currency_code_ac", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Update_mc", + "name": "Update_mc", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID", + "maxLength": 10, + "name": "SalesOrderID", + "nullable": false, + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BusinessPartnerID", + "maxLength": 10, + "name": "BusinessPartnerID", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CurrencyCode", + "maxLength": 5, + "name": "CurrencyCode", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/GrossAmount", + "name": "GrossAmount", + "precision": 16, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/NetAmount", + "name": "NetAmount", + "precision": 16, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/TaxAmount", + "name": "TaxAmount", + "precision": 16, + "scale": 3, + "type": "Edm.Decimal", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LifecycleStatus", + "maxLength": 1, + "name": "LifecycleStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/BillingStatus", + "maxLength": 1, + "name": "BillingStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/DeliveryStatus", + "maxLength": 1, + "name": "DeliveryStatus", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/OpportunityID", + "maxLength": 35, + "name": "OpportunityID", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/Approved", + "name": "Approved", + "type": "Edm.Boolean", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/ApprovalComment", + "maxLength": 80, + "name": "ApprovalComment", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CreationDateTime", + "name": "CreationDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/CreationUserName", + "maxLength": 12, + "name": "CreationUserName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LastChangedDateTime", + "name": "LastChangedDateTime", + "precision": 7, + "type": "Edm.DateTimeOffset", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/LastChangedUserName", + "maxLength": 12, + "name": "LastChangedUserName", + "type": "Edm.String", + }, + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID2", + "maxLength": 10, + "name": "SalesOrderID2", + "type": "Edm.String", + }, + ], + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "keys": Array [ + Object { + "_type": "Property", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/SalesOrderID", + "maxLength": 10, + "name": "SalesOrderID", + "nullable": false, + "type": "Edm.String", + }, + ], + "name": "STTA_C_SO_SalesOrder_NDType", + "navigationProperties": Array [ + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_BillingStatus", + "name": "to_BillingStatus", + "referentialConstraint": Array [ + Object { + "sourceProperty": "BillingStatus", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "Status", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Confirmation_StatusType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + "toRole": "ToRole_assoc_10E3E7F6F76B9946D7CAA2B380F91D06", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_C877CEF05B1D2D410C087D994993DFD0", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_BusinessPartner", + "name": "to_BusinessPartner", + "referentialConstraint": Array [ + Object { + "sourceProperty": "BusinessPartnerID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "BusinessPartnerID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeBusinessPartnerType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_C877CEF05B1D2D410C087D994993DFD0", + "toRole": "ToRole_assoc_C877CEF05B1D2D410C087D994993DFD0", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_Currency", + "name": "to_Currency", + "referentialConstraint": Array [ + Object { + "sourceProperty": "CurrencyCode", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "Currency", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_PrototypeCurrencyType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + "toRole": "ToRole_assoc_3FD2F89CEE9A6A339015B1CAD2DD17C0", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_DeliveryStatus", + "name": "to_DeliveryStatus", + "referentialConstraint": Array [ + Object { + "sourceProperty": "DeliveryStatus", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "Status", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Delivery_StatusType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + "toRole": "ToRole_assoc_CBD47C1B7CD3E449CD31E2D43ED470C6", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_308674C33787A2E145F672046AE274B5", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_Item", + "name": "to_Item", + "referentialConstraint": Array [ + Object { + "sourceProperty": "SalesOrderID", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "SalesOrderID", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrderItem_NDType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_308674C33787A2E145F672046AE274B5", + "toRole": "ToRole_assoc_308674C33787A2E145F672046AE274B5", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_LifecycleStatus", + "name": "to_LifecycleStatus", + "referentialConstraint": Array [ + Object { + "sourceProperty": "LifecycleStatus", + "sourceTypeName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType", + "targetProperty": "Status", + "targetTypeName": "STTA_SALES_ORDER_ND_SRV_01.I_AIS_SO_Lifecycle_StatusType", + }, + ], + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_A215B0A473F9686ACB5DDA8698C751DD", + "toRole": "ToRole_assoc_A215B0A473F9686ACB5DDA8698C751DD", + }, + Object { + "_type": "NavigationProperty", + "fromRole": "FromRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + "fullyQualifiedName": "STTA_SALES_ORDER_ND_SRV_01.STTA_C_SO_SalesOrder_NDType/to_SalesOrder", + "name": "to_SalesOrder", + "relationship": "STTA_SALES_ORDER_ND_SRV_01.assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + "toRole": "ToRole_assoc_D7AD7DDEFEB236DB7994B924F53ADC42", + }, + ], + }, + ], + "namespace": "STTA_SALES_ORDER_ND_SRV_01", + "singletons": Array [], + "typeDefinitions": Array [], + }, + "version": "1.0", } `; diff --git a/packages/edmx-parser/test/fixtures/v4/static-action.xml b/packages/edmx-parser/test/fixtures/v4/static-action.xml new file mode 100644 index 00000000..b6991888 --- /dev/null +++ b/packages/edmx-parser/test/fixtures/v4/static-action.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/edmx-parser/test/parser.spec.ts b/packages/edmx-parser/test/parser.spec.ts index 5e2620d3..9e393c77 100644 --- a/packages/edmx-parser/test/parser.spec.ts +++ b/packages/edmx-parser/test/parser.spec.ts @@ -12,36 +12,36 @@ describe('Parser', function () { expect(mergeSchema).toMatchSnapshot(); }); - it('can convertTypes an v3 edmx file', async () => { + it('can parse an v3 edmx file', async () => { const xmlFile = await loadFixture('northwind.metadata.xml'); const schema: RawMetadata = parse(xmlFile); expect(schema).toMatchSnapshot(); }); - it('can convertTypes the worklist edmx file', async () => { + it('can parse the worklist edmx file', async () => { const xmlFile = await loadFixture('v2/worklist.xml'); const schema: RawMetadata = parse(xmlFile); expect(schema).toMatchSnapshot(); }); - it('can convertTypes a v2 edmx file with function import', async () => { + it('can parse a v2 edmx file with function import', async () => { const xmlFile = await loadFixture('v2/metadataFunctionImport.xml'); const schema: RawMetadata = parse(xmlFile); expect(schema).toMatchSnapshot(); }); - it('can convertTypes a v2 edmx file with analytics', async () => { + it('can parse a v2 edmx file with analytics', async () => { const xmlFile = await loadFixture('v2/metadata_analytics.xml'); const schema: RawMetadata = parse(xmlFile); expect(schema).toMatchSnapshot(); }); - it('can convertTypes a weird edmx file', async () => { + it('can parse a weird edmx file', async () => { const xmlFile = await loadFixture('weirdCollection.metadata.xml'); const schema: RawMetadata = parse(xmlFile); expect(schema).toMatchSnapshot(); }); - it('can convertTypes a trippin metadata', async () => { + it('can parse a trippin metadata', async () => { const xmlFile = await loadFixture('v4/trippin/metadata.xml'); const schema: RawMetadata = parse(xmlFile); const annoFile = await loadFixture('v4/trippin/annotation.xml'); @@ -49,18 +49,24 @@ describe('Parser', function () { const mergeSchema = merge(schema, annoSchema); expect(mergeSchema).toMatchSnapshot(); }); - it('can convertTypes a metadata with a typedef', async () => { + it('can parse a metadata with a typedef', async () => { const xmlFile = await loadFixture('v4/withTypeDef.xml'); const schema: RawMetadata = parse(xmlFile); expect(schema).toMatchSnapshot(); }); - it('can convertTypes an edmx file', async () => { + it('can parse an edmx file', async () => { const xmlFile = await loadFixture('salesOrder.metadata.xml'); const schema: RawMetadata = parse(xmlFile); expect(schema).toMatchSnapshot(); }); + it('can parse edmx with a static action', async () => { + const xmlFile = await loadFixture('v4/static-action.xml'); + const schema: RawMetadata = parse(xmlFile); + expect(schema).toMatchSnapshot(); + }); + describe('can parse all edmx file', () => { const indexFile = JSON.parse(loadFixtureSync('v2/index.json')); indexFile.forEach((serviceName: string) => { diff --git a/packages/vocabularies-types/src/Edm.ts b/packages/vocabularies-types/src/Edm.ts index 8f459c9d..1fad5080 100644 --- a/packages/vocabularies-types/src/Edm.ts +++ b/packages/vocabularies-types/src/Edm.ts @@ -405,6 +405,7 @@ export type EntityContainer = { export type ActionParameter = { _type: 'ActionParameter'; isEntitySet: boolean; + isCollection: boolean; name: string; fullyQualifiedName: string; type: string;