b1-sl
Version:
library for connection and session management of the service layer sap b1
66 lines (63 loc) • 2.01 kB
JavaScript
class AddressExtension {
constructor() {
this.ShipToStreet = new String();
this.ShipToStreetNo = new String();
this.ShipToBlock = new String();
this.ShipToBuilding = new String();
this.ShipToCity = new String();
this.ShipToZipCode = new String();
this.ShipToCounty = new String();
this.ShipToState = new String();
this.ShipToCountry = new String();
this.ShipToAddressType = new String();
this.BillToStreet = new String();
this.BillToStreetNo = new String();
this.BillToBlock = new String();
this.BillToBuilding = new String();
this.BillToCity = new String();
this.BillToZipCode = new String();
this.BillToCounty = new String();
this.BillToState = new String();
this.BillToCountry = new String();
this.BillToAddressType = new String();
this.ShipToGlobalLocationNumber = new String();
this.BillToGlobalLocationNumber = new String();
this.ShipToAddress2 = new String();
this.ShipToAddress3 = new String();
this.BillToAddress2 = new String();
this.BillToAddress3 = new String();
this.PlaceOfSupply = new String();
this.PurchasePlaceOfSupply = new String();
this.DocEntry = new Number();
}
ShipToStreet;
ShipToStreetNo;
ShipToBlock;
ShipToBuilding;
ShipToCity;
ShipToZipCode;
ShipToCounty;
ShipToState;
ShipToCountry;
ShipToAddressType;
BillToStreet;
BillToStreetNo;
BillToBlock;
BillToBuilding;
BillToCity;
BillToZipCode;
BillToCounty;
BillToState;
BillToCountry;
BillToAddressType;
ShipToGlobalLocationNumber;
BillToGlobalLocationNumber;
ShipToAddress2;
ShipToAddress3;
BillToAddress2;
BillToAddress3;
PlaceOfSupply;
PurchasePlaceOfSupply;
DocEntry;
}
module.exports = AddressExtension;