sap.s4hana.api_slspricingconditionrecord_srv
Modules
sap.s4hana.api_slspricingconditionrecord_srv
sap.s4hana.api_slspricingconditionrecord_srv.oasModule sap.s4hana.api_slspricingconditionrecord_srv
API
Definitions
ballerinax/sap.s4hana.api_slspricingconditionrecord_srv Ballerina library
Overview
S/4HANA is a robust enterprise resource planning (ERP) solution, designed for large-scale enterprises by SAP SE.
The SAP S/4HANA Sales connector provides APIs that enable seamless integration with the Condition Record for Pricing in Sales API v1.2.0. The service allows to create, read, update, and delete condition records inside condition record, validity of condition record, pricing scale, and condition supplement.
Key Features
- Create, read, update, and delete pricing condition records in SAP S/4HANA
- Seamless integration with the Condition Record for Pricing in Sales API v1.2.0
- Support for basic and OAuth 2.0 authentication
- Batch operations, so a whole price list is published in one round trip
Setup guide
-
Sign in to your S/4HANA dashboard.
-
Under the
Communication Managementsection, click on theDisplay Communications Scenariotitle.
-
In the search bar, type
Pricing Data Integrationand select the corresponding scenario from the results.
-
In the top right corner of the screen, click on
Create Communication Arrangement.
-
Enter a unique name for the arrangement.

-
Choose an existing
Communication Systemfrom the dropdown menu and save your arrangement.
-
The hostname (
<unique id>-api.s4hana.cloud.sap) will be displayed in the top right corner of the screen.
Quickstart
To use the sap.s4hana.api_slspricingconditionrecord_srv connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
Import the sap.s4hana.api_slspricingconditionrecord_srv module.
import ballerinax/sap.s4hana.api_slspricingconditionrecord_srv as conditionrecord; import ballerinax/sap.s4hana.api_slspricingconditionrecord_srv.oas;
Step 2: Instantiate a new connector
Use the hostname and credentials to initiate a client
configurable string hostname = ?; configurable string username = ?; configurable string password = ?; conditionrecord:Client conditionRecordClient = check new ( { auth: { username, password } }, hostname );
Step 3: Invoke the connector operation
Now, utilize the available connector operations.
oas:CollectionOfA_SlsPrcgConditionRecordWrapper listASlsPrcgConditionRecord = check conditionRecordClient->listA_SlsPrcgConditionRecords();
Step 4: Run the Ballerina application
bal run
Examples
The S/4 HANA Sales and Distribution Ballerina connectors provide practical examples illustrating usage in various scenarios. Explore these examples, covering use cases like accessing S/4HANA Sales Order (A2X) API.
-
Salesforce to S/4HANA Integration - Demonstrates leveraging the
sap.s4hana.api_sales_order_srv:Clientin Ballerina for S/4HANA API interactions. It specifically showcases how to respond to a Salesforce Opportunity Close Event by automatically generating a Sales Order in the S/4HANA SD module. -
Shopify to S/4HANA Integration - Details the integration process between Shopify, a leading e-commerce platform, and SAP S/4HANA, a comprehensive ERP system. The objective is to automate SAP sales order creation for new orders placed on Shopify, enhancing efficiency and accuracy in order management.
Functions
batchCreate
function batchCreate(string entitySet, BatchEntity[] entities) returns BatchRequest[]Turns a plain array of entities into create requests against one entity set.
performBatchOperation applies this on its own when it is given entities rather than requests, so it is
only needed when the requests are assembled up front.
Parameters
- entitySet string - Name of the target entity set, such as
A_SlsPrcgConditionRecord
- entities BatchEntity[] - Entities to create
Return Type
- BatchRequest[] - One create request per entity, in the given order
Clients
sap.s4hana.api_slspricingconditionrecord_srv: Client
The sap.s4hana.api_slspricingconditionrecord_srv client.
Wraps the generated oas client, which is kept as pristine, regeneratable code in the oas
submodule, and adds the one thing a generated client cannot provide: a usable $batch operation.
A batch body is a multipart/mixed envelope whose parts are complete HTTP requests, which is a
transport encoding rather than a data shape, so the OpenAPI contract cannot describe it and the
generated operation would otherwise hand back a raw http:Request.
Every other operation is forwarded to the oas client unchanged.
Constructor
Gets invoked to initialize the connector.
init (ConnectionConfig config, string hostname, int port)- config ConnectionConfig - The configurations to be used when initializing the
connector
- hostname string - Hostname of the S/4HANA system, without the scheme
- port int 443 - Port the service is reachable on
performBatchOperation
function performBatchOperation(BatchRequest[]|BatchEntity[] requests, string entitySet, map<string|string[]> headers, boolean atomic) returns BatchResult[]|errorSend a group of requests in a single round trip.
Entities may be passed directly, in which case each one is created in entitySet. Pass
BatchRequest values instead to control the method, the target and the headers per request,
which is what updates, deletes and reads need.
Parameters
- requests BatchRequest[]|BatchEntity[] - Entities to create, or requests to send. Reads are sent as standalone parts, since OData does not allow them inside a change set
- entitySet string (default "A_SlsPrcgConditionRecord") - Entity set the entities are created in. Ignored when
BatchRequestvalues are passed
- atomic boolean (default false) - Whether every write belongs to a single transaction. By default each write gets its own change set, so that a rejected request does not roll back the others
Return Type
- BatchResult[]|error - The outcome of each request, in the order they were sent, or an error if the batch
itself was rejected. When
atomicis set a failed change set answers with a single error result for the whole transaction, so fewer results than requests can come back
listA_SlsPrcgCndnRecdSuplmnts
function listA_SlsPrcgCndnRecdSuplmnts(map<string|string[]> headers, *ListA_SlsPrcgCndnRecdSuplmntsQueries queries) returns CollectionOfA_SlsPrcgCndnRecdSuplmntWrapper|errorReads all condition supplements in the system.
Parameters
- queries *ListA_SlsPrcgCndnRecdSuplmntsQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnRecdSuplmntWrapper|error - Retrieved entities
createA_SlsPrcgCndnRecdSuplmnt
function createA_SlsPrcgCndnRecdSuplmnt(CreateA_SlsPrcgCndnRecdSuplmnt payload, map<string|string[]> headers) returns A_SlsPrcgCndnRecdSuplmntWrapper|errorCreates one or more condition supplements.
Parameters
- payload CreateA_SlsPrcgCndnRecdSuplmnt - New entity
Return Type
- A_SlsPrcgCndnRecdSuplmntWrapper|error - Created entity
getA_SlsPrcgCndnRecdSuplmnt
function getA_SlsPrcgCndnRecdSuplmnt(string ConditionRecord, string ConditionSequentialNumber, map<string|string[]> headers, *GetA_SlsPrcgCndnRecdSuplmntQueries queries) returns A_SlsPrcgCndnRecdSuplmntWrapper|errorReads a specific condition supplement.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- queries *GetA_SlsPrcgCndnRecdSuplmntQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgCndnRecdSuplmntWrapper|error - Retrieved entity
deleteA_SlsPrcgCndnRecdSuplmnt
function deleteA_SlsPrcgCndnRecdSuplmnt(string ConditionRecord, string ConditionSequentialNumber, map<string|string[]> headers) returns error?Deletes a specific condition supplement.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
Return Type
- error? - Success
patchA_SlsPrcgCndnRecdSuplmnt
function patchA_SlsPrcgCndnRecdSuplmnt(string ConditionRecord, string ConditionSequentialNumber, Modified\ A_SlsPrcgCndnRecdSuplmntType payload, map<string|string[]> headers) returns error?Updates a specific condition supplement.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- payload Modified\ A_SlsPrcgCndnRecdSuplmntType - New property values
Return Type
- error? - Success
listSlsPrcgCndnRecdValiditiesOfA_SlsPrcgCndnRecdSuplmnt
function listSlsPrcgCndnRecdValiditiesOfA_SlsPrcgCndnRecdSuplmnt(string ConditionRecord, string ConditionSequentialNumber, map<string|string[]> headers, *ListSlsPrcgCndnRecdValiditiesOfA_SlsPrcgCndnRecdSuplmntQueries queries) returns CollectionOfA_SlsPrcgCndnRecdValidityWrapper|errorReads validity of the condition record for a specific condition supplement.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- queries *ListSlsPrcgCndnRecdValiditiesOfA_SlsPrcgCndnRecdSuplmntQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnRecdValidityWrapper|error - Retrieved entities
listSlsPrcgCndnRecordScalesOfA_SlsPrcgCndnRecdSuplmnt
function listSlsPrcgCndnRecordScalesOfA_SlsPrcgCndnRecdSuplmnt(string ConditionRecord, string ConditionSequentialNumber, map<string|string[]> headers, *ListSlsPrcgCndnRecordScalesOfA_SlsPrcgCndnRecdSuplmntQueries queries) returns CollectionOfA_SlsPrcgCndnRecordScaleWrapper|errorReads the pricing scales of a specific condition supplement.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- queries *ListSlsPrcgCndnRecordScalesOfA_SlsPrcgCndnRecdSuplmntQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnRecordScaleWrapper|error - Retrieved entities
createSlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmnt
function createSlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmnt(string ConditionRecord, string ConditionSequentialNumber, CreateA_SlsPrcgCndnRecordScale payload, map<string|string[]> headers) returns A_SlsPrcgCndnRecordScaleWrapper|errorCreates one or more pricing scales for a specific condition supplement.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- payload CreateA_SlsPrcgCndnRecordScale - New entity
Return Type
- A_SlsPrcgCndnRecordScaleWrapper|error - Created entity
listSlsPrcgCndnSupplementTextsOfA_SlsPrcgCndnRecdSuplmnt
function listSlsPrcgCndnSupplementTextsOfA_SlsPrcgCndnRecdSuplmnt(string ConditionRecord, string ConditionSequentialNumber, map<string|string[]> headers, *ListSlsPrcgCndnSupplementTextsOfA_SlsPrcgCndnRecdSuplmntQueries queries) returns CollectionOfA_SlsPrcgCndnSupplementTextWrapper|errorReads the pricing supplement texts of a specific condition supplement.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- queries *ListSlsPrcgCndnSupplementTextsOfA_SlsPrcgCndnRecdSuplmntQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnSupplementTextWrapper|error - Retrieved entities
createSlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmnt
function createSlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmnt(string ConditionRecord, string ConditionSequentialNumber, CreateA_SlsPrcgCndnSupplementText payload, map<string|string[]> headers) returns A_SlsPrcgCndnSupplementTextWrapper|errorCreates one or more pricing supplement texts for a specific condition supplement.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- payload CreateA_SlsPrcgCndnSupplementText - New entity
Return Type
- A_SlsPrcgCndnSupplementTextWrapper|error - Created entity
getSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmnt
function getSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmnt(string ConditionRecord, string ConditionSequentialNumber, map<string|string[]> headers, *GetSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmntQueries queries) returns A_SlsPrcgConditionRecordWrapper|errorReads the condition record for a specific condition supplement.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- queries *GetSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmntQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgConditionRecordWrapper|error - Retrieved entity
listA_SlsPrcgCndnRecdValidities
function listA_SlsPrcgCndnRecdValidities(map<string|string[]> headers, *ListA_SlsPrcgCndnRecdValiditiesQueries queries) returns CollectionOfA_SlsPrcgCndnRecdValidityWrapper|errorReads validity of all condition records in the system.
Parameters
- queries *ListA_SlsPrcgCndnRecdValiditiesQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnRecdValidityWrapper|error - Retrieved entities
getA_SlsPrcgCndnRecdValidity
function getA_SlsPrcgCndnRecdValidity(string ConditionRecord, string ConditionValidityEndDate, map<string|string[]> headers, *GetA_SlsPrcgCndnRecdValidityQueries queries) returns A_SlsPrcgCndnRecdValidityWrapper|errorReads the validity of a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionValidityEndDate string - Validity end date of the condition record
- queries *GetA_SlsPrcgCndnRecdValidityQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgCndnRecdValidityWrapper|error - Retrieved entity
patchA_SlsPrcgCndnRecdValidity
function patchA_SlsPrcgCndnRecdValidity(string ConditionRecord, string ConditionValidityEndDate, Modified\ A_SlsPrcgCndnRecdValidityType payload, map<string|string[]> headers) returns error?Updates the validity period of a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionValidityEndDate string - Validity end date of the condition record
- payload Modified\ A_SlsPrcgCndnRecdValidityType - New property values
Return Type
- error? - Success
listSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgCndnRecdValidity
function listSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgCndnRecdValidity(string ConditionRecord, string ConditionValidityEndDate, map<string|string[]> headers, *ListSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgCndnRecdValidityQueries queries) returns CollectionOfA_SlsPrcgCndnRecdSuplmntWrapper|errorReads the condition supplements for a specific condition record validity period.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionValidityEndDate string - Validity end date of the condition record
- queries *ListSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgCndnRecdValidityQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnRecdSuplmntWrapper|error - Retrieved entities
createSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValidity
function createSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValidity(string ConditionRecord, string ConditionValidityEndDate, CreateA_SlsPrcgCndnRecdSuplmnt payload, map<string|string[]> headers) returns A_SlsPrcgCndnRecdSuplmntWrapper|errorCreates one or more condition supplements for a specific condition record validity period.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionValidityEndDate string - Validity end date of the condition record
- payload CreateA_SlsPrcgCndnRecdSuplmnt - New entity
Return Type
- A_SlsPrcgCndnRecdSuplmntWrapper|error - Created entity
getSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValidity
function getSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValidity(string ConditionRecord, string ConditionValidityEndDate, map<string|string[]> headers, *GetSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValidityQueries queries) returns A_SlsPrcgConditionRecordWrapper|errorReads the condition record for a specific condition record validity period.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionValidityEndDate string - Validity end date of the condition record
- queries *GetSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValidityQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgConditionRecordWrapper|error - Retrieved entity
listA_SlsPrcgCndnRecordScales
function listA_SlsPrcgCndnRecordScales(map<string|string[]> headers, *ListA_SlsPrcgCndnRecordScalesQueries queries) returns CollectionOfA_SlsPrcgCndnRecordScaleWrapper|errorReads all pricing scales in the system.
Parameters
- queries *ListA_SlsPrcgCndnRecordScalesQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnRecordScaleWrapper|error - Retrieved entities
createA_SlsPrcgCndnRecordScale
function createA_SlsPrcgCndnRecordScale(CreateA_SlsPrcgCndnRecordScale payload, map<string|string[]> headers) returns A_SlsPrcgCndnRecordScaleWrapper|errorCreates one or more pricing scales.
Parameters
- payload CreateA_SlsPrcgCndnRecordScale - New entity
Return Type
- A_SlsPrcgCndnRecordScaleWrapper|error - Created entity
getA_SlsPrcgCndnRecordScale
function getA_SlsPrcgCndnRecordScale(string ConditionRecord, string ConditionSequentialNumber, string ConditionScaleLine, map<string|string[]> headers, *GetA_SlsPrcgCndnRecordScaleQueries queries) returns A_SlsPrcgCndnRecordScaleWrapper|errorReads a specific pricing scale.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- ConditionScaleLine string - Current number of the line scale
- queries *GetA_SlsPrcgCndnRecordScaleQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgCndnRecordScaleWrapper|error - Retrieved entity
deleteA_SlsPrcgCndnRecordScale
function deleteA_SlsPrcgCndnRecordScale(string ConditionRecord, string ConditionSequentialNumber, string ConditionScaleLine, map<string|string[]> headers) returns error?Deletes a specific pricing scale.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- ConditionScaleLine string - Current number of the line scale
Return Type
- error? - Success
patchA_SlsPrcgCndnRecordScale
function patchA_SlsPrcgCndnRecordScale(string ConditionRecord, string ConditionSequentialNumber, string ConditionScaleLine, Modified\ A_SlsPrcgCndnRecordScaleType payload, map<string|string[]> headers) returns error?Updates a specific pricing scale.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- ConditionScaleLine string - Current number of the line scale
- payload Modified\ A_SlsPrcgCndnRecordScaleType - New property values
Return Type
- error? - Success
getSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScale
function getSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScale(string ConditionRecord, string ConditionSequentialNumber, string ConditionScaleLine, map<string|string[]> headers, *GetSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScaleQueries queries) returns A_SlsPrcgCndnRecdSuplmntWrapper|errorReads the condition supplement for a specific condition supplement pricing scale.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- ConditionScaleLine string - Current number of the line scale
- queries *GetSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScaleQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgCndnRecdSuplmntWrapper|error - Retrieved entity
getSlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScale
function getSlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScale(string ConditionRecord, string ConditionSequentialNumber, string ConditionScaleLine, map<string|string[]> headers, *GetSlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScaleQueries queries) returns A_SlsPrcgConditionRecordWrapper|errorReads the condition record for a specific pricing scale.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- ConditionScaleLine string - Current number of the line scale
- queries *GetSlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScaleQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgConditionRecordWrapper|error - Retrieved entity
listA_SlsPrcgCndnSupplementTexts
function listA_SlsPrcgCndnSupplementTexts(map<string|string[]> headers, *ListA_SlsPrcgCndnSupplementTextsQueries queries) returns CollectionOfA_SlsPrcgCndnSupplementTextWrapper|errorReads all pricing supplement texts in the system.
Parameters
- queries *ListA_SlsPrcgCndnSupplementTextsQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnSupplementTextWrapper|error - Retrieved entities
createA_SlsPrcgCndnSupplementText
function createA_SlsPrcgCndnSupplementText(CreateA_SlsPrcgCndnSupplementText payload, map<string|string[]> headers) returns A_SlsPrcgCndnSupplementTextWrapper|errorCreates one or more pricing supplement texts.
Parameters
- payload CreateA_SlsPrcgCndnSupplementText - New entity
Return Type
- A_SlsPrcgCndnSupplementTextWrapper|error - Created entity
getA_SlsPrcgCndnSupplementText
function getA_SlsPrcgCndnSupplementText(string ConditionRecord, string ConditionSequentialNumber, string Language, map<string|string[]> headers, *GetA_SlsPrcgCndnSupplementTextQueries queries) returns A_SlsPrcgCndnSupplementTextWrapper|errorReads a specific pricing supplement text.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string - Language Key
- queries *GetA_SlsPrcgCndnSupplementTextQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgCndnSupplementTextWrapper|error - Retrieved entity
deleteA_SlsPrcgCndnSupplementText
function deleteA_SlsPrcgCndnSupplementText(string ConditionRecord, string ConditionSequentialNumber, string Language, map<string|string[]> headers) returns error?Deletes a specific pricing supplement text.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string - Language Key
Return Type
- error? - Success
patchA_SlsPrcgCndnSupplementText
function patchA_SlsPrcgCndnSupplementText(string ConditionRecord, string ConditionSequentialNumber, string Language, Modified\ A_SlsPrcgCndnSupplementTextType payload, map<string|string[]> headers) returns error?Updates a specific pricing supplement text.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string - Language Key
- payload Modified\ A_SlsPrcgCndnSupplementTextType - New property values
Return Type
- error? - Success
getSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementText
function getSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementText(string ConditionRecord, string ConditionSequentialNumber, string Language, map<string|string[]> headers, *GetSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementTextQueries queries) returns A_SlsPrcgCndnRecdSuplmntWrapper|errorReads the condition record for a specific pricing supplement text.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string - Language Key
- queries *GetSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementTextQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgCndnRecdSuplmntWrapper|error - Retrieved entity
listA_SlsPrcgConditionRecords
function listA_SlsPrcgConditionRecords(map<string|string[]> headers, *ListA_SlsPrcgConditionRecordsQueries queries) returns CollectionOfA_SlsPrcgConditionRecordWrapper|errorReads all condition records in the system.
Parameters
- queries *ListA_SlsPrcgConditionRecordsQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgConditionRecordWrapper|error - Retrieved entities
createA_SlsPrcgConditionRecord
function createA_SlsPrcgConditionRecord(CreateA_SlsPrcgConditionRecord payload, map<string|string[]> headers) returns A_SlsPrcgConditionRecordWrapper|errorCreates one or more condition records.
Parameters
- payload CreateA_SlsPrcgConditionRecord - New entity
Return Type
- A_SlsPrcgConditionRecordWrapper|error - Created entity
getA_SlsPrcgConditionRecord
function getA_SlsPrcgConditionRecord(string ConditionRecord, map<string|string[]> headers, *GetA_SlsPrcgConditionRecordQueries queries) returns A_SlsPrcgConditionRecordWrapper|errorReads a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- queries *GetA_SlsPrcgConditionRecordQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgConditionRecordWrapper|error - Retrieved entity
deleteA_SlsPrcgConditionRecord
function deleteA_SlsPrcgConditionRecord(string ConditionRecord, map<string|string[]> headers) returns error?Deletes a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
Return Type
- error? - Success
patchA_SlsPrcgConditionRecord
function patchA_SlsPrcgConditionRecord(string ConditionRecord, Modified\ A_SlsPrcgConditionRecordType payload, map<string|string[]> headers) returns error?Updates a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- payload Modified\ A_SlsPrcgConditionRecordType - New property values
Return Type
- error? - Success
listSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgConditionRecord
function listSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgConditionRecord(string ConditionRecord, map<string|string[]> headers, *ListSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgConditionRecordQueries queries) returns CollectionOfA_SlsPrcgCndnRecdSuplmntWrapper|errorReads the condition supplements of a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- queries *ListSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgConditionRecordQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnRecdSuplmntWrapper|error - Retrieved entities
createSlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecord
function createSlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecord(string ConditionRecord, CreateA_SlsPrcgCndnRecdSuplmnt payload, map<string|string[]> headers) returns A_SlsPrcgCndnRecdSuplmntWrapper|errorCreates one or more condition supplements for a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- payload CreateA_SlsPrcgCndnRecdSuplmnt - New entity
Return Type
- A_SlsPrcgCndnRecdSuplmntWrapper|error - Created entity
listSlsPrcgCndnRecdValiditiesOfA_SlsPrcgConditionRecord
function listSlsPrcgCndnRecdValiditiesOfA_SlsPrcgConditionRecord(string ConditionRecord, map<string|string[]> headers, *ListSlsPrcgCndnRecdValiditiesOfA_SlsPrcgConditionRecordQueries queries) returns CollectionOfA_SlsPrcgCndnRecdValidityWrapper|errorReads the validity of a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- queries *ListSlsPrcgCndnRecdValiditiesOfA_SlsPrcgConditionRecordQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnRecdValidityWrapper|error - Retrieved entities
listSlsPrcgCndnRecordScalesOfA_SlsPrcgConditionRecord
function listSlsPrcgCndnRecordScalesOfA_SlsPrcgConditionRecord(string ConditionRecord, map<string|string[]> headers, *ListSlsPrcgCndnRecordScalesOfA_SlsPrcgConditionRecordQueries queries) returns CollectionOfA_SlsPrcgCndnRecordScaleWrapper|errorReads the pricing scales of a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- queries *ListSlsPrcgCndnRecordScalesOfA_SlsPrcgConditionRecordQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgCndnRecordScaleWrapper|error - Retrieved entities
createSlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecord
function createSlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecord(string ConditionRecord, CreateA_SlsPrcgCndnRecordScale payload, map<string|string[]> headers) returns A_SlsPrcgCndnRecordScaleWrapper|errorCreates one or more pricing scales for a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- payload CreateA_SlsPrcgCndnRecordScale - New entity
Return Type
- A_SlsPrcgCndnRecordScaleWrapper|error - Created entity
listSlsPrcgConditionRecordTextsOfA_SlsPrcgConditionRecord
function listSlsPrcgConditionRecordTextsOfA_SlsPrcgConditionRecord(string ConditionRecord, map<string|string[]> headers, *ListSlsPrcgConditionRecordTextsOfA_SlsPrcgConditionRecordQueries queries) returns CollectionOfA_SlsPrcgConditionRecordTextWrapper|errorReads the pricing record texts of a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- queries *ListSlsPrcgConditionRecordTextsOfA_SlsPrcgConditionRecordQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgConditionRecordTextWrapper|error - Retrieved entities
createSlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecord
function createSlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecord(string ConditionRecord, CreateA_SlsPrcgConditionRecordText payload, map<string|string[]> headers) returns A_SlsPrcgConditionRecordTextWrapper|errorCreates one or more pricing record texts for a specific condition record.
Parameters
- ConditionRecord string - Number of Condition Record
- payload CreateA_SlsPrcgConditionRecordText - New entity
Return Type
- A_SlsPrcgConditionRecordTextWrapper|error - Created entity
listA_SlsPrcgConditionRecordTexts
function listA_SlsPrcgConditionRecordTexts(map<string|string[]> headers, *ListA_SlsPrcgConditionRecordTextsQueries queries) returns CollectionOfA_SlsPrcgConditionRecordTextWrapper|errorReads all pricing record texts in the system.
Parameters
- queries *ListA_SlsPrcgConditionRecordTextsQueries - Queries to be sent with the request
Return Type
- CollectionOfA_SlsPrcgConditionRecordTextWrapper|error - Retrieved entities
createA_SlsPrcgConditionRecordText
function createA_SlsPrcgConditionRecordText(CreateA_SlsPrcgConditionRecordText payload, map<string|string[]> headers) returns A_SlsPrcgConditionRecordTextWrapper|errorCreates one or more pricing record texts.
Parameters
- payload CreateA_SlsPrcgConditionRecordText - New entity
Return Type
- A_SlsPrcgConditionRecordTextWrapper|error - Created entity
getA_SlsPrcgConditionRecordText
function getA_SlsPrcgConditionRecordText(string ConditionRecord, string ConditionSequentialNumber, string Language, map<string|string[]> headers, *GetA_SlsPrcgConditionRecordTextQueries queries) returns A_SlsPrcgConditionRecordTextWrapper|errorReads a specific pricing record text.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string - Language Key
- queries *GetA_SlsPrcgConditionRecordTextQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgConditionRecordTextWrapper|error - Retrieved entity
deleteA_SlsPrcgConditionRecordText
function deleteA_SlsPrcgConditionRecordText(string ConditionRecord, string ConditionSequentialNumber, string Language, map<string|string[]> headers) returns error?Deletes a specific pricing record text.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string - Language Key
Return Type
- error? - Success
patchA_SlsPrcgConditionRecordText
function patchA_SlsPrcgConditionRecordText(string ConditionRecord, string ConditionSequentialNumber, string Language, Modified\ A_SlsPrcgConditionRecordTextType payload, map<string|string[]> headers) returns error?Updates a specific pricing record text.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string - Language Key
- payload Modified\ A_SlsPrcgConditionRecordTextType - New property values
Return Type
- error? - Success
getSlsPrcgConditionRecordOfA_SlsPrcgConditionRecordText
function getSlsPrcgConditionRecordOfA_SlsPrcgConditionRecordText(string ConditionRecord, string ConditionSequentialNumber, string Language, map<string|string[]> headers, *GetSlsPrcgConditionRecordOfA_SlsPrcgConditionRecordTextQueries queries) returns A_SlsPrcgConditionRecordWrapper|errorReads the condition record for a specific pricing record text.
Parameters
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string - Language Key
- queries *GetSlsPrcgConditionRecordOfA_SlsPrcgConditionRecordTextQueries - Queries to be sent with the request
Return Type
- A_SlsPrcgConditionRecordWrapper|error - Retrieved entity
Records
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdSuplmnt
Fields
- ConditionRecord? string - Number of Condition Record
- ConditionSequentialNumber? string - Sequential number of the condition
- ConditionTable? string? -
- ConditionApplication? string? -
- ConditionType? string? -
- ConditionValidityEndDate? string? - Valid To Date
- ConditionValidityStartDate? string? - Valid-From Date
- CreatedByUser? string? - Name of Person Responsible for Creating the Object
- CreationDate? string? - Record Creation Date
- ConditionTextID? string? - Number of texts
- PricingScaleType? string? -
- PricingScaleBasis? string? -
- ConditionScaleQuantity? string? - Condition Scale Quantity
- ConditionScaleQuantityUnit? string? - Condition Scale Unit of Measure
- ConditionScaleAmount? string? -
- ConditionScaleAmountCurrency? string? -
- ConditionCalculationType? string? - Calculation Type for Condition
- ConditionRateValue? string? - Condition amount or percentage where no scale exists
- ConditionRateValueUnit? string? - Condition Unit (Currency or Percentage)
- ConditionRateRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionRateRatioUnit? string? -
- ConditionRateAmount? string? - Condition Amount or Percentage
- ConditionCurrency? string? - Condition Unit (Currency or Percentage)
- ConditionQuantity? string? - Condition Pricing Unit
- ConditionQuantityUnit? string? - Condition Unit
- ConditionToBaseQtyNmrtr? string? - Numerator for converting condition units to base units
- ConditionToBaseQtyDnmntr? string? - Denominator for converting condition units to base units
- BaseUnit? string? -
- ConditionLowerLimit? string? - Lower limit of the condition rate/amount
- ConditionLowerLimitAmount? string? - Condition Amount or Percentage
- ConditionLowerLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionUpperLimit? string? - Upper limit for the condition rate
- ConditionUpperLimitAmount? string? - Condition Amount or Percentage
- ConditionUpperLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionAlternativeCurrency? string? - Condition Currency (for Cumulation Fields)
- ConditionExclusion? string? - Condition exclusion indicator
- ConditionIsDeleted? boolean? - Deletion Indicator for Condition Record
- AdditionalValueDays? string? - Additional Value Days
- FixedValueDate? string? -
- PaymentTerms? string? - Key for Terms of Payment
- CndnMaxNumberOfSalesOrders? string? - Maximum number of sales orders per condition record
- MinimumConditionBasisValue? string? - Minimum condition base value
- MaximumConditionBasisValue? string? - Maximum condition base value
- MaximumConditionAmount? string? - Maximum condition value
- IncrementalScale? string? - Number of incremental scale
- PricingScaleLine? string? - Scale number for pricing
- ConditionReleaseStatus? string? -
- SalesPriceApprovalRequest? string? - Approval Request for Price Conditions
- ConditionChangeReason? string? - Reason for Changing Condition Record
- PrevApprovedConditionRecord? string? - Previously Approved Condition Record
- ETag? string? -
- to_SlsPrcgCndnRecdValidity? A_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecdValidity -
- to_SlsPrcgCndnRecordScale? A_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecordScale -
- to_SlsPrcgCndnSupplementText? A_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnSupplementText -
- to_SlsPrcgConditionRecord? A_SlsPrcgConditionRecord? -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecdValidity
Fields
- results? A_SlsPrcgCndnRecdValidity[] -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecordScale
Fields
- results? A_SlsPrcgCndnRecordScale[] -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnSupplementText
Fields
- results? A_SlsPrcgCndnSupplementText[] -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdSuplmntWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdValidity
Fields
- ConditionRecord? string - Number of Condition Record
- ConditionValidityEndDate? string - Validity end date of the condition record
- ConditionValidityStartDate? string? - Validity start date of the condition record
- ConditionApplication? string? -
- ConditionType? string? -
- ConditionReleaseStatus? string? -
- DepartureCountry? string? - Departure Country/Region (from which the goods are sent)
- SalesDocument? string? -
- SalesDocumentItem? string? -
- BillableControl? string? -
- Industry? string? - Industry Key
- CityCode? string? -
- ConditionContract? string? -
- County? string? -
- EngagementProject? string? - Commercial Project ID
- ConfigurationNumber? string? - Internal Object Number
- BR_NFDocumentType? string? -
- BRSpcfcFreeDefinedField1? string? -
- BRSpcfcFreeDefinedField2? string? -
- BRSpcfcFreeDefinedField3? string? -
- InternationalArticleNumber? string? - International Article Number (EAN/UPC)
- TechnicalObjectType? string? - Type of Technical Object
- Equipment? string? - Equipment Number
- CustomerHierarchy? string? -
- IncotermsClassification? string? - Incoterms (Part 1)
- IncotermsTransferLocation? string? -
- AccountTaxType? string? -
- TxRlvnceClassfctnForArgentina? string? - Tax relevant classification
- BR_TaxCode? string? - SD tax code
- LocalSalesTaxApplicabilityCode? string? - LST CST Applicability Code
- CustomerGroup? string? -
- CustomerPriceGroup? string? - Customer Price Group
- MaterialPricingGroup? string? - Material Price Group
- SoldToParty? string? -
- BPForSoldToParty? string? - Business Partner Number
- Customer? string? - Customer number
- BPForCustomer? string? - Business Partner Number
- PayerParty? string? -
- BPForPayerParty? string? - Business Partner Number
- ShipToParty? string? -
- BPForShipToParty? string? - Business Partner Number
- Supplier? string? - Supplier's Account Number
- BPForSupplier? string? - Business Partner Number
- DestinationCountry? string? - Destination Country/Region
- MaterialGroup? string? -
- Material? string? - Material Number
- ReturnsRefundExtent? string? - Returns Refund Code
- AdditionalMaterialGroup1? string? -
- AdditionalMaterialGroup2? string? -
- AdditionalMaterialGroup3? string? -
- AdditionalMaterialGroup4? string? -
- AdditionalMaterialGroup5? string? -
- Personnel? string? -
- PriceListType? string? -
- PostalCode? string? -
- Region? string? - Region (State, Province, County)
- EngagementProjectServiceOrg? string? -
- RequirementSegment? string? -
- StockSegment? string? -
- Division? string? -
- CommodityCode? string? -
- ConsumptionTaxCtrlCode? string? - Control code for consumption taxes in foreign trade
- BRSpcfcTaxBasePercentageCode? string? - Tax Base in Percentage
- BRSpcfcTxGrpDynTaxExceptions? string? - Tax Group for Dynamic Tax Exceptions
- CustomerTaxClassification1? string? - Tax Classification 1 for Customer
- CustomerTaxClassification2? string? - Tax Classification 2 for Customer
- CustomerTaxClassification3? string? - Tax Classification 3 for Customer
- CustomerTaxClassification4? string? - Tax Classification 4 for Customer
- CustomerTaxClassification5? string? - Tax Classification 5 for Customer
- CustomerTaxClassification6? string? - Tax Classification 6 for Customer
- CustomerTaxClassification7? string? - Tax Classification 7 for Customer
- CustomerTaxClassification8? string? - Tax Classification 8 for Customer
- CustomerTaxClassification9? string? - Tax Classification 9 for Customer
- ProductTaxClassification1? string? - Tax Classification of Material
- ProductTaxClassification2? string? - Tax Classification 2 for Material
- ProductTaxClassification3? string? - Tax Classification 3 for Material
- ProductTaxClassification4? string? - Tax Classification 4 for Material
- ProductTaxClassification5? string? - Tax Classification 5 for Material
- ProductTaxClassification6? string? - Tax Classification 6 for Material
- ProductTaxClassification7? string? - Tax Classification 7 for Material
- ProductTaxClassification8? string? - Tax Classification 8 for Material
- ProductTaxClassification9? string? - Tax Classification 9 for Material
- TradingContract? string? -
- TradingContractItem? string? - Item Number of Trading Contract
- TaxJurisdiction? string? -
- BRSpcfcTaxDepartureRegion? string? - Ship from location (tax region)
- BRSpcfcTaxDestinationRegion? string? - Ship to location (tax region)
- MainItemMaterialPricingGroup? string? - Material pricing group of main item
- MainItemPricingRefMaterial? string? - Pricing reference material of main item
- VariantCondition? string? - Variant Condition Key
- ValueAddedServiceChargeCode? string? -
- SDDocument? string? - Sales and Distribution Document Number
- ReferenceSDDocument? string? - Document Number of Reference Document
- ReferenceSDDocumentItem? string? - Item Number of the Reference Item
- SalesOffice? string? -
- SalesGroup? string? -
- SalesOrganization? string? -
- SalesOrderSalesOrganization? string? - Sales organization of sales order
- OrderQuantityUnit? string? -
- DistributionChannel? string? -
- TransactionCurrency? string? - SD Document Currency
- WBSElementInternalID? string? - WBS Billing Element
- WBSElementExternalID? string? - Work Breakdown Structure Element (WBS Element) Edited
- WorkPackage? string? - WBS Work Package
- Plant? string? -
- PlantRegion? string? - Region in which plant is located
- WorkItem? string? -
- ConditionProcessingStatus? string? - Processing status for conditions
- PricingDate? string? - Condition Pricing Date
- ConditionIsExclusive? boolean? - Indicator condition exclusive
- ConditionScaleBasisValue? string? - Condition Scale Base Value
- TaxCode? string? - Tax on Sales/Purchases Code
- ServiceDocument? string? -
- ServiceDocumentItem? string? - Shortened Item Number in Document
- TimeSheetOvertimeCategory? string? -
- SalesSDDocumentCategory? string? -
- ReturnReason? string? -
- ProdUnivHierarchyNode? string? - Product Hierarchy Node
- ProductHierarchyNode? string? - Product Hierarchy Node
- CustomerConditionGroup? string? - Customer Attribute for Condition Groups
- ShippingType? string? -
- SubscriptionContractDuration? string? - Numerical Value of Duration
- SubscrpnContrDurationUnit? string? - IS-T: Unit of Duration for a Telco Contract
- SubscriptionContractLockReason? string? -
- CrsCtlgMappgPriceVersionNumber? string? -
- OrderType? string? -
- SalesDocumentType? string? -
- SDDocumentReason? string? - Order Reason (Reason for the Business Transaction)
- VolumeRebateGroup? string? - Volume rebate group
- ValuationType? string? -
- SalesDistrict? string? -
- Batch? string? - Batch Number
- PurgDocSupplyingPlant? string? - Supplying (issuing) plant in case of stock transport order
- MatUsageIndicator? string? - Usage Indicator
- ShippingCondition? string? -
- PlantCounty? string? - County in which plant is located
- PlantCity? string? - City in which plant is located
- MaterialExternalGroup? string? - External Material Group
- CustomerHierarchyRootNode? string? - Customer Hierarchy Root Node ID (Hier ID)
- CustomerHierarchyNodeID? string? - Customer Hierarchy Node ID
- CustomerHierarchyNodeType? string? - Customer Hierarchy Node Type
- AdditionalCustomerGroup1? string? -
- AdditionalCustomerGroup2? string? -
- AdditionalCustomerGroup3? string? -
- AdditionalCustomerGroup4? string? -
- AdditionalCustomerGroup5? string? -
- SDDocumentItem? string? - Item number of the SD document
- CndnBillingDocumentCategory? string? -
- Country? string? -
- CustomerPurchaseOrderType? string? - Customer Purchase Order Type
- CountryOfOrigin? string? - Country/Region of Origin of Material (Non-Preferential Ori.)
- SalesDocumentItemCategory? string? - Sales Document Item Category
- BillToParty? string? -
- BusinessPartnerIndustryCode? string? -
- BillingDocumentType? string? -
- MatlAccountAssignmentGroup? string? - Account Assignment Group for Material
- Route? string? -
- PRAContract? string? - Contract Number
- Well? string? - Well ID number
- WellCompletion? string? - Well Completion Number
- MeasurementPoint? string? - Measurement point number
- PricingFormulaNumber? string? -
- ETag? string? -
- to_SlsPrcgCndnRecdSuplmnt? A_SlsPrcgCndnRecdValidity_to_SlsPrcgCndnRecdSuplmnt -
- to_SlsPrcgConditionRecord? A_SlsPrcgConditionRecord? -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdValidity_to_SlsPrcgCndnRecdSuplmnt
Fields
- results? A_SlsPrcgCndnRecdSuplmnt[] -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdValidityWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecordScale
Fields
- ConditionRecord? string - Number of Condition Record
- ConditionSequentialNumber? string - Sequential number of the condition
- ConditionScaleLine? string - Current number of the line scale
- ConditionScaleQuantity? string? - Condition Scale Quantity
- ConditionScaleQuantityUnit? string? - Condition Scale Unit of Measure
- ConditionScaleAmount? string? -
- ConditionScaleAmountCurrency? string? -
- ConditionRateValue? string? - Condition Amount or Percentage
- ConditionRateValueUnit? string? - Condition Unit (Currency or Percentage)
- ConditionRateRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionRateRatioUnit? string? -
- ConditionRateAmount? string? - Condition Amount or Percentage
- ConditionCurrency? string? - Condition Unit (Currency or Percentage)
- ETag? string? -
- to_SlsPrcgCndnRecdSuplmnt? A_SlsPrcgCndnRecdSuplmnt? -
- to_SlsPrcgConditionRecord? A_SlsPrcgConditionRecord? -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecordScaleWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnSupplementText
Fields
- ConditionRecord? string - Number of Condition Record
- ConditionSequentialNumber? string - Sequential number of the condition
- Language? string -
- ConditionText? string? -
- ETag? string? -
- to_SlsPrcgCndnRecdSuplmnt? A_SlsPrcgCndnRecdSuplmnt? -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnSupplementTextWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecord
Fields
- ConditionRecord? string - Number of Condition Record
- ConditionSequentialNumber? string? - Sequential number of the condition
- ConditionTable? string? -
- ConditionApplication? string? -
- ConditionType? string? -
- ConditionValidityEndDate? string? - Valid To Date
- ConditionValidityStartDate? string? - Valid-From Date
- CreatedByUser? string? - Name of Person Responsible for Creating the Object
- CreationDate? string? - Record Creation Date
- LastChangedByUser? string? - Name of Person Who Changed Object
- LastChangeDate? string? - Last Changed On
- ConditionSearchTermValue? string? - Search Term for Conditions
- ConditionTextID? string? - Number of texts
- PricingScaleType? string? -
- PricingScaleBasis? string? -
- ConditionScaleQuantity? string? - Condition Scale Quantity
- ConditionScaleQuantityUnit? string? - Condition Scale Unit of Measure
- ConditionScaleAmount? string? -
- ConditionScaleAmountCurrency? string? -
- ConditionCalculationType? string? - Calculation Type for Condition
- ConditionRateValue? string? - Condition amount or percentage where no scale exists
- ConditionRateValueUnit? string? - Condition Unit (Currency or Percentage)
- ConditionRateRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionRateRatioUnit? string? -
- ConditionRateAmount? string? - Condition Amount or Percentage
- ConditionCurrency? string? - Condition Unit (Currency or Percentage)
- ConditionQuantity? string? - Condition Pricing Unit
- ConditionQuantityUnit? string? - Condition Unit
- ConditionToBaseQtyNmrtr? string? - Numerator for converting condition units to base units
- ConditionToBaseQtyDnmntr? string? - Denominator for converting condition units to base units
- BaseUnit? string? -
- ConditionLowerLimit? string? - Lower limit of the condition rate/amount
- ConditionLowerLimitAmount? string? - Condition Amount or Percentage
- ConditionLowerLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionUpperLimit? string? - Upper limit for the condition rate
- ConditionUpperLimitAmount? string? - Condition Amount or Percentage
- ConditionUpperLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionAlternativeCurrency? string? - Condition Currency (for Cumulation Fields)
- ConditionExclusion? string? - Condition exclusion indicator
- ConditionIsDeleted? boolean? - Deletion Indicator for Condition Record
- AdditionalValueDays? string? - Additional Value Days
- FixedValueDate? string? -
- PaymentTerms? string? - Key for Terms of Payment
- CndnMaxNumberOfSalesOrders? string? - Maximum number of sales orders per condition record
- MinimumConditionBasisValue? string? - Minimum condition base value
- MaximumConditionBasisValue? string? - Maximum condition base value
- MaximumConditionAmount? string? - Maximum condition value
- IncrementalScale? string? - Number of incremental scale
- PricingScaleLine? string? - Scale number for pricing
- ConditionReleaseStatus? string? -
- SalesPriceApprovalRequest? string? - Approval Request for Price Conditions
- ConditionChangeReason? string? - Reason for Changing Condition Record
- PrevApprovedConditionRecord? string? - Previously Approved Condition Record
- ConditionTaxCode? string? - Tax on Sales/Purchases Code
- ConditionWithholdingTaxCode? string? - Withholding Tax Code
- TaxExemptionLicense? string? - Tax Exemption License Number
- LicenseGrantDate? string? - Date License Granted
- LastChangeDateTime? string? - UTC Time Stamp in Long Form (YYYYMMDDhhmmssmmmuuun)
- SAPObjectNodeType? string? - RAP SOT: SAP Object Node Type
- ETag? string? -
- to_SlsPrcgCndnRecdSuplmnt? A_SlsPrcgCndnRecdValidity_to_SlsPrcgCndnRecdSuplmnt -
- to_SlsPrcgCndnRecdValidity? A_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecdValidity -
- to_SlsPrcgCndnRecordScale? A_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecordScale -
- to_SlsPrcgConditionRecordText? A_SlsPrcgConditionRecord_to_SlsPrcgConditionRecordText -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecord_to_SlsPrcgConditionRecordText
Fields
- results? A_SlsPrcgConditionRecordText[] -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecordText
Fields
- ConditionRecord? string - Number of Condition Record
- ConditionSequentialNumber? string - Sequential number of the condition
- Language? string -
- ConditionText? string? -
- ETag? string? -
- to_SlsPrcgConditionRecord? A_SlsPrcgConditionRecord? -
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecordTextWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecordWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: BatchRequest
A single request inside a batch.
Fields
- method "GET"|"POST"|"PATCH"|"PUT"|"DELETE" (default "POST") - HTTP method of the request
- uri string - Resource path relative to the service root, such as
A_SlsPrcgConditionRecord. Query options must be percent encoded, since this goes into an HTTP request line
- payload? BatchEntity - Entity to send, omitted for methods that do not carry one
sap.s4hana.api_slspricingconditionrecord_srv: BatchResult
The outcome of one request inside a batch.
Fields
- statusCode int - HTTP status of this individual request
- location string? - Value of the
locationheader, which carries the key assigned by a successful create
- body string - Raw response body of this individual request
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgCndnRecdSuplmnt
Fields
- __count? count - The number of entities in the collection. Available when using the $inlinecount query option.
- results? A_SlsPrcgCndnRecdSuplmnt[] -
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgCndnRecdSuplmntWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgCndnRecdValidity
Fields
- __count? count - The number of entities in the collection. Available when using the $inlinecount query option.
- results? A_SlsPrcgCndnRecdValidity[] -
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgCndnRecdValidityWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgCndnRecordScale
Fields
- __count? count - The number of entities in the collection. Available when using the $inlinecount query option.
- results? A_SlsPrcgCndnRecordScale[] -
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgCndnRecordScaleWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgCndnSupplementText
Fields
- __count? count - The number of entities in the collection. Available when using the $inlinecount query option.
- results? A_SlsPrcgCndnSupplementText[] -
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgCndnSupplementTextWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgConditionRecord
Fields
- __count? count - The number of entities in the collection. Available when using the $inlinecount query option.
- results? A_SlsPrcgConditionRecord[] -
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgConditionRecordText
Fields
- __count? count - The number of entities in the collection. Available when using the $inlinecount query option.
- results? A_SlsPrcgConditionRecordText[] -
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgConditionRecordTextWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: CollectionOfA_SlsPrcgConditionRecordWrapper
Fields
sap.s4hana.api_slspricingconditionrecord_srv: ConnectionConfig
Provides a set of configurations for controlling the behaviours when communicating with a remote HTTP endpoint.
Fields
- auth BearerTokenConfig|OAuth2RefreshTokenGrantConfig|CredentialsConfig - Configurations related to client authentication
- httpVersion HttpVersion(default http:HTTP_2_0) - The HTTP version understood by the client
- http1Settings ClientHttp1Settings(default {}) - Configurations related to HTTP/1.x protocol
- http2Settings ClientHttp2Settings(default {}) - Configurations related to HTTP/2 protocol
- timeout decimal(default 30) - The maximum time to wait (in seconds) for a response before closing the connection
- forwarded string(default "disable") - The choice of setting
forwarded/x-forwardedheader
- followRedirects? FollowRedirects - Configurations associated with Redirection
- poolConfig? PoolConfiguration - Configurations associated with request pooling
- cache CacheConfig(default {}) - HTTP caching related configurations
- compression Compression(default http:COMPRESSION_AUTO) - Specifies the way of handling compression (
accept-encoding) header
- circuitBreaker? CircuitBreakerConfig - Configurations associated with the behaviour of the Circuit Breaker
- retryConfig? RetryConfig - Configurations associated with retrying
- cookieConfig? CookieConfig - Configurations associated with cookies
- responseLimits ResponseLimitConfigs(default {}) - Configurations associated with inbound response size limits
- secureSocket? ClientSecureSocket - SSL/TLS-related options
- proxy? ProxyConfig - Proxy server related options
- socketConfig ClientSocketConfig(default {}) - Provides settings related to client socket configuration
- validation boolean(default true) - Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default
- laxDataBinding boolean(default true) - Enables relaxed data binding on the client side. When enabled,
nilvalues are treated as optional, and absent fields are handled asnilabletypes. Enabled by default.
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgCndnRecdSuplmnt
Fields
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- ConditionTable? string? -
- ConditionApplication? string? -
- ConditionType? string? -
- ConditionValidityEndDate? string? - Valid To Date
- ConditionValidityStartDate? string? - Valid-From Date
- CreatedByUser? string? - Name of Person Responsible for Creating the Object
- CreationDate? string? - Record Creation Date
- ConditionTextID? string? - Number of texts
- PricingScaleType? string? -
- PricingScaleBasis? string? -
- ConditionScaleQuantity? string? - Condition Scale Quantity
- ConditionScaleQuantityUnit? string? - Condition Scale Unit of Measure
- ConditionScaleAmount? string? -
- ConditionScaleAmountCurrency? string? -
- ConditionCalculationType? string? - Calculation Type for Condition
- ConditionRateValue? string? - Condition amount or percentage where no scale exists
- ConditionRateValueUnit? string? - Condition Unit (Currency or Percentage)
- ConditionRateRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionRateRatioUnit? string? -
- ConditionRateAmount? string? - Condition Amount or Percentage
- ConditionCurrency? string? - Condition Unit (Currency or Percentage)
- ConditionQuantity? string? - Condition Pricing Unit
- ConditionQuantityUnit? string? - Condition Unit
- ConditionToBaseQtyNmrtr? string? - Numerator for converting condition units to base units
- ConditionToBaseQtyDnmntr? string? - Denominator for converting condition units to base units
- BaseUnit? string? -
- ConditionLowerLimit? string? - Lower limit of the condition rate/amount
- ConditionLowerLimitAmount? string? - Condition Amount or Percentage
- ConditionLowerLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionUpperLimit? string? - Upper limit for the condition rate
- ConditionUpperLimitAmount? string? - Condition Amount or Percentage
- ConditionUpperLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionAlternativeCurrency? string? - Condition Currency (for Cumulation Fields)
- ConditionExclusion? string? - Condition exclusion indicator
- ConditionIsDeleted? boolean? - Deletion Indicator for Condition Record
- AdditionalValueDays? string? - Additional Value Days
- FixedValueDate? string? -
- PaymentTerms? string? - Key for Terms of Payment
- CndnMaxNumberOfSalesOrders? string? - Maximum number of sales orders per condition record
- MinimumConditionBasisValue? string? - Minimum condition base value
- MaximumConditionBasisValue? string? - Maximum condition base value
- MaximumConditionAmount? string? - Maximum condition value
- IncrementalScale? string? - Number of incremental scale
- PricingScaleLine? string? - Scale number for pricing
- ConditionReleaseStatus? string? -
- SalesPriceApprovalRequest? string? - Approval Request for Price Conditions
- ConditionChangeReason? string? - Reason for Changing Condition Record
- PrevApprovedConditionRecord? string? - Previously Approved Condition Record
- ETag? string? -
- to_SlsPrcgCndnRecdValidity? CreateA_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecdValidity -
- to_SlsPrcgCndnRecordScale? CreateA_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecordScale -
- to_SlsPrcgCndnSupplementText? CreateA_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnSupplementText -
- to_SlsPrcgConditionRecord? CreateA_SlsPrcgConditionRecord? -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecdValidity
Fields
- results? CreateA_SlsPrcgCndnRecdValidity[] -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecordScale
Fields
- results? CreateA_SlsPrcgCndnRecordScale[] -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnSupplementText
Fields
- results? CreateA_SlsPrcgCndnSupplementText[] -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgCndnRecdValidity
Fields
- ConditionRecord string - Number of Condition Record
- ConditionValidityEndDate string - Validity end date of the condition record
- ConditionValidityStartDate? string? - Validity start date of the condition record
- ConditionApplication? string? -
- ConditionType? string? -
- ConditionReleaseStatus? string? -
- DepartureCountry? string? - Departure Country/Region (from which the goods are sent)
- SalesDocument? string? -
- SalesDocumentItem? string? -
- BillableControl? string? -
- Industry? string? - Industry Key
- CityCode? string? -
- ConditionContract? string? -
- County? string? -
- EngagementProject? string? - Commercial Project ID
- ConfigurationNumber? string? - Internal Object Number
- BR_NFDocumentType? string? -
- BRSpcfcFreeDefinedField1? string? -
- BRSpcfcFreeDefinedField2? string? -
- BRSpcfcFreeDefinedField3? string? -
- InternationalArticleNumber? string? - International Article Number (EAN/UPC)
- TechnicalObjectType? string? - Type of Technical Object
- Equipment? string? - Equipment Number
- CustomerHierarchy? string? -
- IncotermsClassification? string? - Incoterms (Part 1)
- IncotermsTransferLocation? string? -
- AccountTaxType? string? -
- TxRlvnceClassfctnForArgentina? string? - Tax relevant classification
- BR_TaxCode? string? - SD tax code
- LocalSalesTaxApplicabilityCode? string? - LST CST Applicability Code
- CustomerGroup? string? -
- CustomerPriceGroup? string? - Customer Price Group
- MaterialPricingGroup? string? - Material Price Group
- SoldToParty? string? -
- BPForSoldToParty? string? - Business Partner Number
- Customer? string? - Customer number
- BPForCustomer? string? - Business Partner Number
- PayerParty? string? -
- BPForPayerParty? string? - Business Partner Number
- ShipToParty? string? -
- BPForShipToParty? string? - Business Partner Number
- Supplier? string? - Supplier's Account Number
- BPForSupplier? string? - Business Partner Number
- DestinationCountry? string? - Destination Country/Region
- MaterialGroup? string? -
- Material? string? - Material Number
- ReturnsRefundExtent? string? - Returns Refund Code
- AdditionalMaterialGroup1? string? -
- AdditionalMaterialGroup2? string? -
- AdditionalMaterialGroup3? string? -
- AdditionalMaterialGroup4? string? -
- AdditionalMaterialGroup5? string? -
- Personnel? string? -
- PriceListType? string? -
- PostalCode? string? -
- Region? string? - Region (State, Province, County)
- EngagementProjectServiceOrg? string? -
- RequirementSegment? string? -
- StockSegment? string? -
- Division? string? -
- CommodityCode? string? -
- ConsumptionTaxCtrlCode? string? - Control code for consumption taxes in foreign trade
- BRSpcfcTaxBasePercentageCode? string? - Tax Base in Percentage
- BRSpcfcTxGrpDynTaxExceptions? string? - Tax Group for Dynamic Tax Exceptions
- CustomerTaxClassification1? string? - Tax Classification 1 for Customer
- CustomerTaxClassification2? string? - Tax Classification 2 for Customer
- CustomerTaxClassification3? string? - Tax Classification 3 for Customer
- CustomerTaxClassification4? string? - Tax Classification 4 for Customer
- CustomerTaxClassification5? string? - Tax Classification 5 for Customer
- CustomerTaxClassification6? string? - Tax Classification 6 for Customer
- CustomerTaxClassification7? string? - Tax Classification 7 for Customer
- CustomerTaxClassification8? string? - Tax Classification 8 for Customer
- CustomerTaxClassification9? string? - Tax Classification 9 for Customer
- ProductTaxClassification1? string? - Tax Classification of Material
- ProductTaxClassification2? string? - Tax Classification 2 for Material
- ProductTaxClassification3? string? - Tax Classification 3 for Material
- ProductTaxClassification4? string? - Tax Classification 4 for Material
- ProductTaxClassification5? string? - Tax Classification 5 for Material
- ProductTaxClassification6? string? - Tax Classification 6 for Material
- ProductTaxClassification7? string? - Tax Classification 7 for Material
- ProductTaxClassification8? string? - Tax Classification 8 for Material
- ProductTaxClassification9? string? - Tax Classification 9 for Material
- TradingContract? string? -
- TradingContractItem? string? - Item Number of Trading Contract
- TaxJurisdiction? string? -
- BRSpcfcTaxDepartureRegion? string? - Ship from location (tax region)
- BRSpcfcTaxDestinationRegion? string? - Ship to location (tax region)
- MainItemMaterialPricingGroup? string? - Material pricing group of main item
- MainItemPricingRefMaterial? string? - Pricing reference material of main item
- VariantCondition? string? - Variant Condition Key
- ValueAddedServiceChargeCode? string? -
- SDDocument? string? - Sales and Distribution Document Number
- ReferenceSDDocument? string? - Document Number of Reference Document
- ReferenceSDDocumentItem? string? - Item Number of the Reference Item
- SalesOffice? string? -
- SalesGroup? string? -
- SalesOrganization? string? -
- SalesOrderSalesOrganization? string? - Sales organization of sales order
- OrderQuantityUnit? string? -
- DistributionChannel? string? -
- TransactionCurrency? string? - SD Document Currency
- WBSElementInternalID? string? - WBS Billing Element
- WBSElementExternalID? string? - Work Breakdown Structure Element (WBS Element) Edited
- WorkPackage? string? - WBS Work Package
- Plant? string? -
- PlantRegion? string? - Region in which plant is located
- WorkItem? string? -
- ConditionProcessingStatus? string? - Processing status for conditions
- PricingDate? string? - Condition Pricing Date
- ConditionIsExclusive? boolean? - Indicator condition exclusive
- ConditionScaleBasisValue? string? - Condition Scale Base Value
- TaxCode? string? - Tax on Sales/Purchases Code
- ServiceDocument? string? -
- ServiceDocumentItem? string? - Shortened Item Number in Document
- TimeSheetOvertimeCategory? string? -
- SalesSDDocumentCategory? string? -
- ReturnReason? string? -
- ProdUnivHierarchyNode? string? - Product Hierarchy Node
- ProductHierarchyNode? string? - Product Hierarchy Node
- CustomerConditionGroup? string? - Customer Attribute for Condition Groups
- ShippingType? string? -
- SubscriptionContractDuration? string? - Numerical Value of Duration
- SubscrpnContrDurationUnit? string? - IS-T: Unit of Duration for a Telco Contract
- SubscriptionContractLockReason? string? -
- CrsCtlgMappgPriceVersionNumber? string? -
- OrderType? string? -
- SalesDocumentType? string? -
- SDDocumentReason? string? - Order Reason (Reason for the Business Transaction)
- VolumeRebateGroup? string? - Volume rebate group
- ValuationType? string? -
- SalesDistrict? string? -
- Batch? string? - Batch Number
- PurgDocSupplyingPlant? string? - Supplying (issuing) plant in case of stock transport order
- MatUsageIndicator? string? - Usage Indicator
- ShippingCondition? string? -
- PlantCounty? string? - County in which plant is located
- PlantCity? string? - City in which plant is located
- MaterialExternalGroup? string? - External Material Group
- CustomerHierarchyRootNode? string? - Customer Hierarchy Root Node ID (Hier ID)
- CustomerHierarchyNodeID? string? - Customer Hierarchy Node ID
- CustomerHierarchyNodeType? string? - Customer Hierarchy Node Type
- AdditionalCustomerGroup1? string? -
- AdditionalCustomerGroup2? string? -
- AdditionalCustomerGroup3? string? -
- AdditionalCustomerGroup4? string? -
- AdditionalCustomerGroup5? string? -
- SDDocumentItem? string? - Item number of the SD document
- CndnBillingDocumentCategory? string? -
- Country? string? -
- CustomerPurchaseOrderType? string? - Customer Purchase Order Type
- CountryOfOrigin? string? - Country/Region of Origin of Material (Non-Preferential Ori.)
- SalesDocumentItemCategory? string? - Sales Document Item Category
- BillToParty? string? -
- BusinessPartnerIndustryCode? string? -
- BillingDocumentType? string? -
- MatlAccountAssignmentGroup? string? - Account Assignment Group for Material
- Route? string? -
- PRAContract? string? - Contract Number
- Well? string? - Well ID number
- WellCompletion? string? - Well Completion Number
- MeasurementPoint? string? - Measurement point number
- PricingFormulaNumber? string? -
- ETag? string? -
- to_SlsPrcgCndnRecdSuplmnt? CreateA_SlsPrcgCndnRecdValidity_to_SlsPrcgCndnRecdSuplmnt -
- to_SlsPrcgConditionRecord? CreateA_SlsPrcgConditionRecord? -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgCndnRecdValidity_to_SlsPrcgCndnRecdSuplmnt
Fields
- results? CreateA_SlsPrcgCndnRecdSuplmnt[] -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgCndnRecordScale
Fields
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- ConditionScaleLine string - Current number of the line scale
- ConditionScaleQuantity? string? - Condition Scale Quantity
- ConditionScaleQuantityUnit? string? - Condition Scale Unit of Measure
- ConditionScaleAmount? string? -
- ConditionScaleAmountCurrency? string? -
- ConditionRateValue? string? - Condition Amount or Percentage
- ConditionRateValueUnit? string? - Condition Unit (Currency or Percentage)
- ConditionRateRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionRateRatioUnit? string? -
- ConditionRateAmount? string? - Condition Amount or Percentage
- ConditionCurrency? string? - Condition Unit (Currency or Percentage)
- ETag? string? -
- to_SlsPrcgCndnRecdSuplmnt? CreateA_SlsPrcgCndnRecdSuplmnt? -
- to_SlsPrcgConditionRecord? CreateA_SlsPrcgConditionRecord? -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgCndnSupplementText
Fields
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string -
- ConditionText? string? -
- ETag? string? -
- to_SlsPrcgCndnRecdSuplmnt? CreateA_SlsPrcgCndnRecdSuplmnt? -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgConditionRecord
Fields
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string? - Sequential number of the condition
- ConditionTable? string? -
- ConditionApplication? string? -
- ConditionType? string? -
- ConditionValidityEndDate? string? - Valid To Date
- ConditionValidityStartDate? string? - Valid-From Date
- CreatedByUser? string? - Name of Person Responsible for Creating the Object
- CreationDate? string? - Record Creation Date
- LastChangedByUser? string? - Name of Person Who Changed Object
- LastChangeDate? string? - Last Changed On
- ConditionSearchTermValue? string? - Search Term for Conditions
- ConditionTextID? string? - Number of texts
- PricingScaleType? string? -
- PricingScaleBasis? string? -
- ConditionScaleQuantity? string? - Condition Scale Quantity
- ConditionScaleQuantityUnit? string? - Condition Scale Unit of Measure
- ConditionScaleAmount? string? -
- ConditionScaleAmountCurrency? string? -
- ConditionCalculationType? string? - Calculation Type for Condition
- ConditionRateValue? string? - Condition amount or percentage where no scale exists
- ConditionRateValueUnit? string? - Condition Unit (Currency or Percentage)
- ConditionRateRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionRateRatioUnit? string? -
- ConditionRateAmount? string? - Condition Amount or Percentage
- ConditionCurrency? string? - Condition Unit (Currency or Percentage)
- ConditionQuantity? string? - Condition Pricing Unit
- ConditionQuantityUnit? string? - Condition Unit
- ConditionToBaseQtyNmrtr? string? - Numerator for converting condition units to base units
- ConditionToBaseQtyDnmntr? string? - Denominator for converting condition units to base units
- BaseUnit? string? -
- ConditionLowerLimit? string? - Lower limit of the condition rate/amount
- ConditionLowerLimitAmount? string? - Condition Amount or Percentage
- ConditionLowerLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionUpperLimit? string? - Upper limit for the condition rate
- ConditionUpperLimitAmount? string? - Condition Amount or Percentage
- ConditionUpperLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionAlternativeCurrency? string? - Condition Currency (for Cumulation Fields)
- ConditionExclusion? string? - Condition exclusion indicator
- ConditionIsDeleted? boolean? - Deletion Indicator for Condition Record
- AdditionalValueDays? string? - Additional Value Days
- FixedValueDate? string? -
- PaymentTerms? string? - Key for Terms of Payment
- CndnMaxNumberOfSalesOrders? string? - Maximum number of sales orders per condition record
- MinimumConditionBasisValue? string? - Minimum condition base value
- MaximumConditionBasisValue? string? - Maximum condition base value
- MaximumConditionAmount? string? - Maximum condition value
- IncrementalScale? string? - Number of incremental scale
- PricingScaleLine? string? - Scale number for pricing
- ConditionReleaseStatus? string? -
- SalesPriceApprovalRequest? string? - Approval Request for Price Conditions
- ConditionChangeReason? string? - Reason for Changing Condition Record
- PrevApprovedConditionRecord? string? - Previously Approved Condition Record
- ConditionTaxCode? string? - Tax on Sales/Purchases Code
- ConditionWithholdingTaxCode? string? - Withholding Tax Code
- TaxExemptionLicense? string? - Tax Exemption License Number
- LicenseGrantDate? string? - Date License Granted
- LastChangeDateTime? string? - UTC Time Stamp in Long Form (YYYYMMDDhhmmssmmmuuun)
- ETag? string? -
- to_SlsPrcgCndnRecdSuplmnt? CreateA_SlsPrcgCndnRecdValidity_to_SlsPrcgCndnRecdSuplmnt -
- to_SlsPrcgCndnRecdValidity? CreateA_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecdValidity -
- to_SlsPrcgCndnRecordScale? CreateA_SlsPrcgCndnRecdSuplmnt_to_SlsPrcgCndnRecordScale -
- to_SlsPrcgConditionRecordText? CreateA_SlsPrcgConditionRecord_to_SlsPrcgConditionRecordText -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgConditionRecord_to_SlsPrcgConditionRecordText
Fields
- results? CreateA_SlsPrcgConditionRecordText[] -
sap.s4hana.api_slspricingconditionrecord_srv: CreateA_SlsPrcgConditionRecordText
Fields
- ConditionRecord string - Number of Condition Record
- ConditionSequentialNumber string - Sequential number of the condition
- Language string -
- ConditionText? string? -
- ETag? string? -
- to_SlsPrcgConditionRecord? CreateA_SlsPrcgConditionRecord? -
sap.s4hana.api_slspricingconditionrecord_srv: GetA_SlsPrcgCndnRecdSuplmntQueries
Represents the Queries record for the operation: getA_SlsPrcgCndnRecdSuplmnt
Fields
- \$expand? A_SlsPrcgCndnRecdSuplmntExpandOptions - Expand related entities, see Expand
- \$select? A_SlsPrcgCndnRecdSuplmntSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetA_SlsPrcgCndnRecdValidityQueries
Represents the Queries record for the operation: getA_SlsPrcgCndnRecdValidity
Fields
- \$expand? A_SlsPrcgCndnRecdValidityExpandOptions - Expand related entities, see Expand
- \$select? A_SlsPrcgCndnRecdValiditySelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetA_SlsPrcgCndnRecordScaleQueries
Represents the Queries record for the operation: getA_SlsPrcgCndnRecordScale
Fields
- \$expand? A_SlsPrcgCndnRecordScaleExpandOptions - Expand related entities, see Expand
- \$select? A_SlsPrcgCndnRecordScaleSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetA_SlsPrcgCndnSupplementTextQueries
Represents the Queries record for the operation: getA_SlsPrcgCndnSupplementText
Fields
- \$expand? A_SlsPrcgCndnSupplementTextExpandOptions - Expand related entities, see Expand
- \$select? A_SlsPrcgCndnSupplementTextSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetA_SlsPrcgConditionRecordQueries
Represents the Queries record for the operation: getA_SlsPrcgConditionRecord
Fields
- \$expand? A_SlsPrcgConditionRecordExpandOptions - Expand related entities, see Expand
- \$select? A_SlsPrcgConditionRecordSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetA_SlsPrcgConditionRecordTextQueries
Represents the Queries record for the operation: getA_SlsPrcgConditionRecordText
Fields
- \$expand? A_SlsPrcgConditionRecordTextExpandOptions - Expand related entities, see Expand
- \$select? A_SlsPrcgConditionRecordTextSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScaleQueries
Represents the Queries record for the operation: getSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScale
Fields
- \$expand? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScaleExpandOptions - Expand related entities, see Expand
- \$select? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScaleSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementTextQueries
Represents the Queries record for the operation: getSlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementText
Fields
- \$expand? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementTextExpandOptions - Expand related entities, see Expand
- \$select? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementTextSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmntQueries
Represents the Queries record for the operation: getSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmnt
Fields
- \$expand? SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmntExpandOptions - Expand related entities, see Expand
- \$select? SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmntSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValidityQueries
Represents the Queries record for the operation: getSlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValidity
Fields
- \$expand? SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValidityExpandOptions - Expand related entities, see Expand
- \$select? SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValiditySelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetSlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScaleQueries
Represents the Queries record for the operation: getSlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScale
Fields
- \$expand? SlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScaleExpandOptions - Expand related entities, see Expand
- \$select? SlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScaleSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: GetSlsPrcgConditionRecordOfA_SlsPrcgConditionRecordTextQueries
Represents the Queries record for the operation: getSlsPrcgConditionRecordOfA_SlsPrcgConditionRecordText
Fields
- \$expand? SlsPrcgConditionRecordOfA_SlsPrcgConditionRecordTextExpandOptions - Expand related entities, see Expand
- \$select? SlsPrcgConditionRecordOfA_SlsPrcgConditionRecordTextSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListA_SlsPrcgCndnRecdSuplmntsQueries
Represents the Queries record for the operation: listA_SlsPrcgCndnRecdSuplmnts
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? A_SlsPrcgCndnRecdSuplmntOrderByOptions - Order items by property values, see Sorting
- \$expand? A_SlsPrcgCndnRecdSuplmntExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? A_SlsPrcgCndnRecdSuplmntSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListA_SlsPrcgCndnRecdValiditiesQueries
Represents the Queries record for the operation: listA_SlsPrcgCndnRecdValidities
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? A_SlsPrcgCndnRecdValidityOrderByOptions - Order items by property values, see Sorting
- \$expand? A_SlsPrcgCndnRecdValidityExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? A_SlsPrcgCndnRecdValiditySelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListA_SlsPrcgCndnRecordScalesQueries
Represents the Queries record for the operation: listA_SlsPrcgCndnRecordScales
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? A_SlsPrcgCndnRecordScaleOrderByOptions - Order items by property values, see Sorting
- \$expand? A_SlsPrcgCndnRecordScaleExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? A_SlsPrcgCndnRecordScaleSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListA_SlsPrcgCndnSupplementTextsQueries
Represents the Queries record for the operation: listA_SlsPrcgCndnSupplementTexts
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? A_SlsPrcgCndnSupplementTextOrderByOptions - Order items by property values, see Sorting
- \$expand? A_SlsPrcgCndnSupplementTextExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? A_SlsPrcgCndnSupplementTextSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListA_SlsPrcgConditionRecordsQueries
Represents the Queries record for the operation: listA_SlsPrcgConditionRecords
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? A_SlsPrcgConditionRecordOrderByOptions - Order items by property values, see Sorting
- \$expand? A_SlsPrcgConditionRecordExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? A_SlsPrcgConditionRecordSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListA_SlsPrcgConditionRecordTextsQueries
Represents the Queries record for the operation: listA_SlsPrcgConditionRecordTexts
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? A_SlsPrcgConditionRecordTextOrderByOptions - Order items by property values, see Sorting
- \$expand? A_SlsPrcgConditionRecordTextExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? A_SlsPrcgConditionRecordTextSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgCndnRecdValidityQueries
Represents the Queries record for the operation: listSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgCndnRecdValidity
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValidityOrderByOptions - Order items by property values, see Sorting
- \$expand? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValidityExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValiditySelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgConditionRecordQueries
Represents the Queries record for the operation: listSlsPrcgCndnRecdSuplmntsOfA_SlsPrcgConditionRecord
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecordOrderByOptions - Order items by property values, see Sorting
- \$expand? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecordExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? SlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecordSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListSlsPrcgCndnRecdValiditiesOfA_SlsPrcgCndnRecdSuplmntQueries
Represents the Queries record for the operation: listSlsPrcgCndnRecdValiditiesOfA_SlsPrcgCndnRecdSuplmnt
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? SlsPrcgCndnRecdValidityOfA_SlsPrcgCndnRecdSuplmntOrderByOptions - Order items by property values, see Sorting
- \$expand? SlsPrcgCndnRecdValidityOfA_SlsPrcgCndnRecdSuplmntExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? SlsPrcgCndnRecdValidityOfA_SlsPrcgCndnRecdSuplmntSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListSlsPrcgCndnRecdValiditiesOfA_SlsPrcgConditionRecordQueries
Represents the Queries record for the operation: listSlsPrcgCndnRecdValiditiesOfA_SlsPrcgConditionRecord
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? SlsPrcgCndnRecdValidityOfA_SlsPrcgConditionRecordOrderByOptions - Order items by property values, see Sorting
- \$expand? SlsPrcgCndnRecdValidityOfA_SlsPrcgConditionRecordExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? SlsPrcgCndnRecdValidityOfA_SlsPrcgConditionRecordSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListSlsPrcgCndnRecordScalesOfA_SlsPrcgCndnRecdSuplmntQueries
Represents the Queries record for the operation: listSlsPrcgCndnRecordScalesOfA_SlsPrcgCndnRecdSuplmnt
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? SlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmntOrderByOptions - Order items by property values, see Sorting
- \$expand? SlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmntExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? SlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmntSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListSlsPrcgCndnRecordScalesOfA_SlsPrcgConditionRecordQueries
Represents the Queries record for the operation: listSlsPrcgCndnRecordScalesOfA_SlsPrcgConditionRecord
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? SlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecordOrderByOptions - Order items by property values, see Sorting
- \$expand? SlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecordExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? SlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecordSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListSlsPrcgCndnSupplementTextsOfA_SlsPrcgCndnRecdSuplmntQueries
Represents the Queries record for the operation: listSlsPrcgCndnSupplementTextsOfA_SlsPrcgCndnRecdSuplmnt
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? SlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmntOrderByOptions - Order items by property values, see Sorting
- \$expand? SlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmntExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? SlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmntSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: ListSlsPrcgConditionRecordTextsOfA_SlsPrcgConditionRecordQueries
Represents the Queries record for the operation: listSlsPrcgConditionRecordTextsOfA_SlsPrcgConditionRecord
Fields
- \$skip? int - Skip the first n items, see Paging - Skip
- \$top? int - Show only the first n items, see Paging - Top
- \$orderby? SlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecordOrderByOptions - Order items by property values, see Sorting
- \$expand? SlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecordExpandOptions - Expand related entities, see Expand
- \$inlinecount? "allpages"|"none" - Include count of items, see Inlinecount
- \$select? SlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecordSelectOptions - Select properties to be returned, see Select
sap.s4hana.api_slspricingconditionrecord_srv: Modified\ A_SlsPrcgCndnRecdSuplmntType
Fields
sap.s4hana.api_slspricingconditionrecord_srv: Modified\ A_SlsPrcgCndnRecdValidityType
Fields
sap.s4hana.api_slspricingconditionrecord_srv: Modified\ A_SlsPrcgCndnRecordScaleType
Fields
sap.s4hana.api_slspricingconditionrecord_srv: Modified\ A_SlsPrcgCndnSupplementTextType
Fields
sap.s4hana.api_slspricingconditionrecord_srv: Modified\ A_SlsPrcgConditionRecordTextType
Fields
sap.s4hana.api_slspricingconditionrecord_srv: Modified\ A_SlsPrcgConditionRecordType
Fields
sap.s4hana.api_slspricingconditionrecord_srv: OAuth2RefreshTokenGrantConfig
OAuth2 Refresh Token Grant Configs
Fields
- Fields Included from *OAuth2RefreshTokenGrantConfig
- refreshUrl string(default "https://{host}:{port}") - Refresh URL
sap.s4hana.api_slspricingconditionrecord_srv: UpdateA_SlsPrcgCndnRecdSuplmnt
Fields
- ConditionTable? string? -
- ConditionApplication? string? -
- ConditionType? string? -
- ConditionValidityEndDate? string? - Valid To Date
- ConditionValidityStartDate? string? - Valid-From Date
- CreatedByUser? string? - Name of Person Responsible for Creating the Object
- CreationDate? string? - Record Creation Date
- ConditionTextID? string? - Number of texts
- PricingScaleType? string? -
- PricingScaleBasis? string? -
- ConditionScaleQuantity? string? - Condition Scale Quantity
- ConditionScaleQuantityUnit? string? - Condition Scale Unit of Measure
- ConditionScaleAmount? string? -
- ConditionScaleAmountCurrency? string? -
- ConditionCalculationType? string? - Calculation Type for Condition
- ConditionRateValue? string? - Condition amount or percentage where no scale exists
- ConditionRateValueUnit? string? - Condition Unit (Currency or Percentage)
- ConditionRateRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionRateRatioUnit? string? -
- ConditionRateAmount? string? - Condition Amount or Percentage
- ConditionCurrency? string? - Condition Unit (Currency or Percentage)
- ConditionQuantity? string? - Condition Pricing Unit
- ConditionQuantityUnit? string? - Condition Unit
- ConditionToBaseQtyNmrtr? string? - Numerator for converting condition units to base units
- ConditionToBaseQtyDnmntr? string? - Denominator for converting condition units to base units
- BaseUnit? string? -
- ConditionLowerLimit? string? - Lower limit of the condition rate/amount
- ConditionLowerLimitAmount? string? - Condition Amount or Percentage
- ConditionLowerLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionUpperLimit? string? - Upper limit for the condition rate
- ConditionUpperLimitAmount? string? - Condition Amount or Percentage
- ConditionUpperLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionAlternativeCurrency? string? - Condition Currency (for Cumulation Fields)
- ConditionExclusion? string? - Condition exclusion indicator
- ConditionIsDeleted? boolean? - Deletion Indicator for Condition Record
- AdditionalValueDays? string? - Additional Value Days
- FixedValueDate? string? -
- PaymentTerms? string? - Key for Terms of Payment
- CndnMaxNumberOfSalesOrders? string? - Maximum number of sales orders per condition record
- MinimumConditionBasisValue? string? - Minimum condition base value
- MaximumConditionBasisValue? string? - Maximum condition base value
- MaximumConditionAmount? string? - Maximum condition value
- IncrementalScale? string? - Number of incremental scale
- PricingScaleLine? string? - Scale number for pricing
- ConditionReleaseStatus? string? -
- SalesPriceApprovalRequest? string? - Approval Request for Price Conditions
- ConditionChangeReason? string? - Reason for Changing Condition Record
- PrevApprovedConditionRecord? string? - Previously Approved Condition Record
- ETag? string? -
sap.s4hana.api_slspricingconditionrecord_srv: UpdateA_SlsPrcgCndnRecdValidity
Fields
- ConditionValidityStartDate? string? - Validity start date of the condition record
- ConditionApplication? string? -
- ConditionType? string? -
- ConditionReleaseStatus? string? -
- DepartureCountry? string? - Departure Country/Region (from which the goods are sent)
- SalesDocument? string? -
- SalesDocumentItem? string? -
- BillableControl? string? -
- Industry? string? - Industry Key
- CityCode? string? -
- ConditionContract? string? -
- County? string? -
- EngagementProject? string? - Commercial Project ID
- ConfigurationNumber? string? - Internal Object Number
- BR_NFDocumentType? string? -
- BRSpcfcFreeDefinedField1? string? -
- BRSpcfcFreeDefinedField2? string? -
- BRSpcfcFreeDefinedField3? string? -
- InternationalArticleNumber? string? - International Article Number (EAN/UPC)
- TechnicalObjectType? string? - Type of Technical Object
- Equipment? string? - Equipment Number
- CustomerHierarchy? string? -
- IncotermsClassification? string? - Incoterms (Part 1)
- IncotermsTransferLocation? string? -
- AccountTaxType? string? -
- TxRlvnceClassfctnForArgentina? string? - Tax relevant classification
- BR_TaxCode? string? - SD tax code
- LocalSalesTaxApplicabilityCode? string? - LST CST Applicability Code
- CustomerGroup? string? -
- CustomerPriceGroup? string? - Customer Price Group
- MaterialPricingGroup? string? - Material Price Group
- SoldToParty? string? -
- BPForSoldToParty? string? - Business Partner Number
- Customer? string? - Customer number
- BPForCustomer? string? - Business Partner Number
- PayerParty? string? -
- BPForPayerParty? string? - Business Partner Number
- ShipToParty? string? -
- BPForShipToParty? string? - Business Partner Number
- Supplier? string? - Supplier's Account Number
- BPForSupplier? string? - Business Partner Number
- DestinationCountry? string? - Destination Country/Region
- MaterialGroup? string? -
- Material? string? - Material Number
- ReturnsRefundExtent? string? - Returns Refund Code
- AdditionalMaterialGroup1? string? -
- AdditionalMaterialGroup2? string? -
- AdditionalMaterialGroup3? string? -
- AdditionalMaterialGroup4? string? -
- AdditionalMaterialGroup5? string? -
- Personnel? string? -
- PriceListType? string? -
- PostalCode? string? -
- Region? string? - Region (State, Province, County)
- EngagementProjectServiceOrg? string? -
- RequirementSegment? string? -
- StockSegment? string? -
- Division? string? -
- CommodityCode? string? -
- ConsumptionTaxCtrlCode? string? - Control code for consumption taxes in foreign trade
- BRSpcfcTaxBasePercentageCode? string? - Tax Base in Percentage
- BRSpcfcTxGrpDynTaxExceptions? string? - Tax Group for Dynamic Tax Exceptions
- CustomerTaxClassification1? string? - Tax Classification 1 for Customer
- CustomerTaxClassification2? string? - Tax Classification 2 for Customer
- CustomerTaxClassification3? string? - Tax Classification 3 for Customer
- CustomerTaxClassification4? string? - Tax Classification 4 for Customer
- CustomerTaxClassification5? string? - Tax Classification 5 for Customer
- CustomerTaxClassification6? string? - Tax Classification 6 for Customer
- CustomerTaxClassification7? string? - Tax Classification 7 for Customer
- CustomerTaxClassification8? string? - Tax Classification 8 for Customer
- CustomerTaxClassification9? string? - Tax Classification 9 for Customer
- ProductTaxClassification1? string? - Tax Classification of Material
- ProductTaxClassification2? string? - Tax Classification 2 for Material
- ProductTaxClassification3? string? - Tax Classification 3 for Material
- ProductTaxClassification4? string? - Tax Classification 4 for Material
- ProductTaxClassification5? string? - Tax Classification 5 for Material
- ProductTaxClassification6? string? - Tax Classification 6 for Material
- ProductTaxClassification7? string? - Tax Classification 7 for Material
- ProductTaxClassification8? string? - Tax Classification 8 for Material
- ProductTaxClassification9? string? - Tax Classification 9 for Material
- TradingContract? string? -
- TradingContractItem? string? - Item Number of Trading Contract
- TaxJurisdiction? string? -
- BRSpcfcTaxDepartureRegion? string? - Ship from location (tax region)
- BRSpcfcTaxDestinationRegion? string? - Ship to location (tax region)
- MainItemMaterialPricingGroup? string? - Material pricing group of main item
- MainItemPricingRefMaterial? string? - Pricing reference material of main item
- VariantCondition? string? - Variant Condition Key
- ValueAddedServiceChargeCode? string? -
- SDDocument? string? - Sales and Distribution Document Number
- ReferenceSDDocument? string? - Document Number of Reference Document
- ReferenceSDDocumentItem? string? - Item Number of the Reference Item
- SalesOffice? string? -
- SalesGroup? string? -
- SalesOrganization? string? -
- SalesOrderSalesOrganization? string? - Sales organization of sales order
- OrderQuantityUnit? string? -
- DistributionChannel? string? -
- TransactionCurrency? string? - SD Document Currency
- WBSElementInternalID? string? - WBS Billing Element
- WBSElementExternalID? string? - Work Breakdown Structure Element (WBS Element) Edited
- WorkPackage? string? - WBS Work Package
- Plant? string? -
- PlantRegion? string? - Region in which plant is located
- WorkItem? string? -
- ConditionProcessingStatus? string? - Processing status for conditions
- PricingDate? string? - Condition Pricing Date
- ConditionIsExclusive? boolean? - Indicator condition exclusive
- ConditionScaleBasisValue? string? - Condition Scale Base Value
- TaxCode? string? - Tax on Sales/Purchases Code
- ServiceDocument? string? -
- ServiceDocumentItem? string? - Shortened Item Number in Document
- TimeSheetOvertimeCategory? string? -
- SalesSDDocumentCategory? string? -
- ReturnReason? string? -
- ProdUnivHierarchyNode? string? - Product Hierarchy Node
- ProductHierarchyNode? string? - Product Hierarchy Node
- CustomerConditionGroup? string? - Customer Attribute for Condition Groups
- ShippingType? string? -
- SubscriptionContractDuration? string? - Numerical Value of Duration
- SubscrpnContrDurationUnit? string? - IS-T: Unit of Duration for a Telco Contract
- SubscriptionContractLockReason? string? -
- CrsCtlgMappgPriceVersionNumber? string? -
- OrderType? string? -
- SalesDocumentType? string? -
- SDDocumentReason? string? - Order Reason (Reason for the Business Transaction)
- VolumeRebateGroup? string? - Volume rebate group
- ValuationType? string? -
- SalesDistrict? string? -
- Batch? string? - Batch Number
- PurgDocSupplyingPlant? string? - Supplying (issuing) plant in case of stock transport order
- MatUsageIndicator? string? - Usage Indicator
- ShippingCondition? string? -
- PlantCounty? string? - County in which plant is located
- PlantCity? string? - City in which plant is located
- MaterialExternalGroup? string? - External Material Group
- CustomerHierarchyRootNode? string? - Customer Hierarchy Root Node ID (Hier ID)
- CustomerHierarchyNodeID? string? - Customer Hierarchy Node ID
- CustomerHierarchyNodeType? string? - Customer Hierarchy Node Type
- AdditionalCustomerGroup1? string? -
- AdditionalCustomerGroup2? string? -
- AdditionalCustomerGroup3? string? -
- AdditionalCustomerGroup4? string? -
- AdditionalCustomerGroup5? string? -
- SDDocumentItem? string? - Item number of the SD document
- CndnBillingDocumentCategory? string? -
- Country? string? -
- CustomerPurchaseOrderType? string? - Customer Purchase Order Type
- CountryOfOrigin? string? - Country/Region of Origin of Material (Non-Preferential Ori.)
- SalesDocumentItemCategory? string? - Sales Document Item Category
- BillToParty? string? -
- BusinessPartnerIndustryCode? string? -
- BillingDocumentType? string? -
- MatlAccountAssignmentGroup? string? - Account Assignment Group for Material
- Route? string? -
- PRAContract? string? - Contract Number
- Well? string? - Well ID number
- WellCompletion? string? - Well Completion Number
- MeasurementPoint? string? - Measurement point number
- PricingFormulaNumber? string? -
- ETag? string? -
sap.s4hana.api_slspricingconditionrecord_srv: UpdateA_SlsPrcgCndnRecordScale
Fields
- ConditionScaleQuantity? string? - Condition Scale Quantity
- ConditionScaleQuantityUnit? string? - Condition Scale Unit of Measure
- ConditionScaleAmount? string? -
- ConditionScaleAmountCurrency? string? -
- ConditionRateValue? string? - Condition Amount or Percentage
- ConditionRateValueUnit? string? - Condition Unit (Currency or Percentage)
- ConditionRateRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionRateRatioUnit? string? -
- ConditionRateAmount? string? - Condition Amount or Percentage
- ConditionCurrency? string? - Condition Unit (Currency or Percentage)
- ETag? string? -
sap.s4hana.api_slspricingconditionrecord_srv: UpdateA_SlsPrcgCndnSupplementText
Fields
- ConditionText? string? -
- ETag? string? -
sap.s4hana.api_slspricingconditionrecord_srv: UpdateA_SlsPrcgConditionRecord
Fields
- ConditionSequentialNumber? string? - Sequential number of the condition
- ConditionTable? string? -
- ConditionApplication? string? -
- ConditionType? string? -
- ConditionValidityEndDate? string? - Valid To Date
- ConditionValidityStartDate? string? - Valid-From Date
- CreatedByUser? string? - Name of Person Responsible for Creating the Object
- CreationDate? string? - Record Creation Date
- LastChangedByUser? string? - Name of Person Who Changed Object
- LastChangeDate? string? - Last Changed On
- ConditionSearchTermValue? string? - Search Term for Conditions
- ConditionTextID? string? - Number of texts
- PricingScaleType? string? -
- PricingScaleBasis? string? -
- ConditionScaleQuantity? string? - Condition Scale Quantity
- ConditionScaleQuantityUnit? string? - Condition Scale Unit of Measure
- ConditionScaleAmount? string? -
- ConditionScaleAmountCurrency? string? -
- ConditionCalculationType? string? - Calculation Type for Condition
- ConditionRateValue? string? - Condition amount or percentage where no scale exists
- ConditionRateValueUnit? string? - Condition Unit (Currency or Percentage)
- ConditionRateRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionRateRatioUnit? string? -
- ConditionRateAmount? string? - Condition Amount or Percentage
- ConditionCurrency? string? - Condition Unit (Currency or Percentage)
- ConditionQuantity? string? - Condition Pricing Unit
- ConditionQuantityUnit? string? - Condition Unit
- ConditionToBaseQtyNmrtr? string? - Numerator for converting condition units to base units
- ConditionToBaseQtyDnmntr? string? - Denominator for converting condition units to base units
- BaseUnit? string? -
- ConditionLowerLimit? string? - Lower limit of the condition rate/amount
- ConditionLowerLimitAmount? string? - Condition Amount or Percentage
- ConditionLowerLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionUpperLimit? string? - Upper limit for the condition rate
- ConditionUpperLimitAmount? string? - Condition Amount or Percentage
- ConditionUpperLimitRatio? string? - Condition Ratio (in Percent or Per Mille)
- ConditionAlternativeCurrency? string? - Condition Currency (for Cumulation Fields)
- ConditionExclusion? string? - Condition exclusion indicator
- ConditionIsDeleted? boolean? - Deletion Indicator for Condition Record
- AdditionalValueDays? string? - Additional Value Days
- FixedValueDate? string? -
- PaymentTerms? string? - Key for Terms of Payment
- CndnMaxNumberOfSalesOrders? string? - Maximum number of sales orders per condition record
- MinimumConditionBasisValue? string? - Minimum condition base value
- MaximumConditionBasisValue? string? - Maximum condition base value
- MaximumConditionAmount? string? - Maximum condition value
- IncrementalScale? string? - Number of incremental scale
- PricingScaleLine? string? - Scale number for pricing
- ConditionReleaseStatus? string? -
- SalesPriceApprovalRequest? string? - Approval Request for Price Conditions
- ConditionChangeReason? string? - Reason for Changing Condition Record
- PrevApprovedConditionRecord? string? - Previously Approved Condition Record
- ConditionTaxCode? string? - Tax on Sales/Purchases Code
- ConditionWithholdingTaxCode? string? - Withholding Tax Code
- TaxExemptionLicense? string? - Tax Exemption License Number
- LicenseGrantDate? string? - Date License Granted
- LastChangeDateTime? string? - UTC Time Stamp in Long Form (YYYYMMDDhhmmssmmmuuun)
- ETag? string? -
sap.s4hana.api_slspricingconditionrecord_srv: UpdateA_SlsPrcgConditionRecordText
Fields
- ConditionText? string? -
- ETag? string? -
Union types
sap.s4hana.api_slspricingconditionrecord_srv: BatchEntity
BatchEntity
An entity that may be sent inside a batch request: any create payload, any update payload, or an update payload already wrapped for a modify request.
A bare array of entities is created in the given entity set, so updates only make sense through
BatchRequest, which lets each request carry its own key in the URI and its own If-Match header.
A modify request accepts either a bare Update... payload or the same payload wrapped as
{"d": { ... }}, which is what the Modified\ ...Type records are. Both answer 204.
A modify always needs the entity's current ETag in an If-Match header: without one the service
answers 428 The Data Service Request is required to be conditional, and If-Match: * is rejected
with State of the resource (entity) was already changed.
Array types
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScaleExpandOptions
SlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScaleExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementTextSelectOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementTextSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmntOrderByOptions
SlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmntOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdSuplmntOrderByOptions
A_SlsPrcgCndnRecdSuplmntOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScaleExpandOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScaleExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmntOrderByOptions
SlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmntOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecordExpandOptions
SlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecordExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordOfA_SlsPrcgConditionRecordTextSelectOptions
SlsPrcgConditionRecordOfA_SlsPrcgConditionRecordTextSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecordTextExpandOptions
A_SlsPrcgConditionRecordTextExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmntSelectOptions
SlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmntSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValiditySelectOptions
SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValiditySelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnSupplementTextSelectOptions
A_SlsPrcgCndnSupplementTextSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValidityOrderByOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValidityOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdSuplmntSelectOptions
A_SlsPrcgCndnRecdSuplmntSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValiditySelectOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValiditySelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmntSelectOptions
SlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmntSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecordExpandOptions
SlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecordExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdValidityOfA_SlsPrcgConditionRecordOrderByOptions
SlsPrcgCndnRecdValidityOfA_SlsPrcgConditionRecordOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecordScaleExpandOptions
A_SlsPrcgCndnRecordScaleExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecordOrderByOptions
A_SlsPrcgConditionRecordOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecordScaleSelectOptions
A_SlsPrcgCndnRecordScaleSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValidityExpandOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecdValidityExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdValidityOfA_SlsPrcgCndnRecdSuplmntOrderByOptions
SlsPrcgCndnRecdValidityOfA_SlsPrcgCndnRecdSuplmntOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementTextExpandOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnSupplementTextExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdValiditySelectOptions
A_SlsPrcgCndnRecdValiditySelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecordSelectOptions
SlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecordSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdSuplmntExpandOptions
A_SlsPrcgCndnRecdSuplmntExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmntExpandOptions
SlsPrcgCndnSupplementTextOfA_SlsPrcgCndnRecdSuplmntExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecordOrderByOptions
SlsPrcgCndnRecordScaleOfA_SlsPrcgConditionRecordOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmntExpandOptions
SlsPrcgCndnRecordScaleOfA_SlsPrcgCndnRecdSuplmntExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecordExpandOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecordExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnSupplementTextExpandOptions
A_SlsPrcgCndnSupplementTextExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecordTextSelectOptions
A_SlsPrcgConditionRecordTextSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScaleSelectOptions
SlsPrcgConditionRecordOfA_SlsPrcgCndnRecordScaleSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecordSelectOptions
A_SlsPrcgConditionRecordSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecordExpandOptions
A_SlsPrcgConditionRecordExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordOfA_SlsPrcgConditionRecordTextExpandOptions
SlsPrcgConditionRecordOfA_SlsPrcgConditionRecordTextExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecordSelectOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecordSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValidityExpandOptions
SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdValidityExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnSupplementTextOrderByOptions
A_SlsPrcgCndnSupplementTextOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdValidityOfA_SlsPrcgConditionRecordExpandOptions
SlsPrcgCndnRecdValidityOfA_SlsPrcgConditionRecordExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmntSelectOptions
SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmntSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgConditionRecordTextOrderByOptions
A_SlsPrcgConditionRecordTextOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdValidityOfA_SlsPrcgCndnRecdSuplmntExpandOptions
SlsPrcgCndnRecdValidityOfA_SlsPrcgCndnRecdSuplmntExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecordSelectOptions
SlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecordSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdValidityOfA_SlsPrcgCndnRecdSuplmntSelectOptions
SlsPrcgCndnRecdValidityOfA_SlsPrcgCndnRecdSuplmntSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdValidityExpandOptions
A_SlsPrcgCndnRecdValidityExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecdValidityOrderByOptions
A_SlsPrcgCndnRecdValidityOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmntExpandOptions
SlsPrcgConditionRecordOfA_SlsPrcgCndnRecdSuplmntExpandOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdValidityOfA_SlsPrcgConditionRecordSelectOptions
SlsPrcgCndnRecdValidityOfA_SlsPrcgConditionRecordSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScaleSelectOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgCndnRecordScaleSelectOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecordOrderByOptions
SlsPrcgConditionRecordTextOfA_SlsPrcgConditionRecordOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: A_SlsPrcgCndnRecordScaleOrderByOptions
A_SlsPrcgCndnRecordScaleOrderByOptions
sap.s4hana.api_slspricingconditionrecord_srv: SlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecordOrderByOptions
SlsPrcgCndnRecdSuplmntOfA_SlsPrcgConditionRecordOrderByOptions
String types
sap.s4hana.api_slspricingconditionrecord_srv: count
count
The number of entities in the collection. Available when using the $inlinecount query option.
Import
import ballerinax/sap.s4hana.api_slspricingconditionrecord_srv;Metadata
Released date: 7 days ago
Version: 0.3.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 4
Current verison: 3
Weekly downloads
Keywords
Name/SAP S/4HANA Sales Pricing Condition Record API
Type/Connector
Vendor/SAP
Area/ERP & Business Operations
Business Management/ERP
Cost/Paid
Sales and Distribution
SD
Contributors