sap.successfactors.ecpaymentinformation
Module sap.successfactors.ecpaymentinformation
API
Definitions
ballerinax/sap.successfactors.ecpaymentinformation Ballerina library
Overview
SAP SuccessFactors Employee Central is a comprehensive human capital management solution that helps organizations manage their workforce effectively. It provides a unified platform for HR processes including employee data management, organizational structures, and employment lifecycle management.
WSO2 SAP Successfactors Payment Information provides a way to interact with the SAP SuccessFactors Employee Central APIs.
Key Features
- Manage employee payment information and bank accounts
- Configure payment methods and direct deposit details
- Query payment information across multiple regions
Setup guide
This connector supports two authentication methods: Basic Authentication and OAuth 2.0 SAML Bearer.
Method 1: Basic Authentication
If you already have a username and password for this integration to work, you can use those directly. If you'd rather create a new account with narrowed scope for this integration, follow these steps:
- Sign in to your SAP SuccessFactors instance as an administrator.
- Navigate to Admin Center > Add New Employee and create a new user account for this integration.
- Navigate to Admin Center > Manage Permission Roles, create a role scoped to only the permissions this integration needs, and grant it to the new user.
- Navigate to Admin Center > Reset User Password and set a password for the new user account.
In either case, you will also need the API server hostname for your SuccessFactors region, for example,
api12.successfactors.eu. The complete list of API server hostnames by region is available in the
SAP SuccessFactors API documentation.
Method 2: OAuth 2.0 SAML Bearer
Step 1: Generate a key pair and certificate
-
Generate an RSA key pair and a matching X.509 certificate. If you don't already have one, generate a self-signed pair with OpenSSL:
openssl req -x509 -newkey rsa:2048 -keyout private_key.pem -out certificate.pem -days 365 -nodes -subj "/CN=YourAppName"private_key.pemis secret - it never leaves your machine or gets uploaded anywhere. Onlycertificate.pemis registered with SAP.
Step 2: Register an OAuth2 client application
-
Sign in to your SAP SuccessFactors instance as an administrator.
-
Search for Manage OAuth2 Client Applications in Admin Center's action search, or navigate to it directly under Admin Center > Company Settings.

-
Choose Register Client Application and provide the following information:
Field Description Application Name A name to identify this integration Description An optional description X.509 Certificate The contents of certificate.pemas a single continuous base64 string, with the-----BEGIN CERTIFICATE-----/-----END CERTIFICATE-----lines and line breaks removed. Produce this withawk '/BEGIN CERTIFICATE/{flag=1;next}/END CERTIFICATE/{flag=0}flag' certificate.pem | tr -d '\n'and paste the single line of output it prints. -
Choose Register to save the application.
Step 3: Note your credentials
After registering, open the application (choose View from the application list) to find the Company ID and the API Key SAP assigned to it.

You now have everything sap:SamlBearerAuthConfig needs:
- apiKey - the API Key from the application you just registered
- companyId - the Company ID shown on the same screen
- username - the SAP user to authenticate as
- privateKey - the path to your
private_key.pemfile - certificate - the path to your
certificate.pemfile, or its content - tokenUrl - your Admin Center's OAuth2 token endpoint, typically
https://<admin-center-host>/oauth/token
Quickstart
To use the sap.successfactors.ecpaymentinformation connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
Import the sap.successfactors.ecpaymentinformation module.
import ballerinax/sap.successfactors.ecpaymentinformation as paymentinformation;
Step 2: Instantiate a new connector
Use the hostname and credentials to initiate a client.
configurable string hostname = ?; configurable string username = ?; configurable string password = ?; paymentinformation:Client paymentinformationClient = check new ( { auth: { username, password } }, hostname );
Step 3: Invoke the connector operation
Now, utilize the available connector operations.
paymentinformation:PaymentInformationV3Wrapper result = check paymentinformationClient->listPaymentInformationV3s();
Step 4: Run the Ballerina application
bal run
Examples
The SAP SuccessFactors Employee Central Ballerina connectors provide practical examples illustrating usage in various scenarios. Explore these examples, covering use cases like syncing employee data and sending notifications.
-
Google Sheets to SuccessFactors - Read employee records from a Google Sheets roster and create Personal Information records in SuccessFactors.
-
SuccessFactors to Slack - Poll SuccessFactors for newly onboarded employees and send welcome notifications to a Slack channel.
Clients
sap.successfactors.ecpaymentinformation: Client
You can use these APIs to maintain the country-dependent fields of payment information details for specific countries.
You can find your company's API server in List of API Servers in SAP SuccessFactors.
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 -
- port int 443 -
listPaymentInformationDetailV3KENs
function listPaymentInformationDetailV3KENs(map<string|string[]> headers, *ListPaymentInformationDetailV3KENsQueries queries) returns Wrapper|errorGet entities from PaymentInformationDetailV3KEN
Parameters
- queries *ListPaymentInformationDetailV3KENsQueries - Queries to be sent with the request
createPaymentInformationDetailV3KEN
function createPaymentInformationDetailV3KEN(PaymentInformationDetailV3KEN payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3KEN|errorAdd new entity to PaymentInformationDetailV3KEN
Parameters
- payload PaymentInformationDetailV3KEN - New entity
Return Type
- CreatedPaymentInformationDetailV3KEN|error - Created entity
getPaymentInformationDetailV3KEN
function getPaymentInformationDetailV3KEN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3KENQueries queries) returns PaymentInformationDetailV3KEN|errorGet entity from PaymentInformationDetailV3KEN by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3KENQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3KEN|error - Retrieved entity
updatePaymentInformationDetailV3KEN
function updatePaymentInformationDetailV3KEN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3KEN payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3KEN
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3KEN - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3KEN
function deletePaymentInformationDetailV3KEN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3KENHeaders headers) returns error?Delete entity from PaymentInformationDetailV3KEN
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3KENHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3ISRs
function listPaymentInformationDetailV3ISRs(map<string|string[]> headers, *ListPaymentInformationDetailV3ISRsQueries queries) returns Wrapper_1|errorGet entities from PaymentInformationDetailV3ISR
Parameters
- queries *ListPaymentInformationDetailV3ISRsQueries - Queries to be sent with the request
createPaymentInformationDetailV3ISR
function createPaymentInformationDetailV3ISR(PaymentInformationDetailV3ISR payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3ISR|errorAdd new entity to PaymentInformationDetailV3ISR
Parameters
- payload PaymentInformationDetailV3ISR - New entity
Return Type
- CreatedPaymentInformationDetailV3ISR|error - Created entity
getPaymentInformationDetailV3ISR
function getPaymentInformationDetailV3ISR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3ISRQueries queries) returns PaymentInformationDetailV3ISR|errorGet entity from PaymentInformationDetailV3ISR by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3ISRQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3ISR|error - Retrieved entity
updatePaymentInformationDetailV3ISR
function updatePaymentInformationDetailV3ISR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3ISR payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3ISR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3ISR - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3ISR
function deletePaymentInformationDetailV3ISR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3ISRHeaders headers) returns error?Delete entity from PaymentInformationDetailV3ISR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3ISRHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3s
function listPaymentInformationDetailV3s(map<string|string[]> headers, *ListPaymentInformationDetailV3sQueries queries) returns Wrapper_2|errorGet entities from PaymentInformationDetailV3
Parameters
- queries *ListPaymentInformationDetailV3sQueries - Queries to be sent with the request
createPaymentInformationDetailV3
function createPaymentInformationDetailV3(PaymentInformationDetailV3 payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3|errorAdd new entity to PaymentInformationDetailV3
Parameters
- payload PaymentInformationDetailV3 - New entity
Return Type
- CreatedPaymentInformationDetailV3|error - Created entity
getPaymentInformationDetailV3
function getPaymentInformationDetailV3(string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3Queries queries) returns PaymentInformationDetailV3|errorGet entity from PaymentInformationDetailV3 by key
Parameters
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3Queries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3|error - Retrieved entity
updatePaymentInformationDetailV3
function updatePaymentInformationDetailV3(string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3 payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3
Parameters
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3 - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3
function deletePaymentInformationDetailV3(string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3Headers headers) returns error?Delete entity from PaymentInformationDetailV3
Parameters
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3Headers (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3ARGs
function listPaymentInformationDetailV3ARGs(map<string|string[]> headers, *ListPaymentInformationDetailV3ARGsQueries queries) returns Wrapper_3|errorGet entities from PaymentInformationDetailV3ARG
Parameters
- queries *ListPaymentInformationDetailV3ARGsQueries - Queries to be sent with the request
createPaymentInformationDetailV3ARG
function createPaymentInformationDetailV3ARG(PaymentInformationDetailV3ARG payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3ARG|errorAdd new entity to PaymentInformationDetailV3ARG
Parameters
- payload PaymentInformationDetailV3ARG - New entity
Return Type
- CreatedPaymentInformationDetailV3ARG|error - Created entity
getPaymentInformationDetailV3ARG
function getPaymentInformationDetailV3ARG(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3ARGQueries queries) returns PaymentInformationDetailV3ARG|errorGet entity from PaymentInformationDetailV3ARG by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3ARGQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3ARG|error - Retrieved entity
updatePaymentInformationDetailV3ARG
function updatePaymentInformationDetailV3ARG(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3ARG payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3ARG
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3ARG - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3ARG
function deletePaymentInformationDetailV3ARG(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3ARGHeaders headers) returns error?Delete entity from PaymentInformationDetailV3ARG
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3ARGHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentMethodV3s
function listPaymentMethodV3s(map<string|string[]> headers, *ListPaymentMethodV3sQueries queries) returns Wrapper_4|errorGet entities from PaymentMethodV3
Parameters
- queries *ListPaymentMethodV3sQueries - Queries to be sent with the request
createPaymentMethodV3
function createPaymentMethodV3(PaymentMethodV3 payload, map<string|string[]> headers) returns CreatedPaymentMethodV3|errorAdd new entity to PaymentMethodV3
Parameters
- payload PaymentMethodV3 - New entity
Return Type
- CreatedPaymentMethodV3|error - Created entity
getPaymentMethodV3
function getPaymentMethodV3(string externalCode, map<string|string[]> headers, *GetPaymentMethodV3Queries queries) returns PaymentMethodV3|errorGet entity from PaymentMethodV3 by key
Parameters
- externalCode string - key: externalCode
- queries *GetPaymentMethodV3Queries - Queries to be sent with the request
Return Type
- PaymentMethodV3|error - Retrieved entity
updatePaymentMethodV3
function updatePaymentMethodV3(string externalCode, ModifiedPaymentMethodV3 payload, map<string|string[]> headers) returns error?Update entity in PaymentMethodV3
Parameters
- externalCode string - key: externalCode
- payload ModifiedPaymentMethodV3 - New property values
Return Type
- error? - Success
deletePaymentMethodV3
function deletePaymentMethodV3(string externalCode, DeletePaymentMethodV3Headers headers) returns error?Delete entity from PaymentMethodV3
Parameters
- externalCode string - key: externalCode
- headers DeletePaymentMethodV3Headers (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBanks
Get entities from Bank
Parameters
- queries *ListBanksQueries - Queries to be sent with the request
createBank
Add new entity to Bank
Parameters
- payload Bank - New entity
Return Type
- CreatedBank|error - Created entity
getBank
function getBank(string externalCode, map<string|string[]> headers, *GetBankQueries queries) returns Bank|errorGet entity from Bank by key
Parameters
- externalCode string - key: externalCode
- queries *GetBankQueries - Queries to be sent with the request
updateBank
function updateBank(string externalCode, ModifiedBank payload, map<string|string[]> headers) returns error?Update entity in Bank
Return Type
- error? - Success
deleteBank
function deleteBank(string externalCode, DeleteBankHeaders headers) returns error?Delete entity from Bank
Parameters
- externalCode string - key: externalCode
- headers DeleteBankHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listCustomPayTypeAssignments
function listCustomPayTypeAssignments(map<string|string[]> headers, *ListCustomPayTypeAssignmentsQueries queries) returns Wrapper_6|errorGet entities from CustomPayTypeAssignment
Parameters
- queries *ListCustomPayTypeAssignmentsQueries - Queries to be sent with the request
createCustomPayTypeAssignment
function createCustomPayTypeAssignment(CustomPayTypeAssignment payload, map<string|string[]> headers) returns CreatedCustomPayTypeAssignment|errorAdd new entity to CustomPayTypeAssignment
Parameters
- payload CustomPayTypeAssignment - New entity
Return Type
- CreatedCustomPayTypeAssignment|error - Created entity
getCustomPayTypeAssignment
function getCustomPayTypeAssignment(string CustomPayType_externalCode, int externalCode, map<string|string[]> headers, *GetCustomPayTypeAssignmentQueries queries) returns CustomPayTypeAssignment|errorGet entity from CustomPayTypeAssignment by key
Parameters
- CustomPayType_externalCode string - key: CustomPayType_externalCode
- externalCode int - key: externalCode
- queries *GetCustomPayTypeAssignmentQueries - Queries to be sent with the request
Return Type
- CustomPayTypeAssignment|error - Retrieved entity
updateCustomPayTypeAssignment
function updateCustomPayTypeAssignment(string CustomPayType_externalCode, int externalCode, ModifiedCustomPayTypeAssignment payload, map<string|string[]> headers) returns error?Update entity in CustomPayTypeAssignment
Parameters
- CustomPayType_externalCode string - key: CustomPayType_externalCode
- externalCode int - key: externalCode
- payload ModifiedCustomPayTypeAssignment - New property values
Return Type
- error? - Success
deleteCustomPayTypeAssignment
function deleteCustomPayTypeAssignment(string CustomPayType_externalCode, int externalCode, DeleteCustomPayTypeAssignmentHeaders headers) returns error?Delete entity from CustomPayTypeAssignment
Parameters
- CustomPayType_externalCode string - key: CustomPayType_externalCode
- externalCode int - key: externalCode
- headers DeleteCustomPayTypeAssignmentHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listCustomPayTypes
function listCustomPayTypes(map<string|string[]> headers, *ListCustomPayTypesQueries queries) returns Wrapper_7|errorGet entities from CustomPayType
Parameters
- queries *ListCustomPayTypesQueries - Queries to be sent with the request
createCustomPayType
function createCustomPayType(CustomPayType payload, map<string|string[]> headers) returns CreatedCustomPayType|errorAdd new entity to CustomPayType
Parameters
- payload CustomPayType - New entity
Return Type
- CreatedCustomPayType|error - Created entity
getCustomPayType
function getCustomPayType(string externalCode, map<string|string[]> headers, *GetCustomPayTypeQueries queries) returns CustomPayType|errorGet entity from CustomPayType by key
Parameters
- externalCode string - key: externalCode
- queries *GetCustomPayTypeQueries - Queries to be sent with the request
Return Type
- CustomPayType|error - Retrieved entity
updateCustomPayType
function updateCustomPayType(string externalCode, ModifiedCustomPayType payload, map<string|string[]> headers) returns error?Update entity in CustomPayType
Parameters
- externalCode string - key: externalCode
- payload ModifiedCustomPayType - New property values
Return Type
- error? - Success
deleteCustomPayType
function deleteCustomPayType(string externalCode, DeleteCustomPayTypeHeaders headers) returns error?Delete entity from CustomPayType
Parameters
- externalCode string - key: externalCode
- headers DeleteCustomPayTypeHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3NGAs
function listPaymentInformationDetailV3NGAs(map<string|string[]> headers, *ListPaymentInformationDetailV3NGAsQueries queries) returns Wrapper_8|errorGet entities from PaymentInformationDetailV3NGA
Parameters
- queries *ListPaymentInformationDetailV3NGAsQueries - Queries to be sent with the request
createPaymentInformationDetailV3NGA
function createPaymentInformationDetailV3NGA(PaymentInformationDetailV3NGA payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3NGA|errorAdd new entity to PaymentInformationDetailV3NGA
Parameters
- payload PaymentInformationDetailV3NGA - New entity
Return Type
- CreatedPaymentInformationDetailV3NGA|error - Created entity
getPaymentInformationDetailV3NGA
function getPaymentInformationDetailV3NGA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3NGAQueries queries) returns PaymentInformationDetailV3NGA|errorGet entity from PaymentInformationDetailV3NGA by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3NGAQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3NGA|error - Retrieved entity
updatePaymentInformationDetailV3NGA
function updatePaymentInformationDetailV3NGA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3NGA payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3NGA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3NGA - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3NGA
function deletePaymentInformationDetailV3NGA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3NGAHeaders headers) returns error?Delete entity from PaymentInformationDetailV3NGA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3NGAHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3CZEs
function listPaymentInformationDetailV3CZEs(map<string|string[]> headers, *ListPaymentInformationDetailV3CZEsQueries queries) returns Wrapper_9|errorGet payment Information detail entities for CZE
Parameters
- queries *ListPaymentInformationDetailV3CZEsQueries - Queries to be sent with the request
createPaymentInformationDetailV3CZE
function createPaymentInformationDetailV3CZE(PaymentInformationDetailV3CZE payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3CZE|errorAdd new entity to PaymentInformationDetailV3CZE
Parameters
- payload PaymentInformationDetailV3CZE - New entity
Return Type
- CreatedPaymentInformationDetailV3CZE|error - Created entity
getPaymentInformationDetailV3CZE
function getPaymentInformationDetailV3CZE(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3CZEQueries queries) returns PaymentInformationDetailV3CZE|errorGet entity from PaymentInformationDetailV3CZE by key
Parameters
- PaymentInformationDetailV3_externalCode int - the externalCode of entity PaymentInformationDetailV3 of the associated entity PaymentInformation
- PaymentInformationV3_effectiveStartDate string - the effectiveStartDate of entity PaymentInformationV3
- PaymentInformationV3_worker string - the worker of the entity PaymentInformationV3_
- externalCode int - the externalCode of PaymentInformationDetailV3CZE
- queries *GetPaymentInformationDetailV3CZEQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3CZE|error - Retrieved entity
updatePaymentInformationDetailV3CZE
function updatePaymentInformationDetailV3CZE(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3CZE payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3CZE
Parameters
- PaymentInformationDetailV3_externalCode int - the externalCode of entity PaymentInformationDetailV3 of the associated entity PaymentInformation
- PaymentInformationV3_effectiveStartDate string - The effectiveStartDate of entity PaymentInformationV3
- PaymentInformationV3_worker string - The worker of entity PaymentInformationV3
- externalCode int - The externalCode of entity PaymentInformationDetailV3CZE
- payload ModifiedPaymentInformationDetailV3CZE - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3CZE
function deletePaymentInformationDetailV3CZE(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3CZEHeaders headers) returns error?Delete entity from PaymentInformationDetailV3CZE
Parameters
- PaymentInformationDetailV3_externalCode int - the externalCode of entity PaymentInformationDetailV3 of of the associated entity PaymentInformation
- PaymentInformationV3_effectiveStartDate string - the effectiveStartDate of entity PaymentInformationV3
- PaymentInformationV3_worker string - the worker of entity PaymentInformationV3
- externalCode int - the externalCode of entity PaymentInformationDetailV3CZE
- headers DeletePaymentInformationDetailV3CZEHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationV3s
function listPaymentInformationV3s(map<string|string[]> headers, *ListPaymentInformationV3sQueries queries) returns Wrapper_10|errorGet entities from PaymentInformationV3
Parameters
- queries *ListPaymentInformationV3sQueries - Queries to be sent with the request
Return Type
- Wrapper_10|error - Retrieved entities
createPaymentInformationV3
function createPaymentInformationV3(PaymentInformationV3 payload, map<string|string[]> headers) returns CreatedPaymentInformationV3|errorAdd new entity to PaymentInformationV3
Parameters
- payload PaymentInformationV3 - New entity
Return Type
- CreatedPaymentInformationV3|error - Created entity
getPaymentInformationV3
function getPaymentInformationV3(string effectiveStartDate, string 'worker, map<string|string[]> headers, *GetPaymentInformationV3Queries queries) returns PaymentInformationV3|errorGet entity from PaymentInformationV3 by key
Parameters
- effectiveStartDate string - key: effectiveStartDate
- 'worker string - key: worker
- queries *GetPaymentInformationV3Queries - Queries to be sent with the request
Return Type
- PaymentInformationV3|error - Retrieved entity
updatePaymentInformationV3
function updatePaymentInformationV3(string effectiveStartDate, string 'worker, ModifiedPaymentInformationV3 payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationV3
Parameters
- effectiveStartDate string - key: effectiveStartDate
- 'worker string - key: worker
- payload ModifiedPaymentInformationV3 - New property values
Return Type
- error? - Success
deletePaymentInformationV3
function deletePaymentInformationV3(string effectiveStartDate, string 'worker, DeletePaymentInformationV3Headers headers) returns error?Delete entity from PaymentInformationV3
Parameters
- effectiveStartDate string - key: effectiveStartDate
- 'worker string - key: worker
- headers DeletePaymentInformationV3Headers (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3COLs
function listPaymentInformationDetailV3COLs(map<string|string[]> headers, *ListPaymentInformationDetailV3COLsQueries queries) returns Wrapper_11|errorGet entities from PaymentInformationDetailV3COL
Parameters
- queries *ListPaymentInformationDetailV3COLsQueries - Queries to be sent with the request
Return Type
- Wrapper_11|error - Retrieved entities
createPaymentInformationDetailV3COL
function createPaymentInformationDetailV3COL(PaymentInformationDetailV3COL payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3COL|errorAdd new entity to PaymentInformationDetailV3COL
Parameters
- payload PaymentInformationDetailV3COL - New entity
Return Type
- CreatedPaymentInformationDetailV3COL|error - Created entity
getPaymentInformationDetailV3COL
function getPaymentInformationDetailV3COL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3COLQueries queries) returns PaymentInformationDetailV3COL|errorGet entity from PaymentInformationDetailV3COL by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3COLQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3COL|error - Retrieved entity
updatePaymentInformationDetailV3COL
function updatePaymentInformationDetailV3COL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3COL payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3COL
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3COL - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3COL
function deletePaymentInformationDetailV3COL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3COLHeaders headers) returns error?Delete entity from PaymentInformationDetailV3COL
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3COLHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3VENs
function listPaymentInformationDetailV3VENs(map<string|string[]> headers, *ListPaymentInformationDetailV3VENsQueries queries) returns Wrapper_12|errorGet entities from PaymentInformationDetailV3VEN
Parameters
- queries *ListPaymentInformationDetailV3VENsQueries - Queries to be sent with the request
Return Type
- Wrapper_12|error - Retrieved entities
createPaymentInformationDetailV3VEN
function createPaymentInformationDetailV3VEN(PaymentInformationDetailV3VEN payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3VEN|errorAdd new entity to PaymentInformationDetailV3VEN
Parameters
- payload PaymentInformationDetailV3VEN - New entity
Return Type
- CreatedPaymentInformationDetailV3VEN|error - Created entity
getPaymentInformationDetailV3VEN
function getPaymentInformationDetailV3VEN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3VENQueries queries) returns PaymentInformationDetailV3VEN|errorGet entity from PaymentInformationDetailV3VEN by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3VENQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3VEN|error - Retrieved entity
updatePaymentInformationDetailV3VEN
function updatePaymentInformationDetailV3VEN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3VEN payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3VEN
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3VEN - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3VEN
function deletePaymentInformationDetailV3VEN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3VENHeaders headers) returns error?Delete entity from PaymentInformationDetailV3VEN
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3VENHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3NZLs
function listPaymentInformationDetailV3NZLs(map<string|string[]> headers, *ListPaymentInformationDetailV3NZLsQueries queries) returns Wrapper_13|errorGet entities from PaymentInformationDetailV3NZL
Parameters
- queries *ListPaymentInformationDetailV3NZLsQueries - Queries to be sent with the request
Return Type
- Wrapper_13|error - Retrieved entities
createPaymentInformationDetailV3NZL
function createPaymentInformationDetailV3NZL(PaymentInformationDetailV3NZL payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3NZL|errorAdd new entity to PaymentInformationDetailV3NZL
Parameters
- payload PaymentInformationDetailV3NZL - New entity
Return Type
- CreatedPaymentInformationDetailV3NZL|error - Created entity
getPaymentInformationDetailV3NZL
function getPaymentInformationDetailV3NZL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3NZLQueries queries) returns PaymentInformationDetailV3NZL|errorGet entity from PaymentInformationDetailV3NZL by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3NZLQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3NZL|error - Retrieved entity
updatePaymentInformationDetailV3NZL
function updatePaymentInformationDetailV3NZL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3NZL payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3NZL
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3NZL - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3NZL
function deletePaymentInformationDetailV3NZL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3NZLHeaders headers) returns error?Delete entity from PaymentInformationDetailV3NZL
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3NZLHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3USAs
function listPaymentInformationDetailV3USAs(map<string|string[]> headers, *ListPaymentInformationDetailV3USAsQueries queries) returns Wrapper_14|errorGet entities from PaymentInformationDetailV3USA
Parameters
- queries *ListPaymentInformationDetailV3USAsQueries - Queries to be sent with the request
Return Type
- Wrapper_14|error - Retrieved entities
createPaymentInformationDetailV3USA
function createPaymentInformationDetailV3USA(PaymentInformationDetailV3USA payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3USA|errorAdd new entity to PaymentInformationDetailV3USA
Parameters
- payload PaymentInformationDetailV3USA - New entity
Return Type
- CreatedPaymentInformationDetailV3USA|error - Created entity
getPaymentInformationDetailV3USA
function getPaymentInformationDetailV3USA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3USAQueries queries) returns PaymentInformationDetailV3USA|errorGet entity from PaymentInformationDetailV3USA by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3USAQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3USA|error - Retrieved entity
updatePaymentInformationDetailV3USA
function updatePaymentInformationDetailV3USA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3USA payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3USA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3USA - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3USA
function deletePaymentInformationDetailV3USA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3USAHeaders headers) returns error?Delete entity from PaymentInformationDetailV3USA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3USAHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3ECUs
function listPaymentInformationDetailV3ECUs(map<string|string[]> headers, *ListPaymentInformationDetailV3ECUsQueries queries) returns Wrapper_15|errorGet entities from PaymentInformationDetailV3ECU
Parameters
- queries *ListPaymentInformationDetailV3ECUsQueries - Queries to be sent with the request
Return Type
- Wrapper_15|error - Retrieved entities
createPaymentInformationDetailV3ECU
function createPaymentInformationDetailV3ECU(PaymentInformationDetailV3ECU payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3ECU|errorAdd new entity to PaymentInformationDetailV3ECU
Parameters
- payload PaymentInformationDetailV3ECU - New entity
Return Type
- CreatedPaymentInformationDetailV3ECU|error - Created entity
getPaymentInformationDetailV3ECU
function getPaymentInformationDetailV3ECU(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3ECUQueries queries) returns PaymentInformationDetailV3ECU|errorGet entity from PaymentInformationDetailV3ECU by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3ECUQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3ECU|error - Retrieved entity
updatePaymentInformationDetailV3ECU
function updatePaymentInformationDetailV3ECU(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3ECU payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3ECU
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3ECU - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3ECU
function deletePaymentInformationDetailV3ECU(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3ECUHeaders headers) returns error?Delete entity from PaymentInformationDetailV3ECU
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3ECUHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3GBRs
function listPaymentInformationDetailV3GBRs(map<string|string[]> headers, *ListPaymentInformationDetailV3GBRsQueries queries) returns Wrapper_16|errorGet entities from PaymentInformationDetailV3GBR
Parameters
- queries *ListPaymentInformationDetailV3GBRsQueries - Queries to be sent with the request
Return Type
- Wrapper_16|error - Retrieved entities
createPaymentInformationDetailV3GBR
function createPaymentInformationDetailV3GBR(PaymentInformationDetailV3GBR payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3GBR|errorAdd new entity to PaymentInformationDetailV3GBR
Parameters
- payload PaymentInformationDetailV3GBR - New entity
Return Type
- CreatedPaymentInformationDetailV3GBR|error - Created entity
getPaymentInformationDetailV3GBR
function getPaymentInformationDetailV3GBR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3GBRQueries queries) returns PaymentInformationDetailV3GBR|errorGet entity from PaymentInformationDetailV3GBR by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3GBRQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3GBR|error - Retrieved entity
updatePaymentInformationDetailV3GBR
function updatePaymentInformationDetailV3GBR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3GBR payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3GBR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3GBR - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3GBR
function deletePaymentInformationDetailV3GBR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3GBRHeaders headers) returns error?Delete entity from PaymentInformationDetailV3GBR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3GBRHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3FRAs
function listPaymentInformationDetailV3FRAs(map<string|string[]> headers, *ListPaymentInformationDetailV3FRAsQueries queries) returns Wrapper_17|errorGet entities from PaymentInformationDetailV3FRA
Parameters
- queries *ListPaymentInformationDetailV3FRAsQueries - Queries to be sent with the request
Return Type
- Wrapper_17|error - Retrieved entities
createPaymentInformationDetailV3FRA
function createPaymentInformationDetailV3FRA(PaymentInformationDetailV3FRA payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3FRA|errorAdd new entity to PaymentInformationDetailV3FRA
Parameters
- payload PaymentInformationDetailV3FRA - New entity
Return Type
- CreatedPaymentInformationDetailV3FRA|error - Created entity
getPaymentInformationDetailV3FRA
function getPaymentInformationDetailV3FRA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3FRAQueries queries) returns PaymentInformationDetailV3FRA|errorGet entity from PaymentInformationDetailV3FRA by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3FRAQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3FRA|error - Retrieved entity
updatePaymentInformationDetailV3FRA
function updatePaymentInformationDetailV3FRA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3FRA payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3FRA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3FRA - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3FRA
function deletePaymentInformationDetailV3FRA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3FRAHeaders headers) returns error?Delete entity from PaymentInformationDetailV3FRA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3FRAHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentMethodAssignmentV3s
function listPaymentMethodAssignmentV3s(map<string|string[]> headers, *ListPaymentMethodAssignmentV3sQueries queries) returns Wrapper_18|errorGet entities from PaymentMethodAssignmentV3
Parameters
- queries *ListPaymentMethodAssignmentV3sQueries - Queries to be sent with the request
Return Type
- Wrapper_18|error - Retrieved entities
createPaymentMethodAssignmentV3
function createPaymentMethodAssignmentV3(PaymentMethodAssignmentV3 payload, map<string|string[]> headers) returns CreatedPaymentMethodAssignmentV3|errorAdd new entity to PaymentMethodAssignmentV3
Parameters
- payload PaymentMethodAssignmentV3 - New entity
Return Type
- CreatedPaymentMethodAssignmentV3|error - Created entity
getPaymentMethodAssignmentV3
function getPaymentMethodAssignmentV3(string PaymentMethodV3_externalCode, int externalCode, map<string|string[]> headers, *GetPaymentMethodAssignmentV3Queries queries) returns PaymentMethodAssignmentV3|errorGet entity from PaymentMethodAssignmentV3 by key
Parameters
- PaymentMethodV3_externalCode string - key: PaymentMethodV3_externalCode
- externalCode int - key: externalCode
- queries *GetPaymentMethodAssignmentV3Queries - Queries to be sent with the request
Return Type
- PaymentMethodAssignmentV3|error - Retrieved entity
updatePaymentMethodAssignmentV3
function updatePaymentMethodAssignmentV3(string PaymentMethodV3_externalCode, int externalCode, ModifiedPaymentMethodAssignmentV3 payload, map<string|string[]> headers) returns error?Update entity in PaymentMethodAssignmentV3
Parameters
- PaymentMethodV3_externalCode string - key: PaymentMethodV3_externalCode
- externalCode int - key: externalCode
- payload ModifiedPaymentMethodAssignmentV3 - New property values
Return Type
- error? - Success
deletePaymentMethodAssignmentV3
function deletePaymentMethodAssignmentV3(string PaymentMethodV3_externalCode, int externalCode, DeletePaymentMethodAssignmentV3Headers headers) returns error?Delete entity from PaymentMethodAssignmentV3
Parameters
- PaymentMethodV3_externalCode string - key: PaymentMethodV3_externalCode
- externalCode int - key: externalCode
- headers DeletePaymentMethodAssignmentV3Headers (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3JPNs
function listPaymentInformationDetailV3JPNs(map<string|string[]> headers, *ListPaymentInformationDetailV3JPNsQueries queries) returns Wrapper_19|errorGet entities from PaymentInformationDetailV3JPN
Parameters
- queries *ListPaymentInformationDetailV3JPNsQueries - Queries to be sent with the request
Return Type
- Wrapper_19|error - Retrieved entities
createPaymentInformationDetailV3JPN
function createPaymentInformationDetailV3JPN(PaymentInformationDetailV3JPN payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3JPN|errorAdd new entity to PaymentInformationDetailV3JPN
Parameters
- payload PaymentInformationDetailV3JPN - New entity
Return Type
- CreatedPaymentInformationDetailV3JPN|error - Created entity
getPaymentInformationDetailV3JPN
function getPaymentInformationDetailV3JPN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3JPNQueries queries) returns PaymentInformationDetailV3JPN|errorGet entity from PaymentInformationDetailV3JPN by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3JPNQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3JPN|error - Retrieved entity
updatePaymentInformationDetailV3JPN
function updatePaymentInformationDetailV3JPN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3JPN payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3JPN
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3JPN - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3JPN
function deletePaymentInformationDetailV3JPN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3JPNHeaders headers) returns error?Delete entity from PaymentInformationDetailV3JPN
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3JPNHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3ZAFs
function listPaymentInformationDetailV3ZAFs(map<string|string[]> headers, *ListPaymentInformationDetailV3ZAFsQueries queries) returns Wrapper_20|errorGet entities from PaymentInformationDetailV3ZAF
Parameters
- queries *ListPaymentInformationDetailV3ZAFsQueries - Queries to be sent with the request
Return Type
- Wrapper_20|error - Retrieved entities
createPaymentInformationDetailV3ZAF
function createPaymentInformationDetailV3ZAF(PaymentInformationDetailV3ZAF payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3ZAF|errorAdd new entity to PaymentInformationDetailV3ZAF
Parameters
- payload PaymentInformationDetailV3ZAF - New entity
Return Type
- CreatedPaymentInformationDetailV3ZAF|error - Created entity
getPaymentInformationDetailV3ZAF
function getPaymentInformationDetailV3ZAF(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3ZAFQueries queries) returns PaymentInformationDetailV3ZAF|errorGet entity from PaymentInformationDetailV3ZAF by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3ZAFQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3ZAF|error - Retrieved entity
updatePaymentInformationDetailV3ZAF
function updatePaymentInformationDetailV3ZAF(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3ZAF payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3ZAF
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3ZAF - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3ZAF
function deletePaymentInformationDetailV3ZAF(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3ZAFHeaders headers) returns error?Delete entity from PaymentInformationDetailV3ZAF
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3ZAFHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3ITAs
function listPaymentInformationDetailV3ITAs(map<string|string[]> headers, *ListPaymentInformationDetailV3ITAsQueries queries) returns Wrapper_21|errorGet entities from PaymentInformationDetailV3ITA
Parameters
- queries *ListPaymentInformationDetailV3ITAsQueries - Queries to be sent with the request
Return Type
- Wrapper_21|error - Retrieved entities
createPaymentInformationDetailV3ITA
function createPaymentInformationDetailV3ITA(PaymentInformationDetailV3ITA payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3ITA|errorAdd new entity to PaymentInformationDetailV3ITA
Parameters
- payload PaymentInformationDetailV3ITA - New entity
Return Type
- CreatedPaymentInformationDetailV3ITA|error - Created entity
getPaymentInformationDetailV3ITA
function getPaymentInformationDetailV3ITA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3ITAQueries queries) returns PaymentInformationDetailV3ITA|errorGet entity from PaymentInformationDetailV3ITA by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3ITAQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3ITA|error - Retrieved entity
updatePaymentInformationDetailV3ITA
function updatePaymentInformationDetailV3ITA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3ITA payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3ITA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3ITA - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3ITA
function deletePaymentInformationDetailV3ITA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3ITAHeaders headers) returns error?Delete entity from PaymentInformationDetailV3ITA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3ITAHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3MEXs
function listPaymentInformationDetailV3MEXs(map<string|string[]> headers, *ListPaymentInformationDetailV3MEXsQueries queries) returns Wrapper_22|errorGet entities from PaymentInformationDetailV3MEX
Parameters
- queries *ListPaymentInformationDetailV3MEXsQueries - Queries to be sent with the request
Return Type
- Wrapper_22|error - Retrieved entities
createPaymentInformationDetailV3MEX
function createPaymentInformationDetailV3MEX(PaymentInformationDetailV3MEX payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3MEX|errorAdd new entity to PaymentInformationDetailV3MEX
Parameters
- payload PaymentInformationDetailV3MEX - New entity
Return Type
- CreatedPaymentInformationDetailV3MEX|error - Created entity
getPaymentInformationDetailV3MEX
function getPaymentInformationDetailV3MEX(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3MEXQueries queries) returns PaymentInformationDetailV3MEX|errorGet entity from PaymentInformationDetailV3MEX by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3MEXQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3MEX|error - Retrieved entity
updatePaymentInformationDetailV3MEX
function updatePaymentInformationDetailV3MEX(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3MEX payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3MEX
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3MEX - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3MEX
function deletePaymentInformationDetailV3MEX(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3MEXHeaders headers) returns error?Delete entity from PaymentInformationDetailV3MEX
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3MEXHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3ESPs
function listPaymentInformationDetailV3ESPs(map<string|string[]> headers, *ListPaymentInformationDetailV3ESPsQueries queries) returns Wrapper_23|errorGet entities from PaymentInformationDetailV3ESP
Parameters
- queries *ListPaymentInformationDetailV3ESPsQueries - Queries to be sent with the request
Return Type
- Wrapper_23|error - Retrieved entities
createPaymentInformationDetailV3ESP
function createPaymentInformationDetailV3ESP(PaymentInformationDetailV3ESP payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3ESP|errorAdd new entity to PaymentInformationDetailV3ESP
Parameters
- payload PaymentInformationDetailV3ESP - New entity
Return Type
- CreatedPaymentInformationDetailV3ESP|error - Created entity
getPaymentInformationDetailV3ESP
function getPaymentInformationDetailV3ESP(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3ESPQueries queries) returns PaymentInformationDetailV3ESP|errorGet entity from PaymentInformationDetailV3ESP by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3ESPQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3ESP|error - Retrieved entity
updatePaymentInformationDetailV3ESP
function updatePaymentInformationDetailV3ESP(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3ESP payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3ESP
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3ESP - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3ESP
function deletePaymentInformationDetailV3ESP(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3ESPHeaders headers) returns error?Delete entity from PaymentInformationDetailV3ESP
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3ESPHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3BRAs
function listPaymentInformationDetailV3BRAs(map<string|string[]> headers, *ListPaymentInformationDetailV3BRAsQueries queries) returns Wrapper_24|errorGet entities from PaymentInformationDetailV3BRA
Parameters
- queries *ListPaymentInformationDetailV3BRAsQueries - Queries to be sent with the request
Return Type
- Wrapper_24|error - Retrieved entities
createPaymentInformationDetailV3BRA
function createPaymentInformationDetailV3BRA(PaymentInformationDetailV3BRA payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3BRA|errorAdd new entity to PaymentInformationDetailV3BRA
Parameters
- payload PaymentInformationDetailV3BRA - New entity
Return Type
- CreatedPaymentInformationDetailV3BRA|error - Created entity
getPaymentInformationDetailV3BRA
function getPaymentInformationDetailV3BRA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3BRAQueries queries) returns PaymentInformationDetailV3BRA|errorGet entity from PaymentInformationDetailV3BRA by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3BRAQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3BRA|error - Retrieved entity
updatePaymentInformationDetailV3BRA
function updatePaymentInformationDetailV3BRA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3BRA payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3BRA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3BRA - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3BRA
function deletePaymentInformationDetailV3BRA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3BRAHeaders headers) returns error?Delete entity from PaymentInformationDetailV3BRA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3BRAHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3CHLs
function listPaymentInformationDetailV3CHLs(map<string|string[]> headers, *ListPaymentInformationDetailV3CHLsQueries queries) returns Wrapper_25|errorGet entities from PaymentInformationDetailV3CHL
Parameters
- queries *ListPaymentInformationDetailV3CHLsQueries - Queries to be sent with the request
Return Type
- Wrapper_25|error - Retrieved entities
createPaymentInformationDetailV3CHL
function createPaymentInformationDetailV3CHL(PaymentInformationDetailV3CHL payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3CHL|errorAdd new entity to PaymentInformationDetailV3CHL
Parameters
- payload PaymentInformationDetailV3CHL - New entity
Return Type
- CreatedPaymentInformationDetailV3CHL|error - Created entity
getPaymentInformationDetailV3CHL
function getPaymentInformationDetailV3CHL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3CHLQueries queries) returns PaymentInformationDetailV3CHL|errorGet entity from PaymentInformationDetailV3CHL by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3CHLQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3CHL|error - Retrieved entity
updatePaymentInformationDetailV3CHL
function updatePaymentInformationDetailV3CHL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3CHL payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3CHL
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3CHL - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3CHL
function deletePaymentInformationDetailV3CHL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3CHLHeaders headers) returns error?Delete entity from PaymentInformationDetailV3CHL
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3CHLHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3BLRs
function listPaymentInformationDetailV3BLRs(map<string|string[]> headers, *ListPaymentInformationDetailV3BLRsQueries queries) returns Wrapper_26|errorGet entities from PaymentInformationDetailV3BLR
Parameters
- queries *ListPaymentInformationDetailV3BLRsQueries - Queries to be sent with the request
Return Type
- Wrapper_26|error - Retrieved entities
createPaymentInformationDetailV3BLR
function createPaymentInformationDetailV3BLR(PaymentInformationDetailV3BLR payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3BLR|errorAdd new entity to PaymentInformationDetailV3BLR
Parameters
- payload PaymentInformationDetailV3BLR - New entity
Return Type
- CreatedPaymentInformationDetailV3BLR|error - Created entity
getPaymentInformationDetailV3BLR
function getPaymentInformationDetailV3BLR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3BLRQueries queries) returns PaymentInformationDetailV3BLR|errorGet entity from PaymentInformationDetailV3BLR by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3BLRQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3BLR|error - Retrieved entity
updatePaymentInformationDetailV3BLR
function updatePaymentInformationDetailV3BLR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3BLR payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3BLR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3BLR - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3BLR
function deletePaymentInformationDetailV3BLR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3BLRHeaders headers) returns error?Delete entity from PaymentInformationDetailV3BLR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3BLRHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3IRQs
function listPaymentInformationDetailV3IRQs(map<string|string[]> headers, *ListPaymentInformationDetailV3IRQsQueries queries) returns Wrapper_27|errorGet entities from PaymentInformationDetailV3IRQ
Parameters
- queries *ListPaymentInformationDetailV3IRQsQueries - Queries to be sent with the request
Return Type
- Wrapper_27|error - Retrieved entities
createPaymentInformationDetailV3IRQ
function createPaymentInformationDetailV3IRQ(PaymentInformationDetailV3IRQ payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3IRQ|errorAdd new entity to PaymentInformationDetailV3IRQ
Parameters
- payload PaymentInformationDetailV3IRQ - New entity
Return Type
- CreatedPaymentInformationDetailV3IRQ|error - Created entity
getPaymentInformationDetailV3IRQ
function getPaymentInformationDetailV3IRQ(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3IRQQueries queries) returns PaymentInformationDetailV3IRQ|errorGet entity from PaymentInformationDetailV3IRQ by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3IRQQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3IRQ|error - Retrieved entity
updatePaymentInformationDetailV3IRQ
function updatePaymentInformationDetailV3IRQ(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3IRQ payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3IRQ
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3IRQ - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3IRQ
function deletePaymentInformationDetailV3IRQ(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3IRQHeaders headers) returns error?Delete entity from PaymentInformationDetailV3IRQ
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3IRQHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3MMRs
function listPaymentInformationDetailV3MMRs(map<string|string[]> headers, *ListPaymentInformationDetailV3MMRsQueries queries) returns Wrapper_28|errorGet entities from PaymentInformationDetailV3MMR
Parameters
- queries *ListPaymentInformationDetailV3MMRsQueries - Queries to be sent with the request
Return Type
- Wrapper_28|error - Retrieved entities
createPaymentInformationDetailV3MMR
function createPaymentInformationDetailV3MMR(PaymentInformationDetailV3MMR payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3MMR|errorAdd new entity to PaymentInformationDetailV3MMR
Parameters
- payload PaymentInformationDetailV3MMR - New entity
Return Type
- CreatedPaymentInformationDetailV3MMR|error - Created entity
getPaymentInformationDetailV3MMR
function getPaymentInformationDetailV3MMR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3MMRQueries queries) returns PaymentInformationDetailV3MMR|errorGet entity from PaymentInformationDetailV3MMR by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3MMRQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3MMR|error - Retrieved entity
updatePaymentInformationDetailV3MMR
function updatePaymentInformationDetailV3MMR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3MMR payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3MMR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3MMR - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3MMR
function deletePaymentInformationDetailV3MMR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3MMRHeaders headers) returns error?Delete entity from PaymentInformationDetailV3MMR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3MMRHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3MWIs
function listPaymentInformationDetailV3MWIs(map<string|string[]> headers, *ListPaymentInformationDetailV3MWIsQueries queries) returns Wrapper_29|errorGet entities from PaymentInformationDetailV3MWI
Parameters
- queries *ListPaymentInformationDetailV3MWIsQueries - Queries to be sent with the request
Return Type
- Wrapper_29|error - Retrieved entities
createPaymentInformationDetailV3MWI
function createPaymentInformationDetailV3MWI(PaymentInformationDetailV3MWI payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3MWI|errorAdd new entity to PaymentInformationDetailV3MWI
Parameters
- payload PaymentInformationDetailV3MWI - New entity
Return Type
- CreatedPaymentInformationDetailV3MWI|error - Created entity
getPaymentInformationDetailV3MWI
function getPaymentInformationDetailV3MWI(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3MWIQueries queries) returns PaymentInformationDetailV3MWI|errorGet entity from PaymentInformationDetailV3MWI by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3MWIQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3MWI|error - Retrieved entity
updatePaymentInformationDetailV3MWI
function updatePaymentInformationDetailV3MWI(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3MWI payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3MWI
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3MWI - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3MWI
function deletePaymentInformationDetailV3MWI(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3MWIHeaders headers) returns error?Delete entity from PaymentInformationDetailV3MWI
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3MWIHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3NAMs
function listPaymentInformationDetailV3NAMs(map<string|string[]> headers, *ListPaymentInformationDetailV3NAMsQueries queries) returns Wrapper_30|errorGet entities from PaymentInformationDetailV3NAM
Parameters
- queries *ListPaymentInformationDetailV3NAMsQueries - Queries to be sent with the request
Return Type
- Wrapper_30|error - Retrieved entities
createPaymentInformationDetailV3NAM
function createPaymentInformationDetailV3NAM(PaymentInformationDetailV3NAM payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3NAM|errorAdd new entity to PaymentInformationDetailV3NAM
Parameters
- payload PaymentInformationDetailV3NAM - New entity
Return Type
- CreatedPaymentInformationDetailV3NAM|error - Created entity
getPaymentInformationDetailV3NAM
function getPaymentInformationDetailV3NAM(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3NAMQueries queries) returns PaymentInformationDetailV3NAM|errorGet entity from PaymentInformationDetailV3NAM by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3NAMQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3NAM|error - Retrieved entity
updatePaymentInformationDetailV3NAM
function updatePaymentInformationDetailV3NAM(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3NAM payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3NAM
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3NAM - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3NAM
function deletePaymentInformationDetailV3NAM(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3NAMHeaders headers) returns error?Delete entity from PaymentInformationDetailV3NAM
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3NAMHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3PERs
function listPaymentInformationDetailV3PERs(map<string|string[]> headers, *ListPaymentInformationDetailV3PERsQueries queries) returns Wrapper_31|errorGet entities from PaymentInformationDetailV3PER
Parameters
- queries *ListPaymentInformationDetailV3PERsQueries - Queries to be sent with the request
Return Type
- Wrapper_31|error - Retrieved entities
createPaymentInformationDetailV3PER
function createPaymentInformationDetailV3PER(PaymentInformationDetailV3PER payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3PER|errorAdd new entity to PaymentInformationDetailV3PER
Parameters
- payload PaymentInformationDetailV3PER - New entity
Return Type
- CreatedPaymentInformationDetailV3PER|error - Created entity
getPaymentInformationDetailV3PER
function getPaymentInformationDetailV3PER(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3PERQueries queries) returns PaymentInformationDetailV3PER|errorGet entity from PaymentInformationDetailV3PER by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3PERQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3PER|error - Retrieved entity
updatePaymentInformationDetailV3PER
function updatePaymentInformationDetailV3PER(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3PER payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3PER
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3PER - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3PER
function deletePaymentInformationDetailV3PER(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3PERHeaders headers) returns error?Delete entity from PaymentInformationDetailV3PER
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3PERHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3ZWEs
function listPaymentInformationDetailV3ZWEs(map<string|string[]> headers, *ListPaymentInformationDetailV3ZWEsQueries queries) returns Wrapper_32|errorGet entities from PaymentInformationDetailV3ZWE
Parameters
- queries *ListPaymentInformationDetailV3ZWEsQueries - Queries to be sent with the request
Return Type
- Wrapper_32|error - Retrieved entities
createPaymentInformationDetailV3ZWE
function createPaymentInformationDetailV3ZWE(PaymentInformationDetailV3ZWE payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3ZWE|errorAdd new entity to PaymentInformationDetailV3ZWE
Parameters
- payload PaymentInformationDetailV3ZWE - New entity
Return Type
- CreatedPaymentInformationDetailV3ZWE|error - Created entity
getPaymentInformationDetailV3ZWE
function getPaymentInformationDetailV3ZWE(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3ZWEQueries queries) returns PaymentInformationDetailV3ZWE|errorGet entity from PaymentInformationDetailV3ZWE by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3ZWEQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3ZWE|error - Retrieved entity
updatePaymentInformationDetailV3ZWE
function updatePaymentInformationDetailV3ZWE(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3ZWE payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3ZWE
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3ZWE - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3ZWE
function deletePaymentInformationDetailV3ZWE(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3ZWEHeaders headers) returns error?Delete entity from PaymentInformationDetailV3ZWE
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3ZWEHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3SVNs
function listPaymentInformationDetailV3SVNs(map<string|string[]> headers, *ListPaymentInformationDetailV3SVNsQueries queries) returns Wrapper_33|errorGet entities from PaymentInformationDetailV3SVN
Parameters
- queries *ListPaymentInformationDetailV3SVNsQueries - Queries to be sent with the request
Return Type
- Wrapper_33|error - Retrieved entities
createPaymentInformationDetailV3SVN
function createPaymentInformationDetailV3SVN(PaymentInformationDetailV3SVN payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3SVN|errorAdd new entity to PaymentInformationDetailV3SVN
Parameters
- payload PaymentInformationDetailV3SVN - New entity
Return Type
- CreatedPaymentInformationDetailV3SVN|error - Created entity
getPaymentInformationDetailV3SVN
function getPaymentInformationDetailV3SVN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3SVNQueries queries) returns PaymentInformationDetailV3SVN|errorGet entity from PaymentInformationDetailV3SVN by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3SVNQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3SVN|error - Retrieved entity
updatePaymentInformationDetailV3SVN
function updatePaymentInformationDetailV3SVN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3SVN payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3SVN
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3SVN - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3SVN
function deletePaymentInformationDetailV3SVN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3SVNHeaders headers) returns error?Delete entity from PaymentInformationDetailV3SVN
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3SVNHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3MKDs
function listPaymentInformationDetailV3MKDs(map<string|string[]> headers, *ListPaymentInformationDetailV3MKDsQueries queries) returns Wrapper_34|errorGet entities from PaymentInformationDetailV3MKD
Parameters
- queries *ListPaymentInformationDetailV3MKDsQueries - Queries to be sent with the request
Return Type
- Wrapper_34|error - Retrieved entities
createPaymentInformationDetailV3MKD
function createPaymentInformationDetailV3MKD(PaymentInformationDetailV3MKD payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3MKD|errorAdd new entity to PaymentInformationDetailV3MKD
Parameters
- payload PaymentInformationDetailV3MKD - New entity
Return Type
- CreatedPaymentInformationDetailV3MKD|error - Created entity
getPaymentInformationDetailV3MKD
function getPaymentInformationDetailV3MKD(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3MKDQueries queries) returns PaymentInformationDetailV3MKD|errorGet entity from PaymentInformationDetailV3MKD by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3MKDQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3MKD|error - Retrieved entity
updatePaymentInformationDetailV3MKD
function updatePaymentInformationDetailV3MKD(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3MKD payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3MKD
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3MKD - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3MKD
function deletePaymentInformationDetailV3MKD(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3MKDHeaders headers) returns error?Delete entity from PaymentInformationDetailV3MKD
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3MKDHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3MOZs
function listPaymentInformationDetailV3MOZs(map<string|string[]> headers, *ListPaymentInformationDetailV3MOZsQueries queries) returns Wrapper_35|errorGet entities from PaymentInformationDetailV3MOZ
Parameters
- queries *ListPaymentInformationDetailV3MOZsQueries - Queries to be sent with the request
Return Type
- Wrapper_35|error - Retrieved entities
createPaymentInformationDetailV3MOZ
function createPaymentInformationDetailV3MOZ(PaymentInformationDetailV3MOZ payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3MOZ|errorAdd new entity to PaymentInformationDetailV3MOZ
Parameters
- payload PaymentInformationDetailV3MOZ - New entity
Return Type
- CreatedPaymentInformationDetailV3MOZ|error - Created entity
getPaymentInformationDetailV3MOZ
function getPaymentInformationDetailV3MOZ(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3MOZQueries queries) returns PaymentInformationDetailV3MOZ|errorGet entity from PaymentInformationDetailV3MOZ by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3MOZQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3MOZ|error - Retrieved entity
updatePaymentInformationDetailV3MOZ
function updatePaymentInformationDetailV3MOZ(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3MOZ payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3MOZ
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3MOZ - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3MOZ
function deletePaymentInformationDetailV3MOZ(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3MOZHeaders headers) returns error?Delete entity from PaymentInformationDetailV3MOZ
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3MOZHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3GHAs
function listPaymentInformationDetailV3GHAs(map<string|string[]> headers, *ListPaymentInformationDetailV3GHAsQueries queries) returns Wrapper_36|errorGet entities from PaymentInformationDetailV3GHA
Parameters
- queries *ListPaymentInformationDetailV3GHAsQueries - Queries to be sent with the request
Return Type
- Wrapper_36|error - Retrieved entities
createPaymentInformationDetailV3GHA
function createPaymentInformationDetailV3GHA(PaymentInformationDetailV3GHA payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3GHA|errorAdd new entity to PaymentInformationDetailV3GHA
Parameters
- payload PaymentInformationDetailV3GHA - New entity
Return Type
- CreatedPaymentInformationDetailV3GHA|error - Created entity
getPaymentInformationDetailV3GHA
function getPaymentInformationDetailV3GHA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3GHAQueries queries) returns PaymentInformationDetailV3GHA|errorGet entity from PaymentInformationDetailV3GHA by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3GHAQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3GHA|error - Retrieved entity
updatePaymentInformationDetailV3GHA
function updatePaymentInformationDetailV3GHA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3GHA payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3GHA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3GHA - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3GHA
function deletePaymentInformationDetailV3GHA(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3GHAHeaders headers) returns error?Delete entity from PaymentInformationDetailV3GHA
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3GHAHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3SVKs
function listPaymentInformationDetailV3SVKs(map<string|string[]> headers, *ListPaymentInformationDetailV3SVKsQueries queries) returns Wrapper_37|errorGet entities from PaymentInformationDetailV3SVK
Parameters
- queries *ListPaymentInformationDetailV3SVKsQueries - Queries to be sent with the request
Return Type
- Wrapper_37|error - Retrieved entities
createPaymentInformationDetailV3SVK
function createPaymentInformationDetailV3SVK(PaymentInformationDetailV3SVK payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3SVK|errorAdd new entity to PaymentInformationDetailV3SVK
Parameters
- payload PaymentInformationDetailV3SVK - New entity
Return Type
- CreatedPaymentInformationDetailV3SVK|error - Created entity
getPaymentInformationDetailV3SVK
function getPaymentInformationDetailV3SVK(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3SVKQueries queries) returns PaymentInformationDetailV3SVK|errorGet entity from PaymentInformationDetailV3SVK by key
Parameters
- PaymentInformationDetailV3_externalCode int - the externalCode of entity PaymentInformationDetailV3 of the associated entity PaymentInformation
- PaymentInformationV3_effectiveStartDate string - the effectiveStartDate of entity PaymentInformationV3
- PaymentInformationV3_worker string - the worker of entity PaymentInformationV3
- externalCode int - the externalCode of entity PaymentInformationDetailV3SVK
- queries *GetPaymentInformationDetailV3SVKQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3SVK|error - Retrieved entity
updatePaymentInformationDetailV3SVK
function updatePaymentInformationDetailV3SVK(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3SVK payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3SVK
Parameters
- PaymentInformationDetailV3_externalCode int - the externalCode of entity PaymentInformationDetailV3 of the associated entity PaymentInformation
- PaymentInformationV3_effectiveStartDate string - the effectiveStartDate of entity PaymentInformationV3
- PaymentInformationV3_worker string - the worker of entity PaymentInformationV3
- externalCode int - the externalCode of entity PaymentInformationDetailV3SVK
- payload ModifiedPaymentInformationDetailV3SVK - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3SVK
function deletePaymentInformationDetailV3SVK(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3SVKHeaders headers) returns error?Delete entity from PaymentInformationDetailV3SVK
Parameters
- PaymentInformationDetailV3_externalCode int - the externalCode of entity PaymentInformationDetailV3 of the associated entity PaymentInformation
- PaymentInformationV3_effectiveStartDate string - the effectiveStartDate of entity PaymentInformationV3
- PaymentInformationV3_worker string - the worker of entity PaymentInformationV3
- externalCode int - the externalCode of entity PaymentInformationDetailV3SVK
- headers DeletePaymentInformationDetailV3SVKHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3TUNs
function listPaymentInformationDetailV3TUNs(map<string|string[]> headers, *ListPaymentInformationDetailV3TUNsQueries queries) returns Wrapper_38|errorGet entities from PaymentInformationDetailV3TUN
Parameters
- queries *ListPaymentInformationDetailV3TUNsQueries - Queries to be sent with the request
Return Type
- Wrapper_38|error - Retrieved entities
createPaymentInformationDetailV3TUN
function createPaymentInformationDetailV3TUN(PaymentInformationDetailV3TUN payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3TUN|errorAdd new entity to PaymentInformationDetailV3TUN
Parameters
- payload PaymentInformationDetailV3TUN - New entity
Return Type
- CreatedPaymentInformationDetailV3TUN|error - Created entity
getPaymentInformationDetailV3TUN
function getPaymentInformationDetailV3TUN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3TUNQueries queries) returns PaymentInformationDetailV3TUN|errorGet entity from PaymentInformationDetailV3TUN by key
Parameters
- PaymentInformationDetailV3_externalCode int - the externalCode of entity PaymentInformationDetailV3 of the associated entity PaymentInformation
- PaymentInformationV3_effectiveStartDate string - the effectiveStartDate of entity PaymentInformationV3
- PaymentInformationV3_worker string - the worker of entity PaymentInformationV3
- externalCode int - the externalCode of PaymentInformationDetailV3TUN
- queries *GetPaymentInformationDetailV3TUNQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3TUN|error - Retrieved entity
updatePaymentInformationDetailV3TUN
function updatePaymentInformationDetailV3TUN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3TUN payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3TUN
Parameters
- PaymentInformationDetailV3_externalCode int - the externalCode of entity PaymentInformationDetailV3 of the associated entity PaymentInformation
- PaymentInformationV3_effectiveStartDate string - the effectiveStartDate of entity PaymentInformationV3
- PaymentInformationV3_worker string - the worker of entity PaymentInformationV3
- externalCode int - the externalCode of entity PaymentInformationDetailV3TUN
- payload ModifiedPaymentInformationDetailV3TUN - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3TUN
function deletePaymentInformationDetailV3TUN(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3TUNHeaders headers) returns error?Delete entity from PaymentInformationDetailV3TUN
Parameters
- PaymentInformationDetailV3_externalCode int - the externalCode of entity PaymentInformationDetailV3 of the associated entity PaymentInformation
- PaymentInformationV3_effectiveStartDate string - the effectiveStartDate of PaymentInformationV3
- PaymentInformationV3_worker string - the worker of PaymentInformationV3
- externalCode int - the externalCode of PaymentInformationDetailV3TUN
- headers DeletePaymentInformationDetailV3TUNHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3SURs
function listPaymentInformationDetailV3SURs(map<string|string[]> headers, *ListPaymentInformationDetailV3SURsQueries queries) returns Wrapper_39|errorGet entities from PaymentInformationDetailV3SUR
Parameters
- queries *ListPaymentInformationDetailV3SURsQueries - Queries to be sent with the request
Return Type
- Wrapper_39|error - Retrieved entities
createPaymentInformationDetailV3SUR
function createPaymentInformationDetailV3SUR(PaymentInformationDetailV3SUR payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3SUR|errorAdd new entity to PaymentInformationDetailV3SUR
Parameters
- payload PaymentInformationDetailV3SUR - New entity
Return Type
- CreatedPaymentInformationDetailV3SUR|error - Created entity
getPaymentInformationDetailV3SUR
function getPaymentInformationDetailV3SUR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3SURQueries queries) returns PaymentInformationDetailV3SUR|errorGet entity from PaymentInformationDetailV3SUR by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3SURQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3SUR|error - Retrieved entity
updatePaymentInformationDetailV3SUR
function updatePaymentInformationDetailV3SUR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3SUR payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3SUR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3SUR - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3SUR
function deletePaymentInformationDetailV3SUR(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3SURHeaders headers) returns error?Delete entity from PaymentInformationDetailV3SUR
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3SURHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3PRYs
function listPaymentInformationDetailV3PRYs(map<string|string[]> headers, *ListPaymentInformationDetailV3PRYsQueries queries) returns Wrapper_40|errorGet entities from PaymentInformationDetailV3PRY
Parameters
- queries *ListPaymentInformationDetailV3PRYsQueries - Queries to be sent with the request
Return Type
- Wrapper_40|error - Retrieved entities
createPaymentInformationDetailV3PRY
function createPaymentInformationDetailV3PRY(PaymentInformationDetailV3PRY payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3PRY|errorAdd new entity to PaymentInformationDetailV3PRY
Parameters
- payload PaymentInformationDetailV3PRY - New entity
Return Type
- CreatedPaymentInformationDetailV3PRY|error - Created entity
getPaymentInformationDetailV3PRY
function getPaymentInformationDetailV3PRY(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3PRYQueries queries) returns PaymentInformationDetailV3PRY|errorGet entity from PaymentInformationDetailV3PRY by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3PRYQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3PRY|error - Retrieved entity
updatePaymentInformationDetailV3PRY
function updatePaymentInformationDetailV3PRY(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3PRY payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3PRY
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3PRY - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3PRY
function deletePaymentInformationDetailV3PRY(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3PRYHeaders headers) returns error?Delete entity from PaymentInformationDetailV3PRY
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3PRYHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listPaymentInformationDetailV3BOLs
function listPaymentInformationDetailV3BOLs(map<string|string[]> headers, *ListPaymentInformationDetailV3BOLsQueries queries) returns Wrapper_41|errorGet entities from PaymentInformationDetailV3BOL
Parameters
- queries *ListPaymentInformationDetailV3BOLsQueries - Queries to be sent with the request
Return Type
- Wrapper_41|error - Retrieved entities
createPaymentInformationDetailV3BOL
function createPaymentInformationDetailV3BOL(PaymentInformationDetailV3BOL payload, map<string|string[]> headers) returns CreatedPaymentInformationDetailV3BOL|errorAdd new entity to PaymentInformationDetailV3BOL
Parameters
- payload PaymentInformationDetailV3BOL - New entity
Return Type
- CreatedPaymentInformationDetailV3BOL|error - Created entity
getPaymentInformationDetailV3BOL
function getPaymentInformationDetailV3BOL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, map<string|string[]> headers, *GetPaymentInformationDetailV3BOLQueries queries) returns PaymentInformationDetailV3BOL|errorGet entity from PaymentInformationDetailV3BOL by key
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- queries *GetPaymentInformationDetailV3BOLQueries - Queries to be sent with the request
Return Type
- PaymentInformationDetailV3BOL|error - Retrieved entity
updatePaymentInformationDetailV3BOL
function updatePaymentInformationDetailV3BOL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, ModifiedPaymentInformationDetailV3BOL payload, map<string|string[]> headers) returns error?Update entity in PaymentInformationDetailV3BOL
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- payload ModifiedPaymentInformationDetailV3BOL - New property values
Return Type
- error? - Success
deletePaymentInformationDetailV3BOL
function deletePaymentInformationDetailV3BOL(int PaymentInformationDetailV3_externalCode, string PaymentInformationV3_effectiveStartDate, string PaymentInformationV3_worker, int externalCode, DeletePaymentInformationDetailV3BOLHeaders headers) returns error?Delete entity from PaymentInformationDetailV3BOL
Parameters
- PaymentInformationDetailV3_externalCode int - key: PaymentInformationDetailV3_externalCode
- PaymentInformationV3_effectiveStartDate string - key: PaymentInformationV3_effectiveStartDate
- PaymentInformationV3_worker string - key: PaymentInformationV3_worker
- externalCode int - key: externalCode
- headers DeletePaymentInformationDetailV3BOLHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
Records
sap.successfactors.ecpaymentinformation: Bank
Fields
- d? Bank -
sap.successfactors.ecpaymentinformation: CollectionofBank
Fields
- results? Bank[] -
sap.successfactors.ecpaymentinformation: CollectionofCustomPayType
Fields
- results? CustomPayType[] -
sap.successfactors.ecpaymentinformation: CollectionofCustomPayTypeAssignment
Fields
- results? CustomPayTypeAssignment[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3
Fields
- results? PaymentInformationDetailV3[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3ARG
Fields
- results? PaymentInformationDetailV3ARG[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3BLR
Fields
- results? PaymentInformationDetailV3BLR[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3BOL
Fields
- results? PaymentInformationDetailV3BOL[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3BRA
Fields
- results? PaymentInformationDetailV3BRA[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3CHL
Fields
- results? PaymentInformationDetailV3CHL[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3COL
Fields
- results? PaymentInformationDetailV3COL[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3CZE
Fields
- results? PaymentInformationDetailV3CZE[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3ECU
Fields
- results? PaymentInformationDetailV3ECU[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3ESP
Fields
- results? PaymentInformationDetailV3ESP[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3FRA
Fields
- results? PaymentInformationDetailV3FRA[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3GBR
Fields
- results? PaymentInformationDetailV3GBR[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3GHA
Fields
- results? PaymentInformationDetailV3GHA[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3IRQ
Fields
- results? PaymentInformationDetailV3IRQ[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3ISR
Fields
- results? PaymentInformationDetailV3ISR[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3ITA
Fields
- results? PaymentInformationDetailV3ITA[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3JPN
Fields
- results? PaymentInformationDetailV3JPN[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3KEN
Fields
- results? PaymentInformationDetailV3KEN[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3MEX
Fields
- results? PaymentInformationDetailV3MEX[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3MKD
Fields
- results? PaymentInformationDetailV3MKD[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3MMR
Fields
- results? PaymentInformationDetailV3MMR[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3MOZ
Fields
- results? PaymentInformationDetailV3MOZ[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3MWI
Fields
- results? PaymentInformationDetailV3MWI[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3NAM
Fields
- results? PaymentInformationDetailV3NAM[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3NGA
Fields
- results? PaymentInformationDetailV3NGA[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3NZL
Fields
- results? PaymentInformationDetailV3NZL[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3PER
Fields
- results? PaymentInformationDetailV3PER[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3PRY
Fields
- results? PaymentInformationDetailV3PRY[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3SUR
Fields
- results? PaymentInformationDetailV3SUR[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3SVK
Fields
- results? PaymentInformationDetailV3SVK[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3SVN
Fields
- results? PaymentInformationDetailV3SVN[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3TUN
Fields
- results? PaymentInformationDetailV3TUN[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3USA
Fields
- results? PaymentInformationDetailV3USA[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3VEN
Fields
- results? PaymentInformationDetailV3VEN[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3ZAF
Fields
- results? PaymentInformationDetailV3ZAF[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationDetailV3ZWE
Fields
- results? PaymentInformationDetailV3ZWE[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentInformationV3
Fields
- results? PaymentInformationV3[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentMethodAssignmentV3
Fields
- results? PaymentMethodAssignmentV3[] -
sap.successfactors.ecpaymentinformation: CollectionofPaymentMethodV3
Fields
- results? PaymentMethodV3[] -
sap.successfactors.ecpaymentinformation: ConnectionConfig
Provides a set of configurations for controlling the behaviours when communicating with a remote HTTP endpoint.
Fields
- auth CredentialsConfig|SamlBearerAuthConfig - 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.successfactors.ecpaymentinformation: CreatedBank
Fields
- d? Bank -
sap.successfactors.ecpaymentinformation: CreatedCustomPayType
Fields
- d? CustomPayType -
sap.successfactors.ecpaymentinformation: CreatedCustomPayTypeAssignment
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3ARG
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3BLR
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3BOL
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3BRA
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3CHL
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3COL
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3CZE
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3ECU
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3ESP
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3FRA
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3GBR
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3GHA
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3IRQ
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3ISR
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3ITA
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3JPN
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3KEN
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3MEX
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3MKD
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3MMR
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3MOZ
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3MWI
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3NAM
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3NGA
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3NZL
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3PER
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3PRY
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3SUR
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3SVK
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3SVN
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3TUN
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3USA
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3VEN
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3ZAF
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationDetailV3ZWE
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentInformationV3
Fields
- d? PaymentInformationV3 -
sap.successfactors.ecpaymentinformation: CreatedPaymentMethodAssignmentV3
Fields
sap.successfactors.ecpaymentinformation: CreatedPaymentMethodV3
Fields
- d? PaymentMethodV3 -
sap.successfactors.ecpaymentinformation: CustomPayType
Fields
- d? CustomPayType -
sap.successfactors.ecpaymentinformation: CustomPayTypeAssignment
Fields
sap.successfactors.ecpaymentinformation: DeleteBankHeaders
Represents the Headers record for the operation: deleteBank
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeleteCustomPayTypeAssignmentHeaders
Represents the Headers record for the operation: deleteCustomPayTypeAssignment
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeleteCustomPayTypeHeaders
Represents the Headers record for the operation: deleteCustomPayType
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3ARGHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3ARG
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3BLRHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3BLR
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3BOLHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3BOL
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3BRAHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3BRA
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3CHLHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3CHL
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3COLHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3COL
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3CZEHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3CZE
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3ECUHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3ECU
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3ESPHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3ESP
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3FRAHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3FRA
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3GBRHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3GBR
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3GHAHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3GHA
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3Headers
Represents the Headers record for the operation: deletePaymentInformationDetailV3
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3IRQHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3IRQ
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3ISRHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3ISR
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3ITAHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3ITA
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3JPNHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3JPN
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3KENHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3KEN
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3MEXHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3MEX
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3MKDHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3MKD
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3MMRHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3MMR
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3MOZHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3MOZ
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3MWIHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3MWI
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3NAMHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3NAM
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3NGAHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3NGA
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3NZLHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3NZL
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3PERHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3PER
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3PRYHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3PRY
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3SURHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3SUR
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3SVKHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3SVK
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3SVNHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3SVN
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3TUNHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3TUN
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3USAHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3USA
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3VENHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3VEN
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3ZAFHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3ZAF
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationDetailV3ZWEHeaders
Represents the Headers record for the operation: deletePaymentInformationDetailV3ZWE
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentInformationV3Headers
Represents the Headers record for the operation: deletePaymentInformationV3
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentMethodAssignmentV3Headers
Represents the Headers record for the operation: deletePaymentMethodAssignmentV3
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: DeletePaymentMethodV3Headers
Represents the Headers record for the operation: deletePaymentMethodV3
Fields
- If\-Match? string - ETag
sap.successfactors.ecpaymentinformation: GetBankQueries
Represents the Queries record for the operation: getBank
Fields
- \$select? ("bankBranch"|"bankCountry"|"bankName"|"businessIdentifierCode"|"city"|"createdBy"|"createdDateTime"|"effectiveStatus"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"postalCode"|"routingNumber"|"street")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetCustomPayTypeAssignmentQueries
Represents the Queries record for the operation: getCustomPayTypeAssignment
Fields
- \$select? ("CustomPayType_externalCode"|"country"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetCustomPayTypeQueries
Represents the Queries record for the operation: getCustomPayType
Fields
- \$expand? ("*"|"toCustomPayTypeAssignment")[] - Expand related entities, see OData Expand
- \$select? ("createdBy"|"createdDateTime"|"externalCode"|"externalName_de_DE"|"externalName_defaultValue"|"externalName_en_DEBUG"|"externalName_en_GB"|"externalName_en_US"|"externalName_es_ES"|"externalName_fr_FR"|"externalName_ja_JP"|"externalName_ko_KR"|"externalName_localized"|"externalName_nl_NL"|"externalName_pt_BR"|"externalName_pt_PT"|"externalName_ru_RU"|"externalName_zh_CN"|"externalName_zh_TW"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"standardPayType")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3ARGQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3ARG
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3BLRQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3BLR
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3BOLQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3BOL
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3BRAQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3BRA
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3CHLQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3CHL
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3COLQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3COL
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"newAccountIdType")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3CZEQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3CZE
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"specificSymbol")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3ECUQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3ECU
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3ESPQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3ESP
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3FRAQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3FRA
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3GBRQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3GBR
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"buildingSocietyRollNumber"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3GHAQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3GHA
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3IRQQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3IRQ
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"checkDigit"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3ISRQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3ISR
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"branchName"|"branchNumberCode"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3ITAQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3ITA
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3JPNQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3JPN
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3KENQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3KEN
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3MEXQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3MEX
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"clabe"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3MKDQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3MKD
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3MMRQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3MMR
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3MOZQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3MOZ
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3MWIQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3MWI
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3NAMQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3NAM
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"checkDigit"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3NGAQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3NGA
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3NZLQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3NZL
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"paymentReference")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3PERQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3PER
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"paymentReference")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3PRYQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3PRY
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3Queries
Represents the Queries record for the operation: getPaymentInformationDetailV3
Fields
- \$expand? ("*"|"bankNav"|"customPayTypeNav"|"paymentMethodNav"|"toPaymentInformationDetailV3ARG"|"toPaymentInformationDetailV3BRA"|"toPaymentInformationDetailV3BOL"|"toPaymentInformationDetailV3PRY"|"toPaymentInformationDetailV3CHL"|"toPaymentInformationDetailV3CZE"|"toPaymentInformationDetailV3SVK"|"toPaymentInformationDetailV3TUN"|"toPaymentInformationDetailV3COL"|"toPaymentInformationDetailV3ECU"|"toPaymentInformationDetailV3ESP"|"toPaymentInformationDetailV3FRA"|"toPaymentInformationDetailV3GBR"|"toPaymentInformationDetailV3ISR"|"toPaymentInformationDetailV3ITA"|"toPaymentInformationDetailV3JPN"|"toPaymentInformationDetailV3KEN"|"toPaymentInformationDetailV3MEX"|"toPaymentInformationDetailV3NGA"|"toPaymentInformationDetailV3NZL"|"toPaymentInformationDetailV3USA"|"toPaymentInformationDetailV3VEN"|"toPaymentInformationDetailV3ZAF")[] - Expand related entities, see OData Expand
- \$select? ("PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountNumber"|"accountOwner"|"amount"|"bank"|"bankCountry"|"businessIdentifierCode"|"createdBy"|"createdDate"|"createdDateTime"|"currency"|"customPayType"|"externalCode"|"iban"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"paySequence"|"payType"|"paymentMethod"|"percent"|"purpose"|"routingNumber")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3SURQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3SUR
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3SVKQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3SVK
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"constantSymbol"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"specificSymbol"|"variableSymbol")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3SVNQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3SVN
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3TUNQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3TUN
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3USAQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3USA
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3VENQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3VEN
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"paymentReference")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3ZAFQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3ZAF
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountHolderRelationship"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationDetailV3ZWEQueries
Represents the Queries record for the operation: getPaymentInformationDetailV3ZWE
Fields
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentInformationV3Queries
Represents the Queries record for the operation: getPaymentInformationV3
Fields
- \$expand? ("*"|"toPaymentInformationDetailV3")[] - Expand related entities, see OData Expand
- \$select? ("createdBy"|"createdDate"|"createdDateTime"|"effectiveEndDate"|"effectiveStartDate"|"jobCountry"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"worker")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentMethodAssignmentV3Queries
Represents the Queries record for the operation: getPaymentMethodAssignmentV3
Fields
- \$select? ("PaymentMethodV3_externalCode"|"country"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: GetPaymentMethodV3Queries
Represents the Queries record for the operation: getPaymentMethodV3
Fields
- \$expand? ("*"|"toPaymentMethodAssignmentV3")[] - Expand related entities, see OData Expand
- \$select? ("createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"externalName_de_DE"|"externalName_defaultValue"|"externalName_en_GB"|"externalName_en_US"|"externalName_es_ES"|"externalName_fr_FR"|"externalName_ja_JP"|"externalName_ko_KR"|"externalName_localized"|"externalName_nl_NL"|"externalName_pt_BR"|"externalName_pt_PT"|"externalName_ru_RU"|"externalName_zh_CN"|"externalName_zh_TW"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListBanksQueries
Represents the Queries record for the operation: listBanks
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("bankBranch"|"bankBranch desc"|"bankCountry"|"bankCountry desc"|"bankName"|"bankName desc"|"businessIdentifierCode"|"businessIdentifierCode desc"|"city"|"city desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"effectiveStatus"|"effectiveStatus desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"postalCode"|"postalCode desc"|"routingNumber"|"routingNumber desc"|"street"|"street desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("bankBranch"|"bankCountry"|"bankName"|"businessIdentifierCode"|"city"|"createdBy"|"createdDateTime"|"effectiveStatus"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"postalCode"|"routingNumber"|"street")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListCustomPayTypeAssignmentsQueries
Represents the Queries record for the operation: listCustomPayTypeAssignments
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("CustomPayType_externalCode"|"CustomPayType_externalCode desc"|"country"|"country desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("CustomPayType_externalCode"|"country"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListCustomPayTypesQueries
Represents the Queries record for the operation: listCustomPayTypes
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"externalName_de_DE"|"externalName_de_DE desc"|"externalName_defaultValue"|"externalName_defaultValue desc"|"externalName_en_DEBUG"|"externalName_en_DEBUG desc"|"externalName_en_GB"|"externalName_en_GB desc"|"externalName_en_US"|"externalName_en_US desc"|"externalName_es_ES"|"externalName_es_ES desc"|"externalName_fr_FR"|"externalName_fr_FR desc"|"externalName_ja_JP"|"externalName_ja_JP desc"|"externalName_ko_KR"|"externalName_ko_KR desc"|"externalName_localized"|"externalName_localized desc"|"externalName_nl_NL"|"externalName_nl_NL desc"|"externalName_pt_BR"|"externalName_pt_BR desc"|"externalName_pt_PT"|"externalName_pt_PT desc"|"externalName_ru_RU"|"externalName_ru_RU desc"|"externalName_zh_CN"|"externalName_zh_CN desc"|"externalName_zh_TW"|"externalName_zh_TW desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"standardPayType"|"standardPayType desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"toCustomPayTypeAssignment")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("createdBy"|"createdDateTime"|"externalCode"|"externalName_de_DE"|"externalName_defaultValue"|"externalName_en_DEBUG"|"externalName_en_GB"|"externalName_en_US"|"externalName_es_ES"|"externalName_fr_FR"|"externalName_ja_JP"|"externalName_ko_KR"|"externalName_localized"|"externalName_nl_NL"|"externalName_pt_BR"|"externalName_pt_PT"|"externalName_ru_RU"|"externalName_zh_CN"|"externalName_zh_TW"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"standardPayType")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3ARGsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3ARGs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3BLRsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3BLRs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3BOLsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3BOLs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3BRAsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3BRAs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"checkDigit"|"checkDigit desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3CHLsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3CHLs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"checkDigit"|"checkDigit desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3COLsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3COLs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc"|"newAccountIdType"|"newAccountIdType desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"newAccountIdType")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3CZEsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3CZEs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"specificSymbol"|"specificSymbol desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"specificSymbol")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3ECUsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3ECUs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3ESPsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3ESPs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"checkDigit"|"checkDigit desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3FRAsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3FRAs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"checkDigit"|"checkDigit desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3GBRsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3GBRs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"buildingSocietyRollNumber"|"buildingSocietyRollNumber desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"buildingSocietyRollNumber"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3GHAsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3GHAs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3IRQsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3IRQs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"checkDigit"|"checkDigit desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"checkDigit"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3ISRsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3ISRs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"branchName"|"branchName desc"|"branchNumberCode"|"branchNumberCode desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"branchName"|"branchNumberCode"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3ITAsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3ITAs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"checkDigit"|"checkDigit desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3JPNsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3JPNs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3KENsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3KENs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3MEXsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3MEXs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"checkDigit"|"checkDigit desc"|"clabe"|"clabe desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"checkDigit"|"clabe"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3MKDsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3MKDs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3MMRsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3MMRs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3MOZsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3MOZs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3MWIsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3MWIs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3NAMsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3NAMs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"checkDigit"|"checkDigit desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"checkDigit"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3NGAsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3NGAs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3NZLsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3NZLs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc"|"paymentReference"|"paymentReference desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"paymentReference")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3PERsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3PERs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"paymentReference"|"paymentReference desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"paymentReference")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3PRYsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3PRYs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3sQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3s
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountNumber"|"accountNumber desc"|"accountOwner"|"accountOwner desc"|"amount"|"amount desc"|"bank"|"bank desc"|"bankCountry"|"bankCountry desc"|"businessIdentifierCode"|"businessIdentifierCode desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"currency"|"currency desc"|"customPayType"|"customPayType desc"|"externalCode"|"externalCode desc"|"iban"|"iban desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc"|"paySequence"|"paySequence desc"|"payType"|"payType desc"|"paymentMethod"|"paymentMethod desc"|"percent"|"percent desc"|"purpose"|"purpose desc"|"routingNumber"|"routingNumber desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"bankNav"|"customPayTypeNav"|"paymentMethodNav"|"toPaymentInformationDetailV3ARG"|"toPaymentInformationDetailV3BOL"|"toPaymentInformationDetailV3PRY"|"toPaymentInformationDetailV3BRA"|"toPaymentInformationDetailV3CHL"|"toPaymentInformationDetailV3COL"|"toPaymentInformationDetailV3CZE"|"toPaymentInformationDetailV3SVK"|"toPaymentInformationDetailV3TUN"|"toPaymentInformationDetailV3ECU"|"toPaymentInformationDetailV3ESP"|"toPaymentInformationDetailV3FRA"|"toPaymentInformationDetailV3GBR"|"toPaymentInformationDetailV3ISR"|"toPaymentInformationDetailV3ITA"|"toPaymentInformationDetailV3JPN"|"toPaymentInformationDetailV3KEN"|"toPaymentInformationDetailV3MEX"|"toPaymentInformationDetailV3NGA"|"toPaymentInformationDetailV3NZL"|"toPaymentInformationDetailV3USA"|"toPaymentInformationDetailV3VEN"|"toPaymentInformationDetailV3ZAF")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountNumber"|"accountOwner"|"amount"|"bank"|"bankCountry"|"businessIdentifierCode"|"createdBy"|"createdDate"|"createdDateTime"|"currency"|"customPayType"|"externalCode"|"iban"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"paySequence"|"payType"|"paymentMethod"|"percent"|"purpose"|"routingNumber")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3SURsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3SURs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3SVKsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3SVKs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"constantSymbol"|"constantSymbol desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"specificSymbol"|"specificSymbol desc"|"variableSymbol"|"variableSymbol desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"constantSymbol"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus"|"specificSymbol"|"variableSymbol")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3SVNsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3SVNs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3TUNsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3TUNs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3USAsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3USAs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3VENsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3VENs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc"|"paymentReference"|"paymentReference desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"paymentReference")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3ZAFsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3ZAFs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountHolderRelationship"|"accountHolderRelationship desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountHolderRelationship"|"accountType"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationDetailV3ZWEsQueries
Represents the Queries record for the operation: listPaymentInformationDetailV3ZWEs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationDetailV3_externalCode desc"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_effectiveStartDate desc"|"PaymentInformationV3_worker"|"PaymentInformationV3_worker desc"|"accountType"|"accountType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentInformationDetailV3_externalCode"|"PaymentInformationV3_effectiveStartDate"|"PaymentInformationV3_worker"|"accountType"|"createdBy"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemRecordStatus")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentInformationV3sQueries
Represents the Queries record for the operation: listPaymentInformationV3s
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"effectiveEndDate"|"effectiveEndDate desc"|"effectiveStartDate"|"effectiveStartDate desc"|"jobCountry"|"jobCountry desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc"|"worker"|"worker desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"toPaymentInformationDetailV3")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("createdBy"|"createdDate"|"createdDateTime"|"effectiveEndDate"|"effectiveStartDate"|"jobCountry"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"worker")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentMethodAssignmentV3sQueries
Represents the Queries record for the operation: listPaymentMethodAssignmentV3s
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("PaymentMethodV3_externalCode"|"PaymentMethodV3_externalCode desc"|"country"|"country desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("PaymentMethodV3_externalCode"|"country"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ListPaymentMethodV3sQueries
Represents the Queries record for the operation: listPaymentMethodV3s
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"externalName_de_DE"|"externalName_de_DE desc"|"externalName_defaultValue"|"externalName_defaultValue desc"|"externalName_en_GB"|"externalName_en_GB desc"|"externalName_en_US"|"externalName_en_US desc"|"externalName_es_ES"|"externalName_es_ES desc"|"externalName_fr_FR"|"externalName_fr_FR desc"|"externalName_ja_JP"|"externalName_ja_JP desc"|"externalName_ko_KR"|"externalName_ko_KR desc"|"externalName_localized"|"externalName_localized desc"|"externalName_nl_NL"|"externalName_nl_NL desc"|"externalName_pt_BR"|"externalName_pt_BR desc"|"externalName_pt_PT"|"externalName_pt_PT desc"|"externalName_ru_RU"|"externalName_ru_RU desc"|"externalName_zh_CN"|"externalName_zh_CN desc"|"externalName_zh_TW"|"externalName_zh_TW desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"toPaymentMethodAssignmentV3")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"externalName_de_DE"|"externalName_defaultValue"|"externalName_en_GB"|"externalName_en_US"|"externalName_es_ES"|"externalName_fr_FR"|"externalName_ja_JP"|"externalName_ko_KR"|"externalName_localized"|"externalName_nl_NL"|"externalName_pt_BR"|"externalName_pt_PT"|"externalName_ru_RU"|"externalName_zh_CN"|"externalName_zh_TW"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpaymentinformation: ModifiedBank
Fields
- d? Bank -
sap.successfactors.ecpaymentinformation: ModifiedCustomPayType
Fields
- d? CustomPayType -
sap.successfactors.ecpaymentinformation: ModifiedCustomPayTypeAssignment
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3ARG
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3BLR
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3BOL
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3BRA
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3CHL
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3COL
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3CZE
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3ECU
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3ESP
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3FRA
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3GBR
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3GHA
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3IRQ
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3ISR
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3ITA
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3JPN
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3KEN
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3MEX
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3MKD
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3MMR
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3MOZ
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3MWI
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3NAM
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3NGA
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3NZL
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3PER
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3PRY
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3SUR
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3SVK
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3SVN
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3TUN
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3USA
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3VEN
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3ZAF
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationDetailV3ZWE
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentInformationV3
Fields
- d? PaymentInformationV3 -
sap.successfactors.ecpaymentinformation: ModifiedPaymentMethodAssignmentV3
Fields
sap.successfactors.ecpaymentinformation: ModifiedPaymentMethodV3
Fields
- d? PaymentMethodV3 -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3ARG
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3BLR
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3BOL
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3BRA
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3CHL
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3COL
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3CZE
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3ECU
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3ESP
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3FRA
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3GBR
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3GHA
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3IRQ
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3ISR
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3ITA
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3JPN
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3KEN
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3MEX
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3MKD
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3MMR
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3MOZ
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3MWI
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3NAM
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3NGA
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3NZL
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3PER
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3PRY
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3SUR
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3SVK
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3SVN
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3TUN
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3USA
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3VEN
Fields
- PaymentInformationDetailV3_externalCode? string -
- PaymentInformationV3_effectiveStartDate? string -
- PaymentInformationV3_worker? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3ZAF
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationDetailV3ZWE
Fields
sap.successfactors.ecpaymentinformation: PaymentInformationV3
Fields
- d? PaymentInformationV3 -
sap.successfactors.ecpaymentinformation: PaymentMethodAssignmentV3
Fields
- PaymentMethodV3_externalCode? string -
- externalCode? string -
sap.successfactors.ecpaymentinformation: PaymentMethodV3
Fields
- externalCode? string -
- toPaymentMethodAssignmentV3? RelatedCollectionSFOData_PaymentMethodAssignmentV3 -
sap.successfactors.ecpaymentinformation: RelatedCollectionSFOData_CustomPayTypeAssignment
Fields
- results? CustomPayTypeAssignment[] -
sap.successfactors.ecpaymentinformation: RelatedCollectionSFOData_PaymentInformationDetailV3
Fields
- results? PaymentInformationDetailV3[] -
sap.successfactors.ecpaymentinformation: RelatedCollectionSFOData_PaymentMethodAssignmentV3
Fields
- results? PaymentMethodAssignmentV3[] -
sap.successfactors.ecpaymentinformation: Wrapper
Fields
sap.successfactors.ecpaymentinformation: Wrapper_1
Fields
sap.successfactors.ecpaymentinformation: Wrapper_10
Fields
sap.successfactors.ecpaymentinformation: Wrapper_11
Fields
sap.successfactors.ecpaymentinformation: Wrapper_12
Fields
sap.successfactors.ecpaymentinformation: Wrapper_13
Fields
sap.successfactors.ecpaymentinformation: Wrapper_14
Fields
sap.successfactors.ecpaymentinformation: Wrapper_15
Fields
sap.successfactors.ecpaymentinformation: Wrapper_16
Fields
sap.successfactors.ecpaymentinformation: Wrapper_17
Fields
sap.successfactors.ecpaymentinformation: Wrapper_18
Fields
sap.successfactors.ecpaymentinformation: Wrapper_19
Fields
sap.successfactors.ecpaymentinformation: Wrapper_2
Fields
sap.successfactors.ecpaymentinformation: Wrapper_20
Fields
sap.successfactors.ecpaymentinformation: Wrapper_21
Fields
sap.successfactors.ecpaymentinformation: Wrapper_22
Fields
sap.successfactors.ecpaymentinformation: Wrapper_23
Fields
sap.successfactors.ecpaymentinformation: Wrapper_24
Fields
sap.successfactors.ecpaymentinformation: Wrapper_25
Fields
sap.successfactors.ecpaymentinformation: Wrapper_26
Fields
sap.successfactors.ecpaymentinformation: Wrapper_27
Fields
sap.successfactors.ecpaymentinformation: Wrapper_28
Fields
sap.successfactors.ecpaymentinformation: Wrapper_29
Fields
sap.successfactors.ecpaymentinformation: Wrapper_3
Fields
sap.successfactors.ecpaymentinformation: Wrapper_30
Fields
sap.successfactors.ecpaymentinformation: Wrapper_31
Fields
sap.successfactors.ecpaymentinformation: Wrapper_32
Fields
sap.successfactors.ecpaymentinformation: Wrapper_33
Fields
sap.successfactors.ecpaymentinformation: Wrapper_34
Fields
sap.successfactors.ecpaymentinformation: Wrapper_35
Fields
sap.successfactors.ecpaymentinformation: Wrapper_36
Fields
sap.successfactors.ecpaymentinformation: Wrapper_37
Fields
sap.successfactors.ecpaymentinformation: Wrapper_38
Fields
sap.successfactors.ecpaymentinformation: Wrapper_39
Fields
sap.successfactors.ecpaymentinformation: Wrapper_4
Fields
sap.successfactors.ecpaymentinformation: Wrapper_40
Fields
sap.successfactors.ecpaymentinformation: Wrapper_41
Fields
sap.successfactors.ecpaymentinformation: Wrapper_5
Fields
- d? CollectionofBank -
sap.successfactors.ecpaymentinformation: Wrapper_6
Fields
sap.successfactors.ecpaymentinformation: Wrapper_7
Fields
sap.successfactors.ecpaymentinformation: Wrapper_8
Fields
sap.successfactors.ecpaymentinformation: Wrapper_9
Fields
Import
import ballerinax/sap.successfactors.ecpaymentinformation;Metadata
Released date: 5 days ago
Version: 1.1.1
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 2
Current verison: 0
Weekly downloads
Keywords
Name/SAP Success Factors Payment Information
Type/Connector
Vendor/SAP
Area/ERP & Business Operations
Business Management/HCM
Cost/Paid
SuccessFactors
Employee Central
Payment Information
Contributors