sap.successfactors.ecworkflow
Module sap.successfactors.ecworkflow
API
Definitions
ballerinax/sap.successfactors.ecworkflow 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.
The ballerinax/sap.successfactors.ecworkflow package provides APIs that enable seamless integration with the SAP SuccessFactors Workflow API v1.0. The service allows to manage workflow processes, approvals, and workflow-related operations for employee transactions.
Key Features
- Manage workflow processes including approval workflows
- Access pending workflow items and workflow notifications
- Query workflow history and process automation records
- Support for basic and OAuth 2.0 authentication
Setup guide
-
Sign in to your SAP SuccessFactors instance as an administrator.
-
Navigate to Admin Center > Manage OAuth2 Client Applications and register a new OAuth2 client application for your integration.

-
Note down the API Key (client ID) and configure the appropriate scopes for the Employee Central APIs you intend to use.
-
Locate your Company ID and the API server hostname for your SuccessFactors region. You can find the list of API servers in the SAP SuccessFactors API documentation.
-
Use Basic Authentication (username + password) or OAuth 2.0 SAML Bearer to authenticate with the API.
Quickstart
To use the sap.successfactors.ecworkflow connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
Import the sap.successfactors.ecworkflow module.
import ballerinax/sap.successfactors.ecworkflow as ecwf;
Step 2: Instantiate a new connector
Use the hostname and credentials to initiate a client.
configurable string hostname = ?; configurable string username = ?; configurable string password = ?; ecwf:Client ecwfClient = check new ( { auth: { username, password } }, hostname );
Step 3: Invoke the connector operation
Now, utilize the available connector operations.
ecwf:WfRequestWrapper wfRequest = check ecwfClient->getWfRequest();
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.ecworkflow: Client
You can use these APIs to access data of employees workflow requests and and other workflow data such as current status.
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 -
listMyPendingWorkflows
function listMyPendingWorkflows(map<string|string[]> headers, *ListMyPendingWorkflowsQueries queries) returns Wrapper|errorGet entities from MyPendingWorkflow
Parameters
- queries *ListMyPendingWorkflowsQueries - Queries to be sent with the request
getMyPendingWorkflow
function getMyPendingWorkflow(string wfRequestId, map<string|string[]> headers, *GetMyPendingWorkflowQueries queries) returns MyPendingWorkflow_1|errorGet entity from MyPendingWorkflow by key
Parameters
- wfRequestId string - key: wfRequestId
- queries *GetMyPendingWorkflowQueries - Queries to be sent with the request
Return Type
- MyPendingWorkflow_1|error - Retrieved entity
listWfRequestParticipators
function listWfRequestParticipators(map<string|string[]> headers, *ListWfRequestParticipatorsQueries queries) returns Wrapper_1|errorGet entities from WfRequestParticipator
Parameters
- queries *ListWfRequestParticipatorsQueries - Queries to be sent with the request
getWfRequestParticipator
function getWfRequestParticipator(int wfRequestParticipatorId, map<string|string[]> headers, *GetWfRequestParticipatorQueries queries) returns WfRequestParticipator_1|errorGet entity from WfRequestParticipator by key
Parameters
- wfRequestParticipatorId int - key: wfRequestParticipatorId
- queries *GetWfRequestParticipatorQueries - Queries to be sent with the request
Return Type
- WfRequestParticipator_1|error - Retrieved entity
listWorkflowAllowedActionLists
function listWorkflowAllowedActionLists(map<string|string[]> headers, *ListWorkflowAllowedActionListsQueries queries) returns Wrapper_2|errorGet entities from WorkflowAllowedActionList
Parameters
- queries *ListWorkflowAllowedActionListsQueries - Queries to be sent with the request
getWorkflowAllowedActionList
function getWorkflowAllowedActionList(int wfRequestId, map<string|string[]> headers, *GetWorkflowAllowedActionListQueries queries) returns WorkflowAllowedActionList_1|errorGet entity from WorkflowAllowedActionList by key
Parameters
- wfRequestId int - key: wfRequestId
- queries *GetWorkflowAllowedActionListQueries - Queries to be sent with the request
Return Type
- WorkflowAllowedActionList_1|error - Retrieved entity
listAlertMessages
function listAlertMessages(map<string|string[]> headers, *ListAlertMessagesQueries queries) returns Wrapper_3|errorGet entities from AlertMessage
Parameters
- queries *ListAlertMessagesQueries - Queries to be sent with the request
createAlertMessage
function createAlertMessage(AlertMessage payload, map<string|string[]> headers) returns CreatedAlertMessage|errorAdd new entity to AlertMessage
Parameters
- payload AlertMessage - New entity
Return Type
- CreatedAlertMessage|error - Created entity
getAlertMessage
function getAlertMessage(string externalCode, map<string|string[]> headers, *GetAlertMessageQueries queries) returns AlertMessage_1|errorGet entity from AlertMessage by key
Parameters
- externalCode string - key: externalCode
- queries *GetAlertMessageQueries - Queries to be sent with the request
Return Type
- AlertMessage_1|error - Retrieved entity
updateAlertMessage
function updateAlertMessage(string externalCode, ModifiedAlertMessage payload, map<string|string[]> headers) returns error?Update entity in AlertMessage
Return Type
- error? - Success
deleteAlertMessage
function deleteAlertMessage(string externalCode, DeleteAlertMessageHeaders headers) returns error?Delete entity from AlertMessage
Parameters
- externalCode string - key: externalCode
- headers DeleteAlertMessageHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listWfRequestCommentss
function listWfRequestCommentss(map<string|string[]> headers, *ListWfRequestCommentssQueries queries) returns Wrapper_4|errorGet entities from WfRequestComments
Parameters
- queries *ListWfRequestCommentssQueries - Queries to be sent with the request
getWfRequestComments
function getWfRequestComments(int wfRequestCommentId, map<string|string[]> headers, *GetWfRequestCommentsQueries queries) returns WfRequestComments_1|errorGet entity from WfRequestComments by key
Parameters
- wfRequestCommentId int - key: wfRequestCommentId
- queries *GetWfRequestCommentsQueries - Queries to be sent with the request
Return Type
- WfRequestComments_1|error - Retrieved entity
listWfRequestSteps
function listWfRequestSteps(map<string|string[]> headers, *ListWfRequestStepsQueries queries) returns Wrapper_5|errorGet entities from WfRequestStep
Parameters
- queries *ListWfRequestStepsQueries - Queries to be sent with the request
getWfRequestStep
function getWfRequestStep(int wfRequestStepId, map<string|string[]> headers, *GetWfRequestStepQueries queries) returns WfRequestStep_1|errorGet entity from WfRequestStep by key
Parameters
- wfRequestStepId int - key: wfRequestStepId
- queries *GetWfRequestStepQueries - Queries to be sent with the request
Return Type
- WfRequestStep_1|error - Retrieved entity
listAutoDelegateDetails
function listAutoDelegateDetails(map<string|string[]> headers, *ListAutoDelegateDetailsQueries queries) returns Wrapper_6|errorGet entities from AutoDelegateDetail
Parameters
- queries *ListAutoDelegateDetailsQueries - Queries to be sent with the request
createAutoDelegateDetail
function createAutoDelegateDetail(AutoDelegateDetail payload, map<string|string[]> headers) returns CreatedAutoDelegateDetail|errorAdd new entity to AutoDelegateDetail
Parameters
- payload AutoDelegateDetail - New entity
Return Type
- CreatedAutoDelegateDetail|error - Created entity
getAutoDelegateDetail
function getAutoDelegateDetail(string AutoDelegateConfig_delegator, string externalCode, map<string|string[]> headers, *GetAutoDelegateDetailQueries queries) returns AutoDelegateDetail_1|errorGet entity from AutoDelegateDetail by key
Parameters
- AutoDelegateConfig_delegator string - key: AutoDelegateConfig_delegator
- externalCode string - key: externalCode
- queries *GetAutoDelegateDetailQueries - Queries to be sent with the request
Return Type
- AutoDelegateDetail_1|error - Retrieved entity
updateAutoDelegateDetail
function updateAutoDelegateDetail(string AutoDelegateConfig_delegator, string externalCode, ModifiedAutoDelegateDetail payload, map<string|string[]> headers) returns error?Update entity in AutoDelegateDetail
Parameters
- AutoDelegateConfig_delegator string - key: AutoDelegateConfig_delegator
- externalCode string - key: externalCode
- payload ModifiedAutoDelegateDetail - New property values
Return Type
- error? - Success
deleteAutoDelegateDetail
function deleteAutoDelegateDetail(string AutoDelegateConfig_delegator, string externalCode, DeleteAutoDelegateDetailHeaders headers) returns error?Delete entity from AutoDelegateDetail
Parameters
- AutoDelegateConfig_delegator string - key: AutoDelegateConfig_delegator
- externalCode string - key: externalCode
- headers DeleteAutoDelegateDetailHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listAutoDelegateConfigs
function listAutoDelegateConfigs(map<string|string[]> headers, *ListAutoDelegateConfigsQueries queries) returns json|errorGet entities from AutoDelegateConfig
Parameters
- queries *ListAutoDelegateConfigsQueries - Queries to be sent with the request
Return Type
- json|error - Retrieved entities
getAutoDelegateConfig
function getAutoDelegateConfig(string delegator, map<string|string[]> headers, *GetAutoDelegateConfigQueries queries) returns json|errorGet entity from AutoDelegateConfig by key
Parameters
- delegator string - key: delegator
- queries *GetAutoDelegateConfigQueries - Queries to be sent with the request
Return Type
- json|error - Retrieved entity
deleteAutoDelegateConfig
function deleteAutoDelegateConfig(string delegator, DeleteAutoDelegateConfigHeaders headers) returns error?Delete entity from AutoDelegateConfig
Parameters
- delegator string - key: delegator
- headers DeleteAutoDelegateConfigHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listEmpWfRequests
function listEmpWfRequests(map<string|string[]> headers, *ListEmpWfRequestsQueries queries) returns Wrapper_8|errorGet entities from EmpWfRequest
Parameters
- queries *ListEmpWfRequestsQueries - Queries to be sent with the request
getEmpWfRequest
function getEmpWfRequest(int empWfRequestId, map<string|string[]> headers, *GetEmpWfRequestQueries queries) returns EmpWfRequest_1|errorGet entity from EmpWfRequest by key
Parameters
- empWfRequestId int - key: empWfRequestId
- queries *GetEmpWfRequestQueries - Queries to be sent with the request
Return Type
- EmpWfRequest_1|error - Retrieved entity
listWfRequests
function listWfRequests(map<string|string[]> headers, *ListWfRequestsQueries queries) returns Wrapper_9|errorGet entities from WfRequest
Parameters
- queries *ListWfRequestsQueries - Queries to be sent with the request
getWfRequest
function getWfRequest(int wfRequestId, map<string|string[]> headers, *GetWfRequestQueries queries) returns WfRequest_1|errorGet entity from WfRequest by key
Parameters
- wfRequestId int - key: wfRequestId
- queries *GetWfRequestQueries - Queries to be sent with the request
Return Type
- WfRequest_1|error - Retrieved entity
createapproveWfRequest
function createapproveWfRequest(map<string|string[]> headers, *CreateapproveWfRequestQueries queries) returns Result|errorInvoke action approveWfRequest
Parameters
- queries *CreateapproveWfRequestQueries - Queries to be sent with the request
createcommentWfRequest
function createcommentWfRequest(map<string|string[]> headers, *CreatecommentWfRequestQueries queries) returns Result|errorInvoke action commentWfRequest
Parameters
- queries *CreatecommentWfRequestQueries - Queries to be sent with the request
createrejectWfRequest
function createrejectWfRequest(map<string|string[]> headers, *CreaterejectWfRequestQueries queries) returns Result|errorInvoke action rejectWfRequest
Parameters
- queries *CreaterejectWfRequestQueries - Queries to be sent with the request
createsendbackWfRequest
function createsendbackWfRequest(map<string|string[]> headers, *CreatesendbackWfRequestQueries queries) returns Result|errorInvoke action sendbackWfRequest
Parameters
- queries *CreatesendbackWfRequestQueries - Queries to be sent with the request
creategetWorkflowPendingData
function creategetWorkflowPendingData(map<string|string[]> headers, *CreategetWorkflowPendingDataQueries queries) returns Result_1|errorGet pending data of a workflow request
Parameters
- queries *CreategetWorkflowPendingDataQueries - Queries to be sent with the request
createwithdrawWfRequest
function createwithdrawWfRequest(map<string|string[]> headers, *CreatewithdrawWfRequestQueries queries) returns Result|errorInvoke action withdrawWfRequest
Parameters
- queries *CreatewithdrawWfRequestQueries - Queries to be sent with the request
Records
sap.successfactors.ecworkflow: AlertMessage
Fields
- externalCode? string -
- wfRequestNav? RelatedCollectionSFOData_WfRequest -
sap.successfactors.ecworkflow: AlertMessage_1
Fields
- d? AlertMessage -
sap.successfactors.ecworkflow: AutoDelegateDetail
Fields
- AutoDelegateConfig_delegator? string -
- externalCode? string -
sap.successfactors.ecworkflow: AutoDelegateDetail_1
Fields
- d? AutoDelegateDetail -
sap.successfactors.ecworkflow: ChangeDataBean
Fields
- label? string -
- newValue? string -
- oldValue? string -
sap.successfactors.ecworkflow: CollectionofAlertMessage
Fields
- results? AlertMessage[] -
sap.successfactors.ecworkflow: CollectionofAutoDelegateDetail
Fields
- results? AutoDelegateDetail[] -
sap.successfactors.ecworkflow: CollectionofEmpWfRequest
Fields
- results? EmpWfRequest[] -
sap.successfactors.ecworkflow: CollectionofMyPendingWorkflow
Fields
- results? MyPendingWorkflow[] -
sap.successfactors.ecworkflow: CollectionofWfRequest
Fields
- results? WfRequest[] -
sap.successfactors.ecworkflow: CollectionofWfRequestComments
Fields
- results? WfRequestComments[] -
sap.successfactors.ecworkflow: CollectionofWfRequestParticipator
Fields
- results? WfRequestParticipator[] -
sap.successfactors.ecworkflow: CollectionofWfRequestStep
Fields
- results? WfRequestStep[] -
sap.successfactors.ecworkflow: CollectionofWorkflowAllowedActionList
Fields
- results? WorkflowAllowedActionList[] -
sap.successfactors.ecworkflow: 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.ecworkflow: CreateapproveWfRequestQueries
Represents the Queries record for the operation: createapproveWfRequest
Fields
- comment string -
- wfRequestId string -
sap.successfactors.ecworkflow: CreatecommentWfRequestQueries
Represents the Queries record for the operation: createcommentWfRequest
Fields
- comment string -
- wfRequestId string -
sap.successfactors.ecworkflow: CreatedAlertMessage
Fields
- d? AlertMessage -
sap.successfactors.ecworkflow: CreatedAutoDelegateDetail
Fields
- d? AutoDelegateDetail -
sap.successfactors.ecworkflow: CreategetWorkflowPendingDataQueries
Represents the Queries record for the operation: creategetWorkflowPendingData
Fields
- wfRequestId string -
sap.successfactors.ecworkflow: CreaterejectWfRequestQueries
Represents the Queries record for the operation: createrejectWfRequest
Fields
- comment string -
- wfRequestId string -
sap.successfactors.ecworkflow: CreatesendbackWfRequestQueries
Represents the Queries record for the operation: createsendbackWfRequest
Fields
- comment string -
- wfRequestId string -
sap.successfactors.ecworkflow: CreatewithdrawWfRequestQueries
Represents the Queries record for the operation: createwithdrawWfRequest
Fields
- comment string -
- wfRequestId string -
sap.successfactors.ecworkflow: DeleteAlertMessageHeaders
Represents the Headers record for the operation: deleteAlertMessage
Fields
- If\-Match? string - ETag
sap.successfactors.ecworkflow: DeleteAutoDelegateConfigHeaders
Represents the Headers record for the operation: deleteAutoDelegateConfig
Fields
- If\-Match? string - ETag
sap.successfactors.ecworkflow: DeleteAutoDelegateDetailHeaders
Represents the Headers record for the operation: deleteAutoDelegateDetail
Fields
- If\-Match? string - ETag
sap.successfactors.ecworkflow: EmpWfRequest
Fields
- empWfRequestId? string -
sap.successfactors.ecworkflow: EmpWfRequest_1
Fields
- d? EmpWfRequest -
sap.successfactors.ecworkflow: EssMssWorkflowAttributeBean
Fields
- changeSet? PendingDataAttributeBean[] -
- entityName? string -
- fieldId? string -
- fieldName? string -
- id? string -
- label? string -
- newValue? string -
- oldValue? string -
- payComponents? ChangeDataBean[] -
- 'type? string -
sap.successfactors.ecworkflow: EssMssWorkflowAttributeGroupBean
Fields
- changeSet? EssMssWorkflowAttributeBean[] -
- groups? PendDataGroupBean[] -
- subChangeSetGroups? EssMssWorkflowSubAttributeBean[] -
- title? string -
sap.successfactors.ecworkflow: EssMssWorkflowSubAttributeBean
Fields
- changeSet? EssMssWorkflowAttributeBean[] -
- changeSetGroupSubTitle? string -
sap.successfactors.ecworkflow: GetAlertMessageQueries
Represents the Queries record for the operation: getAlertMessage
Fields
- \$expand? ("*"|"wfRequestNav")[] - Expand related entities, see OData Expand
- \$select? ("alertDescription"|"alertDescriptionLocalized_de_DE"|"alertDescriptionLocalized_defaultValue"|"alertDescriptionLocalized_en_GB"|"alertDescriptionLocalized_en_US"|"alertDescriptionLocalized_es_ES"|"alertDescriptionLocalized_fr_FR"|"alertDescriptionLocalized_ja_JP"|"alertDescriptionLocalized_ko_KR"|"alertDescriptionLocalized_localized"|"alertDescriptionLocalized_nl_NL"|"alertDescriptionLocalized_pt_BR"|"alertDescriptionLocalized_pt_PT"|"alertDescriptionLocalized_ru_RU"|"alertDescriptionLocalized_zh_CN"|"alertDescriptionLocalized_zh_TW"|"alertHeader"|"alertHeaderLocalized_de_DE"|"alertHeaderLocalized_defaultValue"|"alertHeaderLocalized_en_GB"|"alertHeaderLocalized_en_US"|"alertHeaderLocalized_es_ES"|"alertHeaderLocalized_fr_FR"|"alertHeaderLocalized_ja_JP"|"alertHeaderLocalized_ko_KR"|"alertHeaderLocalized_localized"|"alertHeaderLocalized_nl_NL"|"alertHeaderLocalized_pt_BR"|"alertHeaderLocalized_pt_PT"|"alertHeaderLocalized_ru_RU"|"alertHeaderLocalized_zh_CN"|"alertHeaderLocalized_zh_TW"|"createdBy"|"createdDateTime"|"effectiveStatus"|"externalCode"|"externalName"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemCreatedBy"|"mdfSystemCreatedDate"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemLastModifiedBy"|"mdfSystemLastModifiedDate"|"mdfSystemLastModifiedDateWithTZ"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: GetAutoDelegateConfigQueries
Represents the Queries record for the operation: getAutoDelegateConfig
Fields
- \$expand? ("*"|"autoDelegateDetails"|"wfRequestNav")[] - Expand related entities, see OData Expand
- \$select? ("createdBy"|"createdDate"|"createdDateTime"|"delegator"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: GetAutoDelegateDetailQueries
Represents the Queries record for the operation: getAutoDelegateDetail
Fields
- \$select? ("AutoDelegateConfig_delegator"|"alwaysOn"|"createdBy"|"createdDate"|"createdDateTime"|"delegatee"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"status")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: GetEmpWfRequestQueries
Represents the Queries record for the operation: getEmpWfRequest
Fields
- \$select? ("actionType"|"effectiveDate"|"empWfRequestId"|"entityType"|"eventReason"|"requestType"|"subjectId"|"wfConfig"|"wfRequestId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: GetMyPendingWorkflowQueries
Represents the Queries record for the operation: getMyPendingWorkflow
Fields
- \$select? ("desc"|"subject"|"url"|"wfRequestId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: GetWfRequestCommentsQueries
Represents the Queries record for the operation: getWfRequestComments
Fields
- \$select? ("actionType"|"comments"|"createdBy"|"createdDateTime"|"createdOn"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"userId"|"wfRequestCommentId"|"wfRequestId"|"wfRequestStepId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: GetWfRequestParticipatorQueries
Represents the Queries record for the operation: getWfRequestParticipator
Fields
- \$select? ("actorType"|"createdBy"|"createdDateTime"|"createdOn"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"ownerId"|"participatorType"|"processingOrder"|"relatedTo"|"roleId"|"wfRequestId"|"wfRequestParticipatorId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: GetWfRequestQueries
Represents the Queries record for the operation: getWfRequest
Fields
- \$expand? ("*"|"empWfRequestNav"|"parentWfRequestNav"|"wfRequestCommentsNav"|"wfRequestParticipatorNav"|"wfRequestStepNav"|"workflowAllowedActionListNav")[] - Expand related entities, see OData Expand
- \$select? ("createdBy"|"createdDateTime"|"createdOn"|"currentStepNum"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"module"|"parentWfRequestId"|"reminderSentDate"|"status"|"totalSteps"|"url"|"wfRequestId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: GetWfRequestStepQueries
Represents the Queries record for the operation: getWfRequestStep
Fields
- \$expand? ("*"|"wfRequestNav")[] - Expand related entities, see OData Expand
- \$select? ("actionType"|"approverType"|"createdBy"|"createdDateTime"|"createdOn"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"ownerId"|"processedBy"|"relatedTo"|"role"|"status"|"stepNum"|"wfRequestId"|"wfRequestStepId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: GetWorkflowAllowedActionListQueries
Represents the Queries record for the operation: getWorkflowAllowedActionList
Fields
- \$select? ("allowApprove"|"allowDelegateDecline"|"allowDelegateGrant"|"allowDelegateRevoke"|"allowPostComment"|"allowReject"|"allowResubmit"|"allowSendback"|"allowUpdateRequest"|"allowWithdraw"|"wfRequestId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListAlertMessagesQueries
Represents the Queries record for the operation: listAlertMessages
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? ("alertDescription"|"alertDescription desc"|"alertDescriptionLocalized_de_DE"|"alertDescriptionLocalized_de_DE desc"|"alertDescriptionLocalized_defaultValue"|"alertDescriptionLocalized_defaultValue desc"|"alertDescriptionLocalized_en_GB"|"alertDescriptionLocalized_en_GB desc"|"alertDescriptionLocalized_en_US"|"alertDescriptionLocalized_en_US desc"|"alertDescriptionLocalized_es_ES"|"alertDescriptionLocalized_es_ES desc"|"alertDescriptionLocalized_fr_FR"|"alertDescriptionLocalized_fr_FR desc"|"alertDescriptionLocalized_ja_JP"|"alertDescriptionLocalized_ja_JP desc"|"alertDescriptionLocalized_ko_KR"|"alertDescriptionLocalized_ko_KR desc"|"alertDescriptionLocalized_localized"|"alertDescriptionLocalized_localized desc"|"alertDescriptionLocalized_nl_NL"|"alertDescriptionLocalized_nl_NL desc"|"alertDescriptionLocalized_pt_BR"|"alertDescriptionLocalized_pt_BR desc"|"alertDescriptionLocalized_pt_PT"|"alertDescriptionLocalized_pt_PT desc"|"alertDescriptionLocalized_ru_RU"|"alertDescriptionLocalized_ru_RU desc"|"alertDescriptionLocalized_zh_CN"|"alertDescriptionLocalized_zh_CN desc"|"alertDescriptionLocalized_zh_TW"|"alertDescriptionLocalized_zh_TW desc"|"alertHeader"|"alertHeader desc"|"alertHeaderLocalized_de_DE"|"alertHeaderLocalized_de_DE desc"|"alertHeaderLocalized_defaultValue"|"alertHeaderLocalized_defaultValue desc"|"alertHeaderLocalized_en_GB"|"alertHeaderLocalized_en_GB desc"|"alertHeaderLocalized_en_US"|"alertHeaderLocalized_en_US desc"|"alertHeaderLocalized_es_ES"|"alertHeaderLocalized_es_ES desc"|"alertHeaderLocalized_fr_FR"|"alertHeaderLocalized_fr_FR desc"|"alertHeaderLocalized_ja_JP"|"alertHeaderLocalized_ja_JP desc"|"alertHeaderLocalized_ko_KR"|"alertHeaderLocalized_ko_KR desc"|"alertHeaderLocalized_localized"|"alertHeaderLocalized_localized desc"|"alertHeaderLocalized_nl_NL"|"alertHeaderLocalized_nl_NL desc"|"alertHeaderLocalized_pt_BR"|"alertHeaderLocalized_pt_BR desc"|"alertHeaderLocalized_pt_PT"|"alertHeaderLocalized_pt_PT desc"|"alertHeaderLocalized_ru_RU"|"alertHeaderLocalized_ru_RU desc"|"alertHeaderLocalized_zh_CN"|"alertHeaderLocalized_zh_CN desc"|"alertHeaderLocalized_zh_TW"|"alertHeaderLocalized_zh_TW desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"effectiveStatus"|"effectiveStatus desc"|"externalCode"|"externalCode desc"|"externalName"|"externalName desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemCreatedBy"|"mdfSystemCreatedBy desc"|"mdfSystemCreatedDate"|"mdfSystemCreatedDate desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemLastModifiedBy"|"mdfSystemLastModifiedBy desc"|"mdfSystemLastModifiedDate"|"mdfSystemLastModifiedDate desc"|"mdfSystemLastModifiedDateWithTZ"|"mdfSystemLastModifiedDateWithTZ desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"wfRequestNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("alertDescription"|"alertDescriptionLocalized_de_DE"|"alertDescriptionLocalized_defaultValue"|"alertDescriptionLocalized_en_GB"|"alertDescriptionLocalized_en_US"|"alertDescriptionLocalized_es_ES"|"alertDescriptionLocalized_fr_FR"|"alertDescriptionLocalized_ja_JP"|"alertDescriptionLocalized_ko_KR"|"alertDescriptionLocalized_localized"|"alertDescriptionLocalized_nl_NL"|"alertDescriptionLocalized_pt_BR"|"alertDescriptionLocalized_pt_PT"|"alertDescriptionLocalized_ru_RU"|"alertDescriptionLocalized_zh_CN"|"alertDescriptionLocalized_zh_TW"|"alertHeader"|"alertHeaderLocalized_de_DE"|"alertHeaderLocalized_defaultValue"|"alertHeaderLocalized_en_GB"|"alertHeaderLocalized_en_US"|"alertHeaderLocalized_es_ES"|"alertHeaderLocalized_fr_FR"|"alertHeaderLocalized_ja_JP"|"alertHeaderLocalized_ko_KR"|"alertHeaderLocalized_localized"|"alertHeaderLocalized_nl_NL"|"alertHeaderLocalized_pt_BR"|"alertHeaderLocalized_pt_PT"|"alertHeaderLocalized_ru_RU"|"alertHeaderLocalized_zh_CN"|"alertHeaderLocalized_zh_TW"|"createdBy"|"createdDateTime"|"effectiveStatus"|"externalCode"|"externalName"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemCreatedBy"|"mdfSystemCreatedDate"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemLastModifiedBy"|"mdfSystemLastModifiedDate"|"mdfSystemLastModifiedDateWithTZ"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListAutoDelegateConfigsQueries
Represents the Queries record for the operation: listAutoDelegateConfigs
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"|"delegator"|"delegator 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? ("*"|"autoDelegateDetails"|"wfRequestNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("createdBy"|"createdDate"|"createdDateTime"|"delegator"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListAutoDelegateDetailsQueries
Represents the Queries record for the operation: listAutoDelegateDetails
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? ("AutoDelegateConfig_delegator"|"AutoDelegateConfig_delegator desc"|"alwaysOn"|"alwaysOn desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"delegatee"|"delegatee 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"|"status"|"status desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("AutoDelegateConfig_delegator"|"alwaysOn"|"createdBy"|"createdDate"|"createdDateTime"|"delegatee"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"status")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListEmpWfRequestsQueries
Represents the Queries record for the operation: listEmpWfRequests
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? ("actionType"|"actionType desc"|"effectiveDate"|"effectiveDate desc"|"empWfRequestId"|"empWfRequestId desc"|"entityType"|"entityType desc"|"eventReason"|"eventReason desc"|"requestType"|"requestType desc"|"subjectId"|"subjectId desc"|"wfConfig"|"wfConfig desc"|"wfRequestId"|"wfRequestId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("actionType"|"effectiveDate"|"empWfRequestId"|"entityType"|"eventReason"|"requestType"|"subjectId"|"wfConfig"|"wfRequestId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListMyPendingWorkflowsQueries
Represents the Queries record for the operation: listMyPendingWorkflows
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? ("desc"|"desc desc"|"subject"|"subject desc"|"url"|"url desc"|"wfRequestId"|"wfRequestId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("desc"|"subject"|"url"|"wfRequestId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListWfRequestCommentssQueries
Represents the Queries record for the operation: listWfRequestCommentss
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? ("actionType"|"actionType desc"|"comments"|"comments desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"userId"|"userId desc"|"wfRequestCommentId"|"wfRequestCommentId desc"|"wfRequestId"|"wfRequestId desc"|"wfRequestStepId"|"wfRequestStepId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("actionType"|"comments"|"createdBy"|"createdDateTime"|"createdOn"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"userId"|"wfRequestCommentId"|"wfRequestId"|"wfRequestStepId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListWfRequestParticipatorsQueries
Represents the Queries record for the operation: listWfRequestParticipators
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? ("actorType"|"actorType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"ownerId"|"ownerId desc"|"participatorType"|"participatorType desc"|"processingOrder"|"processingOrder desc"|"relatedTo"|"relatedTo desc"|"roleId"|"roleId desc"|"wfRequestId"|"wfRequestId desc"|"wfRequestParticipatorId"|"wfRequestParticipatorId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("actorType"|"createdBy"|"createdDateTime"|"createdOn"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"ownerId"|"participatorType"|"processingOrder"|"relatedTo"|"roleId"|"wfRequestId"|"wfRequestParticipatorId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListWfRequestsQueries
Represents the Queries record for the operation: listWfRequests
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"|"createdOn"|"createdOn desc"|"currentStepNum"|"currentStepNum desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"module"|"module desc"|"parentWfRequestId"|"parentWfRequestId desc"|"reminderSentDate"|"reminderSentDate desc"|"status"|"status desc"|"totalSteps"|"totalSteps desc"|"url"|"url desc"|"wfRequestId"|"wfRequestId desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"empWfRequestNav"|"parentWfRequestNav"|"wfRequestCommentsNav"|"wfRequestParticipatorNav"|"wfRequestStepNav"|"workflowAllowedActionListNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("createdBy"|"createdDateTime"|"createdOn"|"currentStepNum"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"module"|"parentWfRequestId"|"reminderSentDate"|"status"|"totalSteps"|"url"|"wfRequestId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListWfRequestStepsQueries
Represents the Queries record for the operation: listWfRequestSteps
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? ("actionType"|"actionType desc"|"approverType"|"approverType desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"ownerId"|"ownerId desc"|"processedBy"|"processedBy desc"|"relatedTo"|"relatedTo desc"|"role"|"role desc"|"status"|"status desc"|"stepNum"|"stepNum desc"|"wfRequestId"|"wfRequestId desc"|"wfRequestStepId"|"wfRequestStepId desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"wfRequestNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("actionType"|"approverType"|"createdBy"|"createdDateTime"|"createdOn"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"ownerId"|"processedBy"|"relatedTo"|"role"|"status"|"stepNum"|"wfRequestId"|"wfRequestStepId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ListWorkflowAllowedActionListsQueries
Represents the Queries record for the operation: listWorkflowAllowedActionLists
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? ("allowApprove"|"allowApprove desc"|"allowDelegateDecline"|"allowDelegateDecline desc"|"allowDelegateGrant"|"allowDelegateGrant desc"|"allowDelegateRevoke"|"allowDelegateRevoke desc"|"allowPostComment"|"allowPostComment desc"|"allowReject"|"allowReject desc"|"allowResubmit"|"allowResubmit desc"|"allowSendback"|"allowSendback desc"|"allowUpdateRequest"|"allowUpdateRequest desc"|"allowWithdraw"|"allowWithdraw desc"|"wfRequestId"|"wfRequestId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("allowApprove"|"allowDelegateDecline"|"allowDelegateGrant"|"allowDelegateRevoke"|"allowPostComment"|"allowReject"|"allowResubmit"|"allowSendback"|"allowUpdateRequest"|"allowWithdraw"|"wfRequestId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecworkflow: ModifiedAlertMessage
Fields
- d? AlertMessage -
sap.successfactors.ecworkflow: ModifiedAutoDelegateDetail
Fields
- d? AutoDelegateDetail -
sap.successfactors.ecworkflow: MyPendingWorkflow
Fields
- wfRequestId? string -
sap.successfactors.ecworkflow: MyPendingWorkflow_1
Fields
- d? MyPendingWorkflow -
sap.successfactors.ecworkflow: PendDataGroupBean
Fields
- changeSet? EssMssWorkflowAttributeBean[] -
- inlineGroups? PendDataInlineGroupBean[] -
- subChangeSetGroups? EssMssWorkflowSubAttributeBean[] -
- title? string -
sap.successfactors.ecworkflow: PendDataInlineGroupBean
Fields
- changeSet? EssMssWorkflowAttributeBean[] -
- subChangeSetGroups? EssMssWorkflowSubAttributeBean[] -
- title? string -
sap.successfactors.ecworkflow: PendingDataAttributeBean
Fields
- entityName? string -
- fieldId? string -
- fieldName? string -
- id? string -
- label? string -
- newValue? string -
- oldValue? string -
- payComponents? ChangeDataBean[] -
- 'type? string -
sap.successfactors.ecworkflow: RelatedCollectionSFOData_AutoDelegateDetail
Fields
- results? AutoDelegateDetail[] -
sap.successfactors.ecworkflow: RelatedCollectionSFOData_WfRequest
Fields
- results? WfRequest[] -
sap.successfactors.ecworkflow: RelatedCollectionSFOData_WfRequestActionResponse
Fields
- results? WfRequestActionResponse[] -
sap.successfactors.ecworkflow: RelatedCollectionSFOData_WfRequestComments
Fields
- results? WfRequestComments[] -
sap.successfactors.ecworkflow: RelatedCollectionSFOData_WfRequestParticipator
Fields
- results? WfRequestParticipator[] -
sap.successfactors.ecworkflow: RelatedCollectionSFOData_WfRequestPendingDataResponse
Fields
- results? WfRequestPendingDataResponse[] -
sap.successfactors.ecworkflow: RelatedCollectionSFOData_WfRequestStep
Fields
- results? WfRequestStep[] -
sap.successfactors.ecworkflow: RelatedCollectionSFOData_WorkflowAllowedActionList
Fields
- results? WorkflowAllowedActionList[] -
sap.successfactors.ecworkflow: Result
Fields
sap.successfactors.ecworkflow: Result_1
Fields
sap.successfactors.ecworkflow: WfRequest
Fields
- wfRequestId? string -
- empWfRequestNav? EmpWfRequest -
- parentWfRequestNav? WfRequest -
- wfRequestCommentsNav? RelatedCollectionSFOData_WfRequestComments -
- wfRequestParticipatorNav? RelatedCollectionSFOData_WfRequestParticipator -
- wfRequestStepNav? RelatedCollectionSFOData_WfRequestStep -
- workflowAllowedActionListNav? RelatedCollectionSFOData_WorkflowAllowedActionList -
sap.successfactors.ecworkflow: WfRequest_1
Fields
- d? WfRequest -
sap.successfactors.ecworkflow: WfRequestActionResponse
sap.successfactors.ecworkflow: WfRequestComments
Fields
- wfRequestCommentId? string -
sap.successfactors.ecworkflow: WfRequestComments_1
Fields
- d? WfRequestComments -
sap.successfactors.ecworkflow: WfRequestParticipator
Fields
- wfRequestParticipatorId? string -
sap.successfactors.ecworkflow: WfRequestParticipator_1
Fields
sap.successfactors.ecworkflow: WfRequestPendingDataResponse
Fields
- wfRequestId? int -
- workflowAttributeGroups? EssMssWorkflowAttributeGroupBean[] -
sap.successfactors.ecworkflow: WfRequestStep
Fields
- wfRequestStepId? string -
- wfRequestNav? WfRequest -
sap.successfactors.ecworkflow: WfRequestStep_1
Fields
- d? WfRequestStep -
sap.successfactors.ecworkflow: WorkflowAllowedActionList
Fields
- wfRequestId? string -
sap.successfactors.ecworkflow: WorkflowAllowedActionList_1
Fields
sap.successfactors.ecworkflow: Wrapper
Fields
sap.successfactors.ecworkflow: Wrapper_1
Fields
sap.successfactors.ecworkflow: Wrapper_2
Fields
sap.successfactors.ecworkflow: Wrapper_3
Fields
sap.successfactors.ecworkflow: Wrapper_4
Fields
sap.successfactors.ecworkflow: Wrapper_5
Fields
sap.successfactors.ecworkflow: Wrapper_6
Fields
sap.successfactors.ecworkflow: Wrapper_8
Fields
sap.successfactors.ecworkflow: Wrapper_9
Fields
Import
import ballerinax/sap.successfactors.ecworkflow;Metadata
Released date: 7 days ago
Version: 1.1.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.13.0
GraalVM compatible: Yes
Pull count
Total: 2
Current verison: 1
Weekly downloads
Keywords
Area/ERP & Business Operations
Business Management/HCM
Cost/Paid
Vendor/SAP
SuccessFactors
Employee Central
Contributors