sap.successfactors.ecemployeeprofile
Module sap.successfactors.ecemployeeprofile
API
Definitions
ballerinax/sap.successfactors.ecemployeeprofile 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.ecemployeeprofile package provides APIs that enable seamless integration with the SAP SuccessFactors Employee Profile API v1.0. The service allows to maintain the general background information of an employee, including education and outside work experiences.
Key Features
- Manage employee profile information including personal details
- Access education background and work experience records
- Query background information across multiple categories
- 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.ecemployeeprofile connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
Import the sap.successfactors.ecemployeeprofile module.
import ballerinax/sap.successfactors.ecemployeeprofile as ecprofile;
Step 2: Instantiate a new connector
Use the hostname and credentials to initiate a client.
configurable string hostname = ?; configurable string username = ?; configurable string password = ?; ecprofile:Client ecprofileClient = check new ( { auth: { username, password } }, hostname );
Step 3: Invoke the connector operation
Now, utilize the available connector operations.
ecprofile:BackgroundEducationWrapper backgroundEducation = check ecprofileClient->getBackgroundEducation();
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.ecemployeeprofile: Client
You can use these APIs to maintain the general background information of an employee, including education and outside work experiences.
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 -
listBackgroundCommunities
function listBackgroundCommunities(map<string|string[]> headers, *ListBackgroundCommunitiesQueries queries) returns Wrapper|errorGet entities from Background_Community
Parameters
- queries *ListBackgroundCommunitiesQueries - Queries to be sent with the request
createBackgroundCommunity
function createBackgroundCommunity(Background_Community payload, map<string|string[]> headers) returns CreatedBackground_Community|errorAdd new entity to Background_Community
Parameters
- payload Background_Community - New entity
Return Type
- CreatedBackground_Community|error - Created entity
getBackgroundCommunity
function getBackgroundCommunity(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundCommunityQueries queries) returns Background_Community_1|errorGet entity from Background_Community by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundCommunityQueries - Queries to be sent with the request
Return Type
- Background_Community_1|error - Retrieved entity
updateBackgroundCommunity
function updateBackgroundCommunity(int backgroundElementId, string userId, ModifiedBackground_Community payload, map<string|string[]> headers) returns error?Update entity in Background_Community
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Community - New property values
Return Type
- error? - Success
deleteBackgroundCommunity
function deleteBackgroundCommunity(int backgroundElementId, string userId, DeleteBackgroundCommunityHeaders headers) returns error?Delete entity from Background_Community
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundCommunityHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundCoursess
function listBackgroundCoursess(map<string|string[]> headers, *ListBackgroundCoursessQueries queries) returns Wrapper_1|errorGet entities from Background_Courses
Parameters
- queries *ListBackgroundCoursessQueries - Queries to be sent with the request
createBackgroundCourses
function createBackgroundCourses(Background_Courses payload, map<string|string[]> headers) returns CreatedBackground_Courses|errorAdd new entity to Background_Courses
Parameters
- payload Background_Courses - New entity
Return Type
- CreatedBackground_Courses|error - Created entity
getBackgroundCourses
function getBackgroundCourses(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundCoursesQueries queries) returns Background_Courses_1|errorGet entity from Background_Courses by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundCoursesQueries - Queries to be sent with the request
Return Type
- Background_Courses_1|error - Retrieved entity
updateBackgroundCourses
function updateBackgroundCourses(int backgroundElementId, string userId, ModifiedBackground_Courses payload, map<string|string[]> headers) returns error?Update entity in Background_Courses
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Courses - New property values
Return Type
- error? - Success
deleteBackgroundCourses
function deleteBackgroundCourses(int backgroundElementId, string userId, DeleteBackgroundCoursesHeaders headers) returns error?Delete entity from Background_Courses
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundCoursesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundBenefitselections
function listBackgroundBenefitselections(map<string|string[]> headers, *ListBackgroundBenefitselectionsQueries queries) returns Wrapper_2|errorGet entities from Background_Benefitselection
Parameters
- queries *ListBackgroundBenefitselectionsQueries - Queries to be sent with the request
createBackgroundBenefitselection
function createBackgroundBenefitselection(Background_Benefitselection payload, map<string|string[]> headers) returns CreatedBackground_Benefitselection|errorAdd new entity to Background_Benefitselection
Parameters
- payload Background_Benefitselection - New entity
Return Type
- CreatedBackground_Benefitselection|error - Created entity
getBackgroundBenefitselection
function getBackgroundBenefitselection(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundBenefitselectionQueries queries) returns BackgroundBenefitselection|errorGet entity from Background_Benefitselection by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundBenefitselectionQueries - Queries to be sent with the request
Return Type
- BackgroundBenefitselection|error - Retrieved entity
updateBackgroundBenefitselection
function updateBackgroundBenefitselection(int backgroundElementId, string userId, ModifiedBackground_Benefitselection payload, map<string|string[]> headers) returns error?Update entity in Background_Benefitselection
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Benefitselection - New property values
Return Type
- error? - Success
deleteBackgroundBenefitselection
function deleteBackgroundBenefitselection(int backgroundElementId, string userId, DeleteBackgroundBenefitselectionHeaders headers) returns error?Delete entity from Background_Benefitselection
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundBenefitselectionHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundOutsideWorkExperiences
function listBackgroundOutsideWorkExperiences(map<string|string[]> headers, *ListBackgroundOutsideWorkExperiencesQueries queries) returns Wrapper_3|errorGet entities from Background_OutsideWorkExperience
Parameters
- queries *ListBackgroundOutsideWorkExperiencesQueries - Queries to be sent with the request
createBackgroundOutsideWorkExperience
function createBackgroundOutsideWorkExperience(Background_OutsideWorkExperience payload, map<string|string[]> headers) returns CreatedBackground_OutsideWorkExperience|errorAdd new entity to Background_OutsideWorkExperience
Parameters
- payload Background_OutsideWorkExperience - New entity
Return Type
- CreatedBackground_OutsideWorkExperience|error - Created entity
getBackgroundOutsideWorkExperience
function getBackgroundOutsideWorkExperience(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundOutsideWorkExperienceQueries queries) returns Background_OutsideWorkExperience_1|errorGet entity from Background_OutsideWorkExperience by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundOutsideWorkExperienceQueries - Queries to be sent with the request
Return Type
- Background_OutsideWorkExperience_1|error - Retrieved entity
updateBackgroundOutsideWorkExperience
function updateBackgroundOutsideWorkExperience(int backgroundElementId, string userId, ModifiedBackground_OutsideWorkExperience payload, map<string|string[]> headers) returns error?Update entity in Background_OutsideWorkExperience
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_OutsideWorkExperience - New property values
Return Type
- error? - Success
deleteBackgroundOutsideWorkExperience
function deleteBackgroundOutsideWorkExperience(int backgroundElementId, string userId, DeleteBackgroundOutsideWorkExperienceHeaders headers) returns error?Delete entity from Background_OutsideWorkExperience
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundOutsideWorkExperienceHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundPromotabilities
function listBackgroundPromotabilities(map<string|string[]> headers, *ListBackgroundPromotabilitiesQueries queries) returns Wrapper_4|errorGet entities from Background_Promotability
Parameters
- queries *ListBackgroundPromotabilitiesQueries - Queries to be sent with the request
createBackgroundPromotability
function createBackgroundPromotability(Background_Promotability payload, map<string|string[]> headers) returns CreatedBackground_Promotability|errorAdd new entity to Background_Promotability
Parameters
- payload Background_Promotability - New entity
Return Type
- CreatedBackground_Promotability|error - Created entity
getBackgroundPromotability
function getBackgroundPromotability(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundPromotabilityQueries queries) returns Background_Promotability_1|errorGet entity from Background_Promotability by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundPromotabilityQueries - Queries to be sent with the request
Return Type
- Background_Promotability_1|error - Retrieved entity
updateBackgroundPromotability
function updateBackgroundPromotability(int backgroundElementId, string userId, ModifiedBackground_Promotability payload, map<string|string[]> headers) returns error?Update entity in Background_Promotability
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Promotability - New property values
Return Type
- error? - Success
deleteBackgroundPromotability
function deleteBackgroundPromotability(int backgroundElementId, string userId, DeleteBackgroundPromotabilityHeaders headers) returns error?Delete entity from Background_Promotability
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundPromotabilityHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundFsaelections
function listBackgroundFsaelections(map<string|string[]> headers, *ListBackgroundFsaelectionsQueries queries) returns Wrapper_5|errorGet entities from Background_Fsaelection
Parameters
- queries *ListBackgroundFsaelectionsQueries - Queries to be sent with the request
createBackgroundFsaelection
function createBackgroundFsaelection(Background_Fsaelection payload, map<string|string[]> headers) returns CreatedBackground_Fsaelection|errorAdd new entity to Background_Fsaelection
Parameters
- payload Background_Fsaelection - New entity
Return Type
- CreatedBackground_Fsaelection|error - Created entity
getBackgroundFsaelection
function getBackgroundFsaelection(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundFsaelectionQueries queries) returns Background_Fsaelection_1|errorGet entity from Background_Fsaelection by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundFsaelectionQueries - Queries to be sent with the request
Return Type
- Background_Fsaelection_1|error - Retrieved entity
updateBackgroundFsaelection
function updateBackgroundFsaelection(int backgroundElementId, string userId, ModifiedBackground_Fsaelection payload, map<string|string[]> headers) returns error?Update entity in Background_Fsaelection
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Fsaelection - New property values
Return Type
- error? - Success
deleteBackgroundFsaelection
function deleteBackgroundFsaelection(int backgroundElementId, string userId, DeleteBackgroundFsaelectionHeaders headers) returns error?Delete entity from Background_Fsaelection
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundFsaelectionHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundCompensations
function listBackgroundCompensations(map<string|string[]> headers, *ListBackgroundCompensationsQueries queries) returns Wrapper_6|errorGet entities from Background_Compensation
Parameters
- queries *ListBackgroundCompensationsQueries - Queries to be sent with the request
createBackgroundCompensation
function createBackgroundCompensation(Background_Compensation payload, map<string|string[]> headers) returns CreatedBackground_Compensation|errorAdd new entity to Background_Compensation
Parameters
- payload Background_Compensation - New entity
Return Type
- CreatedBackground_Compensation|error - Created entity
getBackgroundCompensation
function getBackgroundCompensation(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundCompensationQueries queries) returns Background_Compensation_1|errorGet entity from Background_Compensation by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundCompensationQueries - Queries to be sent with the request
Return Type
- Background_Compensation_1|error - Retrieved entity
updateBackgroundCompensation
function updateBackgroundCompensation(int backgroundElementId, string userId, ModifiedBackground_Compensation payload, map<string|string[]> headers) returns error?Update entity in Background_Compensation
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Compensation - New property values
Return Type
- error? - Success
deleteBackgroundCompensation
function deleteBackgroundCompensation(int backgroundElementId, string userId, DeleteBackgroundCompensationHeaders headers) returns error?Delete entity from Background_Compensation
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundCompensationHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundMembershipss
function listBackgroundMembershipss(map<string|string[]> headers, *ListBackgroundMembershipssQueries queries) returns Wrapper_7|errorGet entities from Background_Memberships
Parameters
- queries *ListBackgroundMembershipssQueries - Queries to be sent with the request
createBackgroundMemberships
function createBackgroundMemberships(Background_Memberships payload, map<string|string[]> headers) returns CreatedBackground_Memberships|errorAdd new entity to Background_Memberships
Parameters
- payload Background_Memberships - New entity
Return Type
- CreatedBackground_Memberships|error - Created entity
getBackgroundMemberships
function getBackgroundMemberships(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundMembershipsQueries queries) returns Background_Memberships_1|errorGet entity from Background_Memberships by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundMembershipsQueries - Queries to be sent with the request
Return Type
- Background_Memberships_1|error - Retrieved entity
updateBackgroundMemberships
function updateBackgroundMemberships(int backgroundElementId, string userId, ModifiedBackground_Memberships payload, map<string|string[]> headers) returns error?Update entity in Background_Memberships
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Memberships - New property values
Return Type
- error? - Success
deleteBackgroundMemberships
function deleteBackgroundMemberships(int backgroundElementId, string userId, DeleteBackgroundMembershipsHeaders headers) returns error?Delete entity from Background_Memberships
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundMembershipsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundDocumentss
function listBackgroundDocumentss(map<string|string[]> headers, *ListBackgroundDocumentssQueries queries) returns Wrapper_8|errorGet entities from Background_Documents
Parameters
- queries *ListBackgroundDocumentssQueries - Queries to be sent with the request
createBackgroundDocuments
function createBackgroundDocuments(Background_Documents payload, map<string|string[]> headers) returns CreatedBackground_Documents|errorAdd new entity to Background_Documents
Parameters
- payload Background_Documents - New entity
Return Type
- CreatedBackground_Documents|error - Created entity
getBackgroundDocuments
function getBackgroundDocuments(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundDocumentsQueries queries) returns Background_Documents_1|errorGet entity from Background_Documents by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundDocumentsQueries - Queries to be sent with the request
Return Type
- Background_Documents_1|error - Retrieved entity
updateBackgroundDocuments
function updateBackgroundDocuments(int backgroundElementId, string userId, ModifiedBackground_Documents payload, map<string|string[]> headers) returns error?Update entity in Background_Documents
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Documents - New property values
Return Type
- error? - Success
deleteBackgroundDocuments
function deleteBackgroundDocuments(int backgroundElementId, string userId, DeleteBackgroundDocumentsHeaders headers) returns error?Delete entity from Background_Documents
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundDocumentsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundFuncExperiences
function listBackgroundFuncExperiences(map<string|string[]> headers, *ListBackgroundFuncExperiencesQueries queries) returns Wrapper_9|errorGet entities from Background_FuncExperience
Parameters
- queries *ListBackgroundFuncExperiencesQueries - Queries to be sent with the request
createBackgroundFuncExperience
function createBackgroundFuncExperience(Background_FuncExperience payload, map<string|string[]> headers) returns CreatedBackground_FuncExperience|errorAdd new entity to Background_FuncExperience
Parameters
- payload Background_FuncExperience - New entity
Return Type
- CreatedBackground_FuncExperience|error - Created entity
getBackgroundFuncExperience
function getBackgroundFuncExperience(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundFuncExperienceQueries queries) returns Background_FuncExperience_1|errorGet entity from Background_FuncExperience by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundFuncExperienceQueries - Queries to be sent with the request
Return Type
- Background_FuncExperience_1|error - Retrieved entity
updateBackgroundFuncExperience
function updateBackgroundFuncExperience(int backgroundElementId, string userId, ModifiedBackground_FuncExperience payload, map<string|string[]> headers) returns error?Update entity in Background_FuncExperience
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_FuncExperience - New property values
Return Type
- error? - Success
deleteBackgroundFuncExperience
function deleteBackgroundFuncExperience(int backgroundElementId, string userId, DeleteBackgroundFuncExperienceHeaders headers) returns error?Delete entity from Background_FuncExperience
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundFuncExperienceHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundTalentPools
function listBackgroundTalentPools(map<string|string[]> headers, *ListBackgroundTalentPoolsQueries queries) returns Wrapper_10|errorGet entities from Background_TalentPool
Parameters
- queries *ListBackgroundTalentPoolsQueries - Queries to be sent with the request
Return Type
- Wrapper_10|error - Retrieved entities
createBackgroundTalentPool
function createBackgroundTalentPool(Background_TalentPool payload, map<string|string[]> headers) returns CreatedBackground_TalentPool|errorAdd new entity to Background_TalentPool
Parameters
- payload Background_TalentPool - New entity
Return Type
- CreatedBackground_TalentPool|error - Created entity
getBackgroundTalentPool
function getBackgroundTalentPool(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundTalentPoolQueries queries) returns Background_TalentPool_1|errorGet entity from Background_TalentPool by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundTalentPoolQueries - Queries to be sent with the request
Return Type
- Background_TalentPool_1|error - Retrieved entity
updateBackgroundTalentPool
function updateBackgroundTalentPool(int backgroundElementId, string userId, ModifiedBackground_TalentPool payload, map<string|string[]> headers) returns error?Update entity in Background_TalentPool
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_TalentPool - New property values
Return Type
- error? - Success
deleteBackgroundTalentPool
function deleteBackgroundTalentPool(int backgroundElementId, string userId, DeleteBackgroundTalentPoolHeaders headers) returns error?Delete entity from Background_TalentPool
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundTalentPoolHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listUserBadgess
function listUserBadgess(map<string|string[]> headers, *ListUserBadgessQueries queries) returns Wrapper_11|errorGet entities from UserBadges
Parameters
- queries *ListUserBadgessQueries - Queries to be sent with the request
Return Type
- Wrapper_11|error - Retrieved entities
createUserBadges
function createUserBadges(UserBadges payload, map<string|string[]> headers) returns CreatedUserBadges|errorAdd new entity to UserBadges
Parameters
- payload UserBadges - New entity
Return Type
- CreatedUserBadges|error - Created entity
getUserBadges
function getUserBadges(Signed32 badgeInstanceId, string userId, map<string|string[]> headers, *GetUserBadgesQueries queries) returns UserBadges_1|errorGet entity from UserBadges by key
Parameters
- badgeInstanceId Signed32 - key: badgeInstanceId
- userId string - key: userId
- queries *GetUserBadgesQueries - Queries to be sent with the request
Return Type
- UserBadges_1|error - Retrieved entity
deleteUserBadges
function deleteUserBadges(Signed32 badgeInstanceId, string userId, DeleteUserBadgesHeaders headers) returns error?Delete entity from UserBadges
Parameters
- badgeInstanceId Signed32 - key: badgeInstanceId
- userId string - key: userId
- headers DeleteUserBadgesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundGoogledocss
function listBackgroundGoogledocss(map<string|string[]> headers, *ListBackgroundGoogledocssQueries queries) returns Wrapper_12|errorGet entities from Background_Googledocs
Parameters
- queries *ListBackgroundGoogledocssQueries - Queries to be sent with the request
Return Type
- Wrapper_12|error - Retrieved entities
createBackgroundGoogledocs
function createBackgroundGoogledocs(Background_Googledocs payload, map<string|string[]> headers) returns CreatedBackground_Googledocs|errorAdd new entity to Background_Googledocs
Parameters
- payload Background_Googledocs - New entity
Return Type
- CreatedBackground_Googledocs|error - Created entity
getBackgroundGoogledocs
function getBackgroundGoogledocs(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundGoogledocsQueries queries) returns Background_Googledocs_1|errorGet entity from Background_Googledocs by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundGoogledocsQueries - Queries to be sent with the request
Return Type
- Background_Googledocs_1|error - Retrieved entity
updateBackgroundGoogledocs
function updateBackgroundGoogledocs(int backgroundElementId, string userId, ModifiedBackground_Googledocs payload, map<string|string[]> headers) returns error?Update entity in Background_Googledocs
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Googledocs - New property values
Return Type
- error? - Success
deleteBackgroundGoogledocs
function deleteBackgroundGoogledocs(int backgroundElementId, string userId, DeleteBackgroundGoogledocsHeaders headers) returns error?Delete entity from Background_Googledocs
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundGoogledocsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundAwardss
function listBackgroundAwardss(map<string|string[]> headers, *ListBackgroundAwardssQueries queries) returns Wrapper_13|errorGet entities from Background_Awards
Parameters
- queries *ListBackgroundAwardssQueries - Queries to be sent with the request
Return Type
- Wrapper_13|error - Retrieved entities
createBackgroundAwards
function createBackgroundAwards(Background_Awards payload, map<string|string[]> headers) returns CreatedBackground_Awards|errorAdd new entity to Background_Awards
Parameters
- payload Background_Awards - New entity
Return Type
- CreatedBackground_Awards|error - Created entity
getBackgroundAwards
function getBackgroundAwards(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundAwardsQueries queries) returns Background_Awards_1|errorGet entity from Background_Awards by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundAwardsQueries - Queries to be sent with the request
Return Type
- Background_Awards_1|error - Retrieved entity
updateBackgroundAwards
function updateBackgroundAwards(int backgroundElementId, string userId, ModifiedBackground_Awards payload, map<string|string[]> headers) returns error?Update entity in Background_Awards
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Awards - New property values
Return Type
- error? - Success
deleteBackgroundAwards
function deleteBackgroundAwards(int backgroundElementId, string userId, DeleteBackgroundAwardsHeaders headers) returns error?Delete entity from Background_Awards
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundAwardsHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundEducations
function listBackgroundEducations(map<string|string[]> headers, *ListBackgroundEducationsQueries queries) returns Wrapper_14|errorGet entities from Background_Education
Parameters
- queries *ListBackgroundEducationsQueries - Queries to be sent with the request
Return Type
- Wrapper_14|error - Retrieved entities
createBackgroundEducation
function createBackgroundEducation(Background_Education payload, map<string|string[]> headers) returns CreatedBackground_Education|errorAdd new entity to Background_Education
Parameters
- payload Background_Education - New entity
Return Type
- CreatedBackground_Education|error - Created entity
getBackgroundEducation
function getBackgroundEducation(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundEducationQueries queries) returns Background_Education_1|errorGet entity from Background_Education by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundEducationQueries - Queries to be sent with the request
Return Type
- Background_Education_1|error - Retrieved entity
updateBackgroundEducation
function updateBackgroundEducation(int backgroundElementId, string userId, ModifiedBackground_Education payload, map<string|string[]> headers) returns error?Update entity in Background_Education
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Education - New property values
Return Type
- error? - Success
deleteBackgroundEducation
function deleteBackgroundEducation(int backgroundElementId, string userId, DeleteBackgroundEducationHeaders headers) returns error?Delete entity from Background_Education
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundEducationHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundMobilities
function listBackgroundMobilities(map<string|string[]> headers, *ListBackgroundMobilitiesQueries queries) returns Wrapper_15|errorGet entities from Background_Mobility
Parameters
- queries *ListBackgroundMobilitiesQueries - Queries to be sent with the request
Return Type
- Wrapper_15|error - Retrieved entities
createBackgroundMobility
function createBackgroundMobility(Background_Mobility payload, map<string|string[]> headers) returns CreatedBackground_Mobility|errorAdd new entity to Background_Mobility
Parameters
- payload Background_Mobility - New entity
Return Type
- CreatedBackground_Mobility|error - Created entity
getBackgroundMobility
function getBackgroundMobility(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundMobilityQueries queries) returns Background_Mobility_1|errorGet entity from Background_Mobility by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundMobilityQueries - Queries to be sent with the request
Return Type
- Background_Mobility_1|error - Retrieved entity
updateBackgroundMobility
function updateBackgroundMobility(int backgroundElementId, string userId, ModifiedBackground_Mobility payload, map<string|string[]> headers) returns error?Update entity in Background_Mobility
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Mobility - New property values
Return Type
- error? - Success
deleteBackgroundMobility
function deleteBackgroundMobility(int backgroundElementId, string userId, DeleteBackgroundMobilityHeaders headers) returns error?Delete entity from Background_Mobility
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundMobilityHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundVarPayEmpHistData
function listBackgroundVarPayEmpHistData(map<string|string[]> headers, *ListBackgroundVarPayEmpHistDataQueries queries) returns Wrapper_16|errorGet entities from Background_VarPayEmpHistData
Parameters
- queries *ListBackgroundVarPayEmpHistDataQueries - Queries to be sent with the request
Return Type
- Wrapper_16|error - Retrieved entities
createBackgroundVarPayEmpHistData
function createBackgroundVarPayEmpHistData(Background_VarPayEmpHistData payload, map<string|string[]> headers) returns CreatedBackground_VarPayEmpHistData|errorAdd new entity to Background_VarPayEmpHistData
Parameters
- payload Background_VarPayEmpHistData - New entity
Return Type
- CreatedBackground_VarPayEmpHistData|error - Created entity
getBackgroundVarPayEmpHistData
function getBackgroundVarPayEmpHistData(int backgroundElementId, map<string|string[]> headers, *GetBackgroundVarPayEmpHistDataQueries queries) returns Background_VarPayEmpHistData_1|errorGet entity from Background_VarPayEmpHistData by key
Parameters
- backgroundElementId int - key: backgroundElementId
- queries *GetBackgroundVarPayEmpHistDataQueries - Queries to be sent with the request
Return Type
- Background_VarPayEmpHistData_1|error - Retrieved entity
updateBackgroundVarPayEmpHistData
function updateBackgroundVarPayEmpHistData(int backgroundElementId, ModifiedBackground_VarPayEmpHistData payload, map<string|string[]> headers) returns error?Update entity in Background_VarPayEmpHistData
Parameters
- backgroundElementId int - key: backgroundElementId
- payload ModifiedBackground_VarPayEmpHistData - New property values
Return Type
- error? - Success
deleteBackgroundVarPayEmpHistData
function deleteBackgroundVarPayEmpHistData(int backgroundElementId, DeleteBackgroundVarPayEmpHistDataHeaders headers) returns error?Delete entity from Background_VarPayEmpHistData
Parameters
- backgroundElementId int - key: backgroundElementId
- headers DeleteBackgroundVarPayEmpHistDataHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundInsideWorkExperiences
function listBackgroundInsideWorkExperiences(map<string|string[]> headers, *ListBackgroundInsideWorkExperiencesQueries queries) returns Wrapper_17|errorGet entities from Background_InsideWorkExperience
Parameters
- queries *ListBackgroundInsideWorkExperiencesQueries - Queries to be sent with the request
Return Type
- Wrapper_17|error - Retrieved entities
createBackgroundInsideWorkExperience
function createBackgroundInsideWorkExperience(Background_InsideWorkExperience payload, map<string|string[]> headers) returns CreatedBackground_InsideWorkExperience|errorAdd new entity to Background_InsideWorkExperience
Parameters
- payload Background_InsideWorkExperience - New entity
Return Type
- CreatedBackground_InsideWorkExperience|error - Created entity
getBackgroundInsideWorkExperience
function getBackgroundInsideWorkExperience(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundInsideWorkExperienceQueries queries) returns Background_InsideWorkExperience_1|errorGet entity from Background_InsideWorkExperience by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundInsideWorkExperienceQueries - Queries to be sent with the request
Return Type
- Background_InsideWorkExperience_1|error - Retrieved entity
updateBackgroundInsideWorkExperience
function updateBackgroundInsideWorkExperience(int backgroundElementId, string userId, ModifiedBackground_InsideWorkExperience payload, map<string|string[]> headers) returns error?Update entity in Background_InsideWorkExperience
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_InsideWorkExperience - New property values
Return Type
- error? - Success
deleteBackgroundInsideWorkExperience
function deleteBackgroundInsideWorkExperience(int backgroundElementId, string userId, DeleteBackgroundInsideWorkExperienceHeaders headers) returns error?Delete entity from Background_InsideWorkExperience
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundInsideWorkExperienceHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundPreferredNextMoves
function listBackgroundPreferredNextMoves(map<string|string[]> headers, *ListBackgroundPreferredNextMovesQueries queries) returns Wrapper_18|errorGet entities from Background_PreferredNextMove
Parameters
- queries *ListBackgroundPreferredNextMovesQueries - Queries to be sent with the request
Return Type
- Wrapper_18|error - Retrieved entities
createBackgroundPreferredNextMove
function createBackgroundPreferredNextMove(Background_PreferredNextMove payload, map<string|string[]> headers) returns CreatedBackground_PreferredNextMove|errorAdd new entity to Background_PreferredNextMove
Parameters
- payload Background_PreferredNextMove - New entity
Return Type
- CreatedBackground_PreferredNextMove|error - Created entity
getBackgroundPreferredNextMove
function getBackgroundPreferredNextMove(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundPreferredNextMoveQueries queries) returns Background_PreferredNextMove_1|errorGet entity from Background_PreferredNextMove by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundPreferredNextMoveQueries - Queries to be sent with the request
Return Type
- Background_PreferredNextMove_1|error - Retrieved entity
updateBackgroundPreferredNextMove
function updateBackgroundPreferredNextMove(int backgroundElementId, string userId, ModifiedBackground_PreferredNextMove payload, map<string|string[]> headers) returns error?Update entity in Background_PreferredNextMove
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_PreferredNextMove - New property values
Return Type
- error? - Success
deleteBackgroundPreferredNextMove
function deleteBackgroundPreferredNextMove(int backgroundElementId, string userId, DeleteBackgroundPreferredNextMoveHeaders headers) returns error?Delete entity from Background_PreferredNextMove
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundPreferredNextMoveHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBadgeTemplatess
function listBadgeTemplatess(map<string|string[]> headers, *ListBadgeTemplatessQueries queries) returns Wrapper_19|errorGet entities from BadgeTemplates
Parameters
- queries *ListBadgeTemplatessQueries - Queries to be sent with the request
Return Type
- Wrapper_19|error - Retrieved entities
getBadgeTemplates
function getBadgeTemplates(Signed32 badgeId, map<string|string[]> headers, *GetBadgeTemplatesQueries queries) returns BadgeTemplates_1|errorGet entity from BadgeTemplates by key
Parameters
- badgeId Signed32 - key: badgeId
- queries *GetBadgeTemplatesQueries - Queries to be sent with the request
Return Type
- BadgeTemplates_1|error - Retrieved entity
listEPPublicProfiles
function listEPPublicProfiles(map<string|string[]> headers, *ListEPPublicProfilesQueries queries) returns Wrapper_20|errorGet entities from EPPublicProfile
Parameters
- queries *ListEPPublicProfilesQueries - Queries to be sent with the request
Return Type
- Wrapper_20|error - Retrieved entities
createEPPublicProfile
function createEPPublicProfile(EPPublicProfile payload, map<string|string[]> headers) returns CreatedEPPublicProfile|errorAdd new entity to EPPublicProfile
Parameters
- payload EPPublicProfile - New entity
Return Type
- CreatedEPPublicProfile|error - Created entity
getEPPublicProfile
function getEPPublicProfile(string userId, map<string|string[]> headers, *GetEPPublicProfileQueries queries) returns EPPublicProfile_1|errorGet entity from EPPublicProfile by key
Parameters
- userId string - key: userId
- queries *GetEPPublicProfileQueries - Queries to be sent with the request
Return Type
- EPPublicProfile_1|error - Retrieved entity
updateEPPublicProfile
function updateEPPublicProfile(string userId, ModifiedEPPublicProfile payload, map<string|string[]> headers) returns error?Update entity in EPPublicProfile
Return Type
- error? - Success
deleteEPPublicProfile
function deleteEPPublicProfile(string userId, DeleteEPPublicProfileHeaders headers) returns error?Delete entity from EPPublicProfile
Parameters
- userId string - key: userId
- headers DeleteEPPublicProfileHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundLanguagess
function listBackgroundLanguagess(map<string|string[]> headers, *ListBackgroundLanguagessQueries queries) returns Wrapper_21|errorGet entities from Background_Languages
Parameters
- queries *ListBackgroundLanguagessQueries - Queries to be sent with the request
Return Type
- Wrapper_21|error - Retrieved entities
createBackgroundLanguages
function createBackgroundLanguages(Background_Languages payload, map<string|string[]> headers) returns CreatedBackground_Languages|errorAdd new entity to Background_Languages
Parameters
- payload Background_Languages - New entity
Return Type
- CreatedBackground_Languages|error - Created entity
getBackgroundLanguages
function getBackgroundLanguages(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundLanguagesQueries queries) returns Background_Languages_1|errorGet entity from Background_Languages by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundLanguagesQueries - Queries to be sent with the request
Return Type
- Background_Languages_1|error - Retrieved entity
updateBackgroundLanguages
function updateBackgroundLanguages(int backgroundElementId, string userId, ModifiedBackground_Languages payload, map<string|string[]> headers) returns error?Update entity in Background_Languages
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Languages - New property values
Return Type
- error? - Success
deleteBackgroundLanguages
function deleteBackgroundLanguages(int backgroundElementId, string userId, DeleteBackgroundLanguagesHeaders headers) returns error?Delete entity from Background_Languages
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundLanguagesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundSysScoreCardDevelopmentObjectivesPortlets
function listBackgroundSysScoreCardDevelopmentObjectivesPortlets(map<string|string[]> headers, *ListBackgroundSysScoreCardDevelopmentObjectivesPortletsQueries queries) returns Wrapper_22|errorGet entities from Background_SysScoreCardDevelopmentObjectivesPortlet
Parameters
- queries *ListBackgroundSysScoreCardDevelopmentObjectivesPortletsQueries - Queries to be sent with the request
Return Type
- Wrapper_22|error - Retrieved entities
createBackgroundSysScoreCardDevelopmentObjectivesPortlet
function createBackgroundSysScoreCardDevelopmentObjectivesPortlet(Background_SysScoreCardDevelopmentObjectivesPortlet payload, map<string|string[]> headers) returns CreatedBackground_SysScoreCardDevelopmentObjectivesPortlet|errorAdd new entity to Background_SysScoreCardDevelopmentObjectivesPortlet
Parameters
- payload Background_SysScoreCardDevelopmentObjectivesPortlet - New entity
Return Type
- CreatedBackground_SysScoreCardDevelopmentObjectivesPortlet|error - Created entity
getBackgroundSysScoreCardDevelopmentObjectivesPortlet
function getBackgroundSysScoreCardDevelopmentObjectivesPortlet(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundSysScoreCardDevelopmentObjectivesPortletQueries queries) returns Background_SysScoreCardDevelopmentObjectivesPortlet_1|errorGet entity from Background_SysScoreCardDevelopmentObjectivesPortlet by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundSysScoreCardDevelopmentObjectivesPortletQueries - Queries to be sent with the request
Return Type
- Background_SysScoreCardDevelopmentObjectivesPortlet_1|error - Retrieved entity
updateBackgroundSysScoreCardDevelopmentObjectivesPortlet
function updateBackgroundSysScoreCardDevelopmentObjectivesPortlet(int backgroundElementId, string userId, ModifiedBackground_SysScoreCardDevelopmentObjectivesPortlet payload, map<string|string[]> headers) returns error?Update entity in Background_SysScoreCardDevelopmentObjectivesPortlet
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_SysScoreCardDevelopmentObjectivesPortlet - New property values
Return Type
- error? - Success
deleteBackgroundSysScoreCardDevelopmentObjectivesPortlet
function deleteBackgroundSysScoreCardDevelopmentObjectivesPortlet(int backgroundElementId, string userId, DeleteBackgroundSysScoreCardDevelopmentObjectivesPortletHeaders headers) returns error?Delete entity from Background_SysScoreCardDevelopmentObjectivesPortlet
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundSysScoreCardDevelopmentObjectivesPortletHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundTalentPoolcorps
function listBackgroundTalentPoolcorps(map<string|string[]> headers, *ListBackgroundTalentPoolcorpsQueries queries) returns Wrapper_23|errorGet entities from Background_TalentPoolcorp
Parameters
- queries *ListBackgroundTalentPoolcorpsQueries - Queries to be sent with the request
Return Type
- Wrapper_23|error - Retrieved entities
createBackgroundTalentPoolcorp
function createBackgroundTalentPoolcorp(Background_TalentPoolcorp payload, map<string|string[]> headers) returns CreatedBackground_TalentPoolcorp|errorAdd new entity to Background_TalentPoolcorp
Parameters
- payload Background_TalentPoolcorp - New entity
Return Type
- CreatedBackground_TalentPoolcorp|error - Created entity
getBackgroundTalentPoolcorp
function getBackgroundTalentPoolcorp(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundTalentPoolcorpQueries queries) returns Background_TalentPoolcorp_1|errorGet entity from Background_TalentPoolcorp by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundTalentPoolcorpQueries - Queries to be sent with the request
Return Type
- Background_TalentPoolcorp_1|error - Retrieved entity
updateBackgroundTalentPoolcorp
function updateBackgroundTalentPoolcorp(int backgroundElementId, string userId, ModifiedBackground_TalentPoolcorp payload, map<string|string[]> headers) returns error?Update entity in Background_TalentPoolcorp
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_TalentPoolcorp - New property values
Return Type
- error? - Success
deleteBackgroundTalentPoolcorp
function deleteBackgroundTalentPoolcorp(int backgroundElementId, string userId, DeleteBackgroundTalentPoolcorpHeaders headers) returns error?Delete entity from Background_TalentPoolcorp
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundTalentPoolcorpHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listEPCustomBackgroundPortlets
function listEPCustomBackgroundPortlets(map<string|string[]> headers, *ListEPCustomBackgroundPortletsQueries queries) returns Wrapper_24|errorGet entities from EPCustomBackgroundPortlet
Parameters
- queries *ListEPCustomBackgroundPortletsQueries - Queries to be sent with the request
Return Type
- Wrapper_24|error - Retrieved entities
getEPCustomBackgroundPortlet
function getEPCustomBackgroundPortlet(string backgroundElementId, map<string|string[]> headers, *GetEPCustomBackgroundPortletQueries queries) returns EPCustomBackgroundPortlet_1|errorGet entity from EPCustomBackgroundPortlet by key
Parameters
- backgroundElementId string - key: backgroundElementId
- queries *GetEPCustomBackgroundPortletQueries - Queries to be sent with the request
Return Type
- EPCustomBackgroundPortlet_1|error - Retrieved entity
listBackgroundSpecialAssigns
function listBackgroundSpecialAssigns(map<string|string[]> headers, *ListBackgroundSpecialAssignsQueries queries) returns Wrapper_25|errorGet entities from Background_SpecialAssign
Parameters
- queries *ListBackgroundSpecialAssignsQueries - Queries to be sent with the request
Return Type
- Wrapper_25|error - Retrieved entities
createBackgroundSpecialAssign
function createBackgroundSpecialAssign(Background_SpecialAssign payload, map<string|string[]> headers) returns CreatedBackground_SpecialAssign|errorAdd new entity to Background_SpecialAssign
Parameters
- payload Background_SpecialAssign - New entity
Return Type
- CreatedBackground_SpecialAssign|error - Created entity
getBackgroundSpecialAssign
function getBackgroundSpecialAssign(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundSpecialAssignQueries queries) returns Background_SpecialAssign_1|errorGet entity from Background_SpecialAssign by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundSpecialAssignQueries - Queries to be sent with the request
Return Type
- Background_SpecialAssign_1|error - Retrieved entity
updateBackgroundSpecialAssign
function updateBackgroundSpecialAssign(int backgroundElementId, string userId, ModifiedBackground_SpecialAssign payload, map<string|string[]> headers) returns error?Update entity in Background_SpecialAssign
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_SpecialAssign - New property values
Return Type
- error? - Success
deleteBackgroundSpecialAssign
function deleteBackgroundSpecialAssign(int backgroundElementId, string userId, DeleteBackgroundSpecialAssignHeaders headers) returns error?Delete entity from Background_SpecialAssign
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundSpecialAssignHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundCertificatess
function listBackgroundCertificatess(map<string|string[]> headers, *ListBackgroundCertificatessQueries queries) returns Wrapper_26|errorGet entities from Background_Certificates
Parameters
- queries *ListBackgroundCertificatessQueries - Queries to be sent with the request
Return Type
- Wrapper_26|error - Retrieved entities
createBackgroundCertificates
function createBackgroundCertificates(Background_Certificates payload, map<string|string[]> headers) returns CreatedBackground_Certificates|errorAdd new entity to Background_Certificates
Parameters
- payload Background_Certificates - New entity
Return Type
- CreatedBackground_Certificates|error - Created entity
getBackgroundCertificates
function getBackgroundCertificates(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundCertificatesQueries queries) returns Background_Certificates_1|errorGet entity from Background_Certificates by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundCertificatesQueries - Queries to be sent with the request
Return Type
- Background_Certificates_1|error - Retrieved entity
updateBackgroundCertificates
function updateBackgroundCertificates(int backgroundElementId, string userId, ModifiedBackground_Certificates payload, map<string|string[]> headers) returns error?Update entity in Background_Certificates
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_Certificates - New property values
Return Type
- error? - Success
deleteBackgroundCertificates
function deleteBackgroundCertificates(int backgroundElementId, string userId, DeleteBackgroundCertificatesHeaders headers) returns error?Delete entity from Background_Certificates
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundCertificatesHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundVarPayEmpHistDataECSources
function listBackgroundVarPayEmpHistDataECSources(map<string|string[]> headers, *ListBackgroundVarPayEmpHistDataECSourcesQueries queries) returns Wrapper_27|errorGet entities from Background_VarPayEmpHistDataECSource
Parameters
- queries *ListBackgroundVarPayEmpHistDataECSourcesQueries - Queries to be sent with the request
Return Type
- Wrapper_27|error - Retrieved entities
createBackgroundVarPayEmpHistDataECSource
function createBackgroundVarPayEmpHistDataECSource(Background_VarPayEmpHistDataECSource payload, map<string|string[]> headers) returns CreatedBackground_VarPayEmpHistDataECSource|errorAdd new entity to Background_VarPayEmpHistDataECSource
Parameters
- payload Background_VarPayEmpHistDataECSource - New entity
Return Type
- CreatedBackground_VarPayEmpHistDataECSource|error - Created entity
getBackgroundVarPayEmpHistDataECSource
function getBackgroundVarPayEmpHistDataECSource(int backgroundElementId, map<string|string[]> headers, *GetBackgroundVarPayEmpHistDataECSourceQueries queries) returns Background_VarPayEmpHistDataECSource_1|errorGet entity from Background_VarPayEmpHistDataECSource by key
Parameters
- backgroundElementId int - key: backgroundElementId
- queries *GetBackgroundVarPayEmpHistDataECSourceQueries - Queries to be sent with the request
Return Type
- Background_VarPayEmpHistDataECSource_1|error - Retrieved entity
updateBackgroundVarPayEmpHistDataECSource
function updateBackgroundVarPayEmpHistDataECSource(int backgroundElementId, ModifiedBackground_VarPayEmpHistDataECSource payload, map<string|string[]> headers) returns error?Update entity in Background_VarPayEmpHistDataECSource
Parameters
- backgroundElementId int - key: backgroundElementId
- payload ModifiedBackground_VarPayEmpHistDataECSource - New property values
Return Type
- error? - Success
deleteBackgroundVarPayEmpHistDataECSource
function deleteBackgroundVarPayEmpHistDataECSource(int backgroundElementId, DeleteBackgroundVarPayEmpHistDataECSourceHeaders headers) returns error?Delete entity from Background_VarPayEmpHistDataECSource
Parameters
- backgroundElementId int - key: backgroundElementId
- headers DeleteBackgroundVarPayEmpHistDataECSourceHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listBackgroundLeadExperiences
function listBackgroundLeadExperiences(map<string|string[]> headers, *ListBackgroundLeadExperiencesQueries queries) returns Wrapper_28|errorGet entities from Background_LeadExperience
Parameters
- queries *ListBackgroundLeadExperiencesQueries - Queries to be sent with the request
Return Type
- Wrapper_28|error - Retrieved entities
createBackgroundLeadExperience
function createBackgroundLeadExperience(Background_LeadExperience payload, map<string|string[]> headers) returns CreatedBackground_LeadExperience|errorAdd new entity to Background_LeadExperience
Parameters
- payload Background_LeadExperience - New entity
Return Type
- CreatedBackground_LeadExperience|error - Created entity
getBackgroundLeadExperience
function getBackgroundLeadExperience(int backgroundElementId, string userId, map<string|string[]> headers, *GetBackgroundLeadExperienceQueries queries) returns Background_LeadExperience_1|errorGet entity from Background_LeadExperience by key
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- queries *GetBackgroundLeadExperienceQueries - Queries to be sent with the request
Return Type
- Background_LeadExperience_1|error - Retrieved entity
updateBackgroundLeadExperience
function updateBackgroundLeadExperience(int backgroundElementId, string userId, ModifiedBackground_LeadExperience payload, map<string|string[]> headers) returns error?Update entity in Background_LeadExperience
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- payload ModifiedBackground_LeadExperience - New property values
Return Type
- error? - Success
deleteBackgroundLeadExperience
function deleteBackgroundLeadExperience(int backgroundElementId, string userId, DeleteBackgroundLeadExperienceHeaders headers) returns error?Delete entity from Background_LeadExperience
Parameters
- backgroundElementId int - key: backgroundElementId
- userId string - key: userId
- headers DeleteBackgroundLeadExperienceHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listTrendDataSysOverallObjectives
function listTrendDataSysOverallObjectives(map<string|string[]> headers, *ListTrendDataSysOverallObjectivesQueries queries) returns Wrapper_29|errorGet entities from TrendData_SysOverallObjective
Parameters
- queries *ListTrendDataSysOverallObjectivesQueries - Queries to be sent with the request
Return Type
- Wrapper_29|error - Retrieved entities
createTrendDataSysOverallObjective
function createTrendDataSysOverallObjective(TrendData_SysOverallObjective payload, map<string|string[]> headers) returns CreatedTrendData_SysOverallObjective|errorAdd new entity to TrendData_SysOverallObjective
Parameters
- payload TrendData_SysOverallObjective - New entity
Return Type
- CreatedTrendData_SysOverallObjective|error - Created entity
getTrendDataSysOverallObjective
function getTrendDataSysOverallObjective(int id, map<string|string[]> headers, *GetTrendDataSysOverallObjectiveQueries queries) returns TrendData_SysOverallObjective_1|errorGet entity from TrendData_SysOverallObjective by key
Parameters
- id int - key: id
- queries *GetTrendDataSysOverallObjectiveQueries - Queries to be sent with the request
Return Type
- TrendData_SysOverallObjective_1|error - Retrieved entity
updateTrendDataSysOverallObjective
function updateTrendDataSysOverallObjective(int id, ModifiedTrendData_SysOverallObjective payload, map<string|string[]> headers) returns error?Update entity in TrendData_SysOverallObjective
Return Type
- error? - Success
deleteTrendDataSysOverallObjective
function deleteTrendDataSysOverallObjective(int id, DeleteTrendDataSysOverallObjectiveHeaders headers) returns error?Delete entity from TrendData_SysOverallObjective
Parameters
- id int - key: id
- headers DeleteTrendDataSysOverallObjectiveHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listTrendDataSysOverallCompetencies
function listTrendDataSysOverallCompetencies(map<string|string[]> headers, *ListTrendDataSysOverallCompetenciesQueries queries) returns Wrapper_30|errorGet entities from TrendData_SysOverallCompetency
Parameters
- queries *ListTrendDataSysOverallCompetenciesQueries - Queries to be sent with the request
Return Type
- Wrapper_30|error - Retrieved entities
createTrendDataSysOverallCompetency
function createTrendDataSysOverallCompetency(TrendData_SysOverallCompetency payload, map<string|string[]> headers) returns CreatedTrendData_SysOverallCompetency|errorAdd new entity to TrendData_SysOverallCompetency
Parameters
- payload TrendData_SysOverallCompetency - New entity
Return Type
- CreatedTrendData_SysOverallCompetency|error - Created entity
getTrendDataSysOverallCompetency
function getTrendDataSysOverallCompetency(int id, map<string|string[]> headers, *GetTrendDataSysOverallCompetencyQueries queries) returns TrendData_SysOverallCompetency_1|errorGet entity from TrendData_SysOverallCompetency by key
Parameters
- id int - key: id
- queries *GetTrendDataSysOverallCompetencyQueries - Queries to be sent with the request
Return Type
- TrendData_SysOverallCompetency_1|error - Retrieved entity
updateTrendDataSysOverallCompetency
function updateTrendDataSysOverallCompetency(int id, ModifiedTrendData_SysOverallCompetency payload, map<string|string[]> headers) returns error?Update entity in TrendData_SysOverallCompetency
Return Type
- error? - Success
deleteTrendDataSysOverallCompetency
function deleteTrendDataSysOverallCompetency(int id, DeleteTrendDataSysOverallCompetencyHeaders headers) returns error?Delete entity from TrendData_SysOverallCompetency
Parameters
- id int - key: id
- headers DeleteTrendDataSysOverallCompetencyHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listTrendDataSysOverallPotentials
function listTrendDataSysOverallPotentials(map<string|string[]> headers, *ListTrendDataSysOverallPotentialsQueries queries) returns Wrapper_31|errorGet entities from TrendData_SysOverallPotential
Parameters
- queries *ListTrendDataSysOverallPotentialsQueries - Queries to be sent with the request
Return Type
- Wrapper_31|error - Retrieved entities
createTrendDataSysOverallPotential
function createTrendDataSysOverallPotential(TrendData_SysOverallPotential payload, map<string|string[]> headers) returns CreatedTrendData_SysOverallPotential|errorAdd new entity to TrendData_SysOverallPotential
Parameters
- payload TrendData_SysOverallPotential - New entity
Return Type
- CreatedTrendData_SysOverallPotential|error - Created entity
getTrendDataSysOverallPotential
function getTrendDataSysOverallPotential(int id, map<string|string[]> headers, *GetTrendDataSysOverallPotentialQueries queries) returns TrendData_SysOverallPotential_1|errorGet entity from TrendData_SysOverallPotential by key
Parameters
- id int - key: id
- queries *GetTrendDataSysOverallPotentialQueries - Queries to be sent with the request
Return Type
- TrendData_SysOverallPotential_1|error - Retrieved entity
updateTrendDataSysOverallPotential
function updateTrendDataSysOverallPotential(int id, ModifiedTrendData_SysOverallPotential payload, map<string|string[]> headers) returns error?Update entity in TrendData_SysOverallPotential
Return Type
- error? - Success
deleteTrendDataSysOverallPotential
function deleteTrendDataSysOverallPotential(int id, DeleteTrendDataSysOverallPotentialHeaders headers) returns error?Delete entity from TrendData_SysOverallPotential
Parameters
- id int - key: id
- headers DeleteTrendDataSysOverallPotentialHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listTrendDataSysOverallPerformances
function listTrendDataSysOverallPerformances(map<string|string[]> headers, *ListTrendDataSysOverallPerformancesQueries queries) returns Wrapper_32|errorGet entities from TrendData_SysOverallPerformance
Parameters
- queries *ListTrendDataSysOverallPerformancesQueries - Queries to be sent with the request
Return Type
- Wrapper_32|error - Retrieved entities
createTrendDataSysOverallPerformance
function createTrendDataSysOverallPerformance(TrendData_SysOverallPerformance payload, map<string|string[]> headers) returns CreatedTrendData_SysOverallPerformance|errorAdd new entity to TrendData_SysOverallPerformance
Parameters
- payload TrendData_SysOverallPerformance - New entity
Return Type
- CreatedTrendData_SysOverallPerformance|error - Created entity
getTrendDataSysOverallPerformance
function getTrendDataSysOverallPerformance(int id, map<string|string[]> headers, *GetTrendDataSysOverallPerformanceQueries queries) returns TrendData_SysOverallPerformance_1|errorGet entity from TrendData_SysOverallPerformance by key
Parameters
- id int - key: id
- queries *GetTrendDataSysOverallPerformanceQueries - Queries to be sent with the request
Return Type
- TrendData_SysOverallPerformance_1|error - Retrieved entity
updateTrendDataSysOverallPerformance
function updateTrendDataSysOverallPerformance(int id, ModifiedTrendData_SysOverallPerformance payload, map<string|string[]> headers) returns error?Update entity in TrendData_SysOverallPerformance
Return Type
- error? - Success
deleteTrendDataSysOverallPerformance
function deleteTrendDataSysOverallPerformance(int id, DeleteTrendDataSysOverallPerformanceHeaders headers) returns error?Delete entity from TrendData_SysOverallPerformance
Parameters
- id int - key: id
- headers DeleteTrendDataSysOverallPerformanceHeaders (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listTrendDataSysOverallCustom1s
function listTrendDataSysOverallCustom1s(map<string|string[]> headers, *ListTrendDataSysOverallCustom1sQueries queries) returns Wrapper_33|errorGet entities from TrendData_SysOverallCustom1
Parameters
- queries *ListTrendDataSysOverallCustom1sQueries - Queries to be sent with the request
Return Type
- Wrapper_33|error - Retrieved entities
createTrendDataSysOverallCustom1
function createTrendDataSysOverallCustom1(TrendData_SysOverallCustom1 payload, map<string|string[]> headers) returns CreatedTrendData_SysOverallCustom1|errorAdd new entity to TrendData_SysOverallCustom1
Parameters
- payload TrendData_SysOverallCustom1 - New entity
Return Type
- CreatedTrendData_SysOverallCustom1|error - Created entity
getTrendDataSysOverallCustom1
function getTrendDataSysOverallCustom1(int id, map<string|string[]> headers, *GetTrendDataSysOverallCustom1Queries queries) returns TrendData_SysOverallCustom1_1|errorGet entity from TrendData_SysOverallCustom1 by key
Parameters
- id int - key: id
- queries *GetTrendDataSysOverallCustom1Queries - Queries to be sent with the request
Return Type
- TrendData_SysOverallCustom1_1|error - Retrieved entity
updateTrendDataSysOverallCustom1
function updateTrendDataSysOverallCustom1(int id, ModifiedTrendData_SysOverallCustom1 payload, map<string|string[]> headers) returns error?Update entity in TrendData_SysOverallCustom1
Return Type
- error? - Success
deleteTrendDataSysOverallCustom1
function deleteTrendDataSysOverallCustom1(int id, DeleteTrendDataSysOverallCustom1Headers headers) returns error?Delete entity from TrendData_SysOverallCustom1
Parameters
- id int - key: id
- headers DeleteTrendDataSysOverallCustom1Headers (default {}) - Headers to be sent with the request
Return Type
- error? - Success
listTrendDataSysOverallCustom2s
function listTrendDataSysOverallCustom2s(map<string|string[]> headers, *ListTrendDataSysOverallCustom2sQueries queries) returns Wrapper_34|errorGet entities from TrendData_SysOverallCustom2
Parameters
- queries *ListTrendDataSysOverallCustom2sQueries - Queries to be sent with the request
Return Type
- Wrapper_34|error - Retrieved entities
createTrendDataSysOverallCustom2
function createTrendDataSysOverallCustom2(TrendData_SysOverallCustom2 payload, map<string|string[]> headers) returns CreatedTrendData_SysOverallCustom2|errorAdd new entity to TrendData_SysOverallCustom2
Parameters
- payload TrendData_SysOverallCustom2 - New entity
Return Type
- CreatedTrendData_SysOverallCustom2|error - Created entity
getTrendDataSysOverallCustom2
function getTrendDataSysOverallCustom2(int id, map<string|string[]> headers, *GetTrendDataSysOverallCustom2Queries queries) returns TrendData_SysOverallCustom2_1|errorGet entity from TrendData_SysOverallCustom2 by key
Parameters
- id int - key: id
- queries *GetTrendDataSysOverallCustom2Queries - Queries to be sent with the request
Return Type
- TrendData_SysOverallCustom2_1|error - Retrieved entity
updateTrendDataSysOverallCustom2
function updateTrendDataSysOverallCustom2(int id, ModifiedTrendData_SysOverallCustom2 payload, map<string|string[]> headers) returns error?Update entity in TrendData_SysOverallCustom2
Return Type
- error? - Success
deleteTrendDataSysOverallCustom2
function deleteTrendDataSysOverallCustom2(int id, DeleteTrendDataSysOverallCustom2Headers headers) returns error?Delete entity from TrendData_SysOverallCustom2
Parameters
- id int - key: id
- headers DeleteTrendDataSysOverallCustom2Headers (default {}) - Headers to be sent with the request
Return Type
- error? - Success
Records
sap.successfactors.ecemployeeprofile: Background_Awards
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- name? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Awards_1
Fields
- d? Background_Awards -
sap.successfactors.ecemployeeprofile: Background_Benefitselection
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- dental? string -
- depdisability? string -
- depgender? string -
- depname? string -
- depnationalid? string -
- depsmoke? string -
- depstudent? string -
- endDate? string -
- health? string -
- lastModifiedDate? string -
- relation? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Certificates
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- name? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Certificates_1
Fields
sap.successfactors.ecemployeeprofile: Background_Community
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- name? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Community_1
Fields
- d? Background_Community -
sap.successfactors.ecemployeeprofile: Background_Compensation
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Compensation_1
Fields
sap.successfactors.ecemployeeprofile: Background_Courses
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- course? string -
- endDate? string -
- lastModifiedDate? string -
- length? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Courses_1
Fields
- d? Background_Courses -
sap.successfactors.ecemployeeprofile: Background_Documents
Fields
- attachment? Signed32 -
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Documents_1
Fields
- d? Background_Documents -
sap.successfactors.ecemployeeprofile: Background_Education
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Education_1
Fields
- d? Background_Education -
sap.successfactors.ecemployeeprofile: Background_Fsaelection
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Fsaelection_1
Fields
sap.successfactors.ecemployeeprofile: Background_FuncExperience
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- experience? string -
- lastModifiedDate? string -
- userId? string -
- years? Signed32 -
sap.successfactors.ecemployeeprofile: Background_FuncExperience_1
Fields
sap.successfactors.ecemployeeprofile: Background_Googledocs
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- documenturl? string -
- lastModifiedDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Googledocs_1
Fields
sap.successfactors.ecemployeeprofile: Background_InsideWorkExperience
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_InsideWorkExperience_1
Fields
sap.successfactors.ecemployeeprofile: Background_Languages
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Languages_1
Fields
- d? Background_Languages -
sap.successfactors.ecemployeeprofile: Background_LeadExperience
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- experience? string -
- lastModifiedDate? string -
- userId? string -
- years? Signed32 -
sap.successfactors.ecemployeeprofile: Background_LeadExperience_1
Fields
sap.successfactors.ecemployeeprofile: Background_Memberships
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- organization? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Memberships_1
Fields
sap.successfactors.ecemployeeprofile: Background_Mobility
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- userId? string -
- willingness? string -
sap.successfactors.ecemployeeprofile: Background_Mobility_1
Fields
- d? Background_Mobility -
sap.successfactors.ecemployeeprofile: Background_OutsideWorkExperience
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- employer? string -
- endDate? string -
- lastModifiedDate? string -
- presentEmployer? string -
- startDate? string -
- startTitle? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_OutsideWorkExperience_1
Fields
sap.successfactors.ecemployeeprofile: Background_PreferredNextMove
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- title? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_PreferredNextMove_1
Fields
sap.successfactors.ecemployeeprofile: Background_Promotability
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- 'function? string -
- lastModifiedDate? string -
- level? string -
- timeframe? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_Promotability_1
Fields
sap.successfactors.ecemployeeprofile: Background_SpecialAssign
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- project? string -
- startDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_SpecialAssign_1
Fields
sap.successfactors.ecemployeeprofile: Background_SysScoreCardDevelopmentObjectivesPortlet
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_SysScoreCardDevelopmentObjectivesPortlet_1
Fields
sap.successfactors.ecemployeeprofile: Background_TalentPool
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- talentPoolitem? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_TalentPool_1
Fields
sap.successfactors.ecemployeeprofile: Background_TalentPoolcorp
Fields
- backgroundElementId? string -
- bgOrderPos? string -
- lastModifiedDate? string -
- talentPoolitemCorp? string -
- userId? string -
sap.successfactors.ecemployeeprofile: Background_TalentPoolcorp_1
Fields
sap.successfactors.ecemployeeprofile: Background_VarPayEmpHistData
Fields
- backgroundElementId? string -
- endDate? string -
- lastModifiedDate? string -
- startDate? string -
- userId? string -
- varPayProgramName? string -
sap.successfactors.ecemployeeprofile: Background_VarPayEmpHistData_1
Fields
sap.successfactors.ecemployeeprofile: Background_VarPayEmpHistDataECSource
Fields
- backgroundElementId? string -
- endDate? string -
- lastModifiedDate? string -
- startDate? string -
- userId? string -
- varPayProgramName? string -
sap.successfactors.ecemployeeprofile: Background_VarPayEmpHistDataECSource_1
Fields
sap.successfactors.ecemployeeprofile: BackgroundBenefitselection
Fields
sap.successfactors.ecemployeeprofile: BadgeTemplates
Fields
- badgeId? Signed32 -
sap.successfactors.ecemployeeprofile: BadgeTemplates_1
Fields
- d? BadgeTemplates -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Awards
Fields
- results? Background_Awards[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Benefitselection
Fields
- results? Background_Benefitselection[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Certificates
Fields
- results? Background_Certificates[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Community
Fields
- results? Background_Community[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Compensation
Fields
- results? Background_Compensation[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Courses
Fields
- results? Background_Courses[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Documents
Fields
- results? Background_Documents[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Education
Fields
- results? Background_Education[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Fsaelection
Fields
- results? Background_Fsaelection[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_FuncExperience
Fields
- results? Background_FuncExperience[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Googledocs
Fields
- results? Background_Googledocs[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_InsideWorkExperience
Fields
- results? Background_InsideWorkExperience[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Languages
Fields
- results? Background_Languages[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_LeadExperience
Fields
- results? Background_LeadExperience[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Memberships
Fields
- results? Background_Memberships[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Mobility
Fields
- results? Background_Mobility[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_OutsideWorkExperience
Fields
- results? Background_OutsideWorkExperience[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_PreferredNextMove
Fields
- results? Background_PreferredNextMove[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_Promotability
Fields
- results? Background_Promotability[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_SpecialAssign
Fields
- results? Background_SpecialAssign[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_SysScoreCardDevelopmentObjectivesPortlet
Fields
- results? Background_SysScoreCardDevelopmentObjectivesPortlet[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_TalentPool
Fields
- results? Background_TalentPool[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_TalentPoolcorp
Fields
- results? Background_TalentPoolcorp[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_VarPayEmpHistData
Fields
- results? Background_VarPayEmpHistData[] -
sap.successfactors.ecemployeeprofile: CollectionofBackground_VarPayEmpHistDataECSource
Fields
- results? Background_VarPayEmpHistDataECSource[] -
sap.successfactors.ecemployeeprofile: CollectionofBadgeTemplates
Fields
- results? BadgeTemplates[] -
sap.successfactors.ecemployeeprofile: CollectionofEPCustomBackgroundPortlet
Fields
- results? EPCustomBackgroundPortlet[] -
sap.successfactors.ecemployeeprofile: CollectionofEPPublicProfile
Fields
- results? EPPublicProfile[] -
sap.successfactors.ecemployeeprofile: CollectionofTrendData_SysOverallCompetency
Fields
- results? TrendData_SysOverallCompetency[] -
sap.successfactors.ecemployeeprofile: CollectionofTrendData_SysOverallCustom1
Fields
- results? TrendData_SysOverallCustom1[] -
sap.successfactors.ecemployeeprofile: CollectionofTrendData_SysOverallCustom2
Fields
- results? TrendData_SysOverallCustom2[] -
sap.successfactors.ecemployeeprofile: CollectionofTrendData_SysOverallObjective
Fields
- results? TrendData_SysOverallObjective[] -
sap.successfactors.ecemployeeprofile: CollectionofTrendData_SysOverallPerformance
Fields
- results? TrendData_SysOverallPerformance[] -
sap.successfactors.ecemployeeprofile: CollectionofTrendData_SysOverallPotential
Fields
- results? TrendData_SysOverallPotential[] -
sap.successfactors.ecemployeeprofile: CollectionofUserBadges
Fields
- results? UserBadges[] -
sap.successfactors.ecemployeeprofile: ConnectionConfig
Provides a set of configurations for controlling the behaviours when communicating with a remote HTTP endpoint.
Fields
- auth CredentialsConfig - Configurations related to client authentication
- httpVersion HttpVersion(default http:HTTP_2_0) - The HTTP version understood by the client
- http1Settings ClientHttp1Settings(default {}) - Configurations related to HTTP/1.x protocol
- http2Settings ClientHttp2Settings(default {}) - Configurations related to HTTP/2 protocol
- timeout decimal(default 30) - The maximum time to wait (in seconds) for a response before closing the connection
- forwarded string(default "disable") - The choice of setting
forwarded/x-forwardedheader
- followRedirects? FollowRedirects - Configurations associated with Redirection
- poolConfig? PoolConfiguration - Configurations associated with request pooling
- cache CacheConfig(default {}) - HTTP caching related configurations
- compression Compression(default http:COMPRESSION_AUTO) - Specifies the way of handling compression (
accept-encoding) header
- circuitBreaker? CircuitBreakerConfig - Configurations associated with the behaviour of the Circuit Breaker
- retryConfig? RetryConfig - Configurations associated with retrying
- cookieConfig? CookieConfig - Configurations associated with cookies
- responseLimits ResponseLimitConfigs(default {}) - Configurations associated with inbound response size limits
- secureSocket? ClientSecureSocket - SSL/TLS-related options
- proxy? ProxyConfig - Proxy server related options
- socketConfig ClientSocketConfig(default {}) - Provides settings related to client socket configuration
- validation boolean(default true) - Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default
- laxDataBinding boolean(default true) - Enables relaxed data binding on the client side. When enabled,
nilvalues are treated as optional, and absent fields are handled asnilabletypes. Enabled by default.
sap.successfactors.ecemployeeprofile: CreatedBackground_Awards
Fields
- d? Background_Awards -
sap.successfactors.ecemployeeprofile: CreatedBackground_Benefitselection
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_Certificates
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_Community
Fields
- d? Background_Community -
sap.successfactors.ecemployeeprofile: CreatedBackground_Compensation
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_Courses
Fields
- d? Background_Courses -
sap.successfactors.ecemployeeprofile: CreatedBackground_Documents
Fields
- d? Background_Documents -
sap.successfactors.ecemployeeprofile: CreatedBackground_Education
Fields
- d? Background_Education -
sap.successfactors.ecemployeeprofile: CreatedBackground_Fsaelection
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_FuncExperience
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_Googledocs
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_InsideWorkExperience
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_Languages
Fields
- d? Background_Languages -
sap.successfactors.ecemployeeprofile: CreatedBackground_LeadExperience
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_Memberships
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_Mobility
Fields
- d? Background_Mobility -
sap.successfactors.ecemployeeprofile: CreatedBackground_OutsideWorkExperience
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_PreferredNextMove
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_Promotability
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_SpecialAssign
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_SysScoreCardDevelopmentObjectivesPortlet
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_TalentPool
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_TalentPoolcorp
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_VarPayEmpHistData
Fields
sap.successfactors.ecemployeeprofile: CreatedBackground_VarPayEmpHistDataECSource
Fields
sap.successfactors.ecemployeeprofile: CreatedEPPublicProfile
Fields
- d? EPPublicProfile -
sap.successfactors.ecemployeeprofile: CreatedTrendData_SysOverallCompetency
Fields
sap.successfactors.ecemployeeprofile: CreatedTrendData_SysOverallCustom1
Fields
sap.successfactors.ecemployeeprofile: CreatedTrendData_SysOverallCustom2
Fields
sap.successfactors.ecemployeeprofile: CreatedTrendData_SysOverallObjective
Fields
sap.successfactors.ecemployeeprofile: CreatedTrendData_SysOverallPerformance
Fields
sap.successfactors.ecemployeeprofile: CreatedTrendData_SysOverallPotential
Fields
sap.successfactors.ecemployeeprofile: CreatedUserBadges
Fields
- d? UserBadges -
sap.successfactors.ecemployeeprofile: DeleteBackgroundAwardsHeaders
Represents the Headers record for the operation: deleteBackgroundAwards
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundBenefitselectionHeaders
Represents the Headers record for the operation: deleteBackgroundBenefitselection
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundCertificatesHeaders
Represents the Headers record for the operation: deleteBackgroundCertificates
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundCommunityHeaders
Represents the Headers record for the operation: deleteBackgroundCommunity
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundCompensationHeaders
Represents the Headers record for the operation: deleteBackgroundCompensation
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundCoursesHeaders
Represents the Headers record for the operation: deleteBackgroundCourses
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundDocumentsHeaders
Represents the Headers record for the operation: deleteBackgroundDocuments
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundEducationHeaders
Represents the Headers record for the operation: deleteBackgroundEducation
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundFsaelectionHeaders
Represents the Headers record for the operation: deleteBackgroundFsaelection
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundFuncExperienceHeaders
Represents the Headers record for the operation: deleteBackgroundFuncExperience
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundGoogledocsHeaders
Represents the Headers record for the operation: deleteBackgroundGoogledocs
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundInsideWorkExperienceHeaders
Represents the Headers record for the operation: deleteBackgroundInsideWorkExperience
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundLanguagesHeaders
Represents the Headers record for the operation: deleteBackgroundLanguages
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundLeadExperienceHeaders
Represents the Headers record for the operation: deleteBackgroundLeadExperience
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundMembershipsHeaders
Represents the Headers record for the operation: deleteBackgroundMemberships
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundMobilityHeaders
Represents the Headers record for the operation: deleteBackgroundMobility
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundOutsideWorkExperienceHeaders
Represents the Headers record for the operation: deleteBackgroundOutsideWorkExperience
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundPreferredNextMoveHeaders
Represents the Headers record for the operation: deleteBackgroundPreferredNextMove
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundPromotabilityHeaders
Represents the Headers record for the operation: deleteBackgroundPromotability
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundSpecialAssignHeaders
Represents the Headers record for the operation: deleteBackgroundSpecialAssign
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundSysScoreCardDevelopmentObjectivesPortletHeaders
Represents the Headers record for the operation: deleteBackgroundSysScoreCardDevelopmentObjectivesPortlet
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundTalentPoolcorpHeaders
Represents the Headers record for the operation: deleteBackgroundTalentPoolcorp
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundTalentPoolHeaders
Represents the Headers record for the operation: deleteBackgroundTalentPool
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundVarPayEmpHistDataECSourceHeaders
Represents the Headers record for the operation: deleteBackgroundVarPayEmpHistDataECSource
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteBackgroundVarPayEmpHistDataHeaders
Represents the Headers record for the operation: deleteBackgroundVarPayEmpHistData
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteEPPublicProfileHeaders
Represents the Headers record for the operation: deleteEPPublicProfile
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteTrendDataSysOverallCompetencyHeaders
Represents the Headers record for the operation: deleteTrendDataSysOverallCompetency
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteTrendDataSysOverallCustom1Headers
Represents the Headers record for the operation: deleteTrendDataSysOverallCustom1
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteTrendDataSysOverallCustom2Headers
Represents the Headers record for the operation: deleteTrendDataSysOverallCustom2
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteTrendDataSysOverallObjectiveHeaders
Represents the Headers record for the operation: deleteTrendDataSysOverallObjective
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteTrendDataSysOverallPerformanceHeaders
Represents the Headers record for the operation: deleteTrendDataSysOverallPerformance
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteTrendDataSysOverallPotentialHeaders
Represents the Headers record for the operation: deleteTrendDataSysOverallPotential
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: DeleteUserBadgesHeaders
Represents the Headers record for the operation: deleteUserBadges
Fields
- If\-Match? string - ETag
sap.successfactors.ecemployeeprofile: EPCustomBackgroundPortlet
Fields
- backgroundElementId? string -
- backgroundPropertyLists? EPCustomBackgroundPortletProperty -
sap.successfactors.ecemployeeprofile: EPCustomBackgroundPortlet_1
Fields
sap.successfactors.ecemployeeprofile: EPCustomBackgroundPortletProperty
sap.successfactors.ecemployeeprofile: EPPublicProfile
Fields
- userId? string -
sap.successfactors.ecemployeeprofile: EPPublicProfile_1
Fields
- d? EPPublicProfile -
sap.successfactors.ecemployeeprofile: GetBackgroundAwardsQueries
Represents the Queries record for the operation: getBackgroundAwards
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"description"|"institution"|"issueDate"|"lastModifiedDate"|"name"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundBenefitselectionQueries
Represents the Queries record for the operation: getBackgroundBenefitselection
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"dental"|"depdisability"|"depgender"|"depname"|"depnationalid"|"depsmoke"|"depstudent"|"endDate"|"health"|"lastModifiedDate"|"relation"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundCertificatesQueries
Represents the Queries record for the operation: getBackgroundCertificates
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"custom1"|"description"|"endDate"|"institution"|"lastModifiedDate"|"licenseCountry"|"licenseName"|"licenseNumber"|"licenseState"|"name"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundCommunityQueries
Represents the Queries record for the operation: getBackgroundCommunity
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"endDate"|"lastModifiedDate"|"name"|"role"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundCompensationQueries
Represents the Queries record for the operation: getBackgroundCompensation
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"compaRatio"|"curSalary"|"finSalary"|"jobTitle"|"lastModifiedDate"|"lumpSum"|"merit"|"options"|"pmRating"|"stock"|"sysCompTemplateName"|"sysReviewEndDate"|"sysReviewStartDate"|"totalComp"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundCoursesQueries
Represents the Queries record for the operation: getBackgroundCourses
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"course"|"endDate"|"institution"|"instructionType"|"lastModifiedDate"|"length"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundDocumentsQueries
Represents the Queries record for the operation: getBackgroundDocuments
Fields
- \$select? ("DocName"|"attachment"|"backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundEducationQueries
Represents the Queries record for the operation: getBackgroundEducation
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"degree"|"degreeDate"|"endDate"|"lastModifiedDate"|"major"|"school"|"schoolAddress"|"schoolCity"|"schoolCountry"|"schoolState"|"schoolType"|"schoolZip"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundFsaelectionQueries
Represents the Queries record for the operation: getBackgroundFsaelection
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"fsabalance"|"fsacontributions"|"fsaelectionamount"|"fsafundsout"|"fsaplan"|"fsarepayment"|"lastModifiedDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundFuncExperienceQueries
Represents the Queries record for the operation: getBackgroundFuncExperience
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"comments"|"experience"|"lastModifiedDate"|"userId"|"years")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundGoogledocsQueries
Represents the Queries record for the operation: getBackgroundGoogledocs
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"documentName"|"documenturl"|"lastModifiedDate"|"lastmodifieddate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundInsideWorkExperienceQueries
Represents the Queries record for the operation: getBackgroundInsideWorkExperience
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"department"|"endDate"|"lastModifiedDate"|"startDate"|"title"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundLanguagesQueries
Represents the Queries record for the operation: getBackgroundLanguages
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"language"|"lastModifiedDate"|"readingProf"|"speakingProf"|"userId"|"variant"|"writingProf")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundLeadExperienceQueries
Represents the Queries record for the operation: getBackgroundLeadExperience
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"comments"|"dollars"|"experience"|"lastModifiedDate"|"people"|"userId"|"years")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundMembershipsQueries
Represents the Queries record for the operation: getBackgroundMemberships
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"endDate"|"lastModifiedDate"|"organization"|"role"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundMobilityQueries
Represents the Queries record for the operation: getBackgroundMobility
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"location"|"userId"|"willingness")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundOutsideWorkExperienceQueries
Represents the Queries record for the operation: getBackgroundOutsideWorkExperience
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"businessType"|"employer"|"employerAddress"|"employerCity"|"employerContact"|"employerCountry"|"employerEmail"|"employerPhone"|"employerState"|"employerZip"|"endDate"|"lastModifiedDate"|"presentEmployer"|"startDate"|"startTitle"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundPreferredNextMoveQueries
Represents the Queries record for the operation: getBackgroundPreferredNextMove
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"comments"|"function"|"lastModifiedDate"|"level"|"timeframe"|"title"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundPromotabilityQueries
Represents the Queries record for the operation: getBackgroundPromotability
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"comment"|"function"|"lastModifiedDate"|"level"|"timeframe"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundSpecialAssignQueries
Represents the Queries record for the operation: getBackgroundSpecialAssign
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"description"|"endDate"|"lastModifiedDate"|"project"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundSysScoreCardDevelopmentObjectivesPortletQueries
Represents the Queries record for the operation: getBackgroundSysScoreCardDevelopmentObjectivesPortlet
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundTalentPoolcorpQueries
Represents the Queries record for the operation: getBackgroundTalentPoolcorp
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"startDate"|"talentPoolComments"|"talentPoolStatus"|"talentPoolitemCorp"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundTalentPoolQueries
Represents the Queries record for the operation: getBackgroundTalentPool
Fields
- \$select? ("backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"startDate"|"talentPoolComments"|"talentPoolStatus"|"talentPoolitem"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundVarPayEmpHistDataECSourceQueries
Represents the Queries record for the operation: getBackgroundVarPayEmpHistDataECSource
Fields
- \$select? ("backgroundElementId"|"basis"|"country"|"currencyCode"|"department"|"division"|"endDate"|"jobCode"|"jobTitle"|"lastModifiedDate"|"location"|"payGrade"|"recordType"|"salary"|"startDate"|"tgtPct"|"userId"|"varPayProgramName")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBackgroundVarPayEmpHistDataQueries
Represents the Queries record for the operation: getBackgroundVarPayEmpHistData
Fields
- \$select? ("backgroundElementId"|"basis"|"businessGoalCode"|"country"|"currencyCode"|"department"|"division"|"endDate"|"incentivePlanCode"|"jobTitle"|"lastModifiedDate"|"location"|"payGrade"|"salary"|"startDate"|"tgtPct"|"userId"|"varPayProgramName")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetBadgeTemplatesQueries
Represents the Queries record for the operation: getBadgeTemplates
Fields
- \$select? ("badgeId"|"badgeTitle"|"customBadge"|"photo")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetEPCustomBackgroundPortletQueries
Represents the Queries record for the operation: getEPCustomBackgroundPortlet
Fields
- \$select? ("backgroundElementId"|"backgroundPropertyLists"|"editable"|"userId"|"viewable")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetEPPublicProfileQueries
Represents the Queries record for the operation: getEPPublicProfile
Fields
- \$select? ("aboutMeVideoToken"|"aboutMeVideoUploadId"|"applicationId"|"hasAboutMeVideo"|"hasIntroduction"|"hasMyName"|"hasMyNameAudio"|"introduction"|"isAddBadgeAllowed"|"isBadgesSectionEnabled"|"isExpressiveMode"|"isExpressivePhotoEditable"|"mediaServiceBaseUrl"|"myNameAudioToken"|"myNameAudioUploadId"|"myNameText"|"liveProfilePhotoPermission"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetTrendDataSysOverallCompetencyQueries
Represents the Queries record for the operation: getTrendDataSysOverallCompetency
Fields
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetTrendDataSysOverallCustom1Queries
Represents the Queries record for the operation: getTrendDataSysOverallCustom1
Fields
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetTrendDataSysOverallCustom2Queries
Represents the Queries record for the operation: getTrendDataSysOverallCustom2
Fields
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetTrendDataSysOverallObjectiveQueries
Represents the Queries record for the operation: getTrendDataSysOverallObjective
Fields
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetTrendDataSysOverallPerformanceQueries
Represents the Queries record for the operation: getTrendDataSysOverallPerformance
Fields
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetTrendDataSysOverallPotentialQueries
Represents the Queries record for the operation: getTrendDataSysOverallPotential
Fields
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: GetUserBadgesQueries
Represents the Queries record for the operation: getUserBadges
Fields
- \$select? ("badgeCreatorName"|"badgeId"|"badgeInstanceId"|"badgeTitle"|"comment"|"creatorUserID"|"lastModified"|"photo"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundAwardssQueries
Represents the Queries record for the operation: listBackgroundAwardss
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"description"|"description desc"|"institution"|"institution desc"|"issueDate"|"issueDate desc"|"lastModifiedDate"|"lastModifiedDate desc"|"name"|"name desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"description"|"institution"|"issueDate"|"lastModifiedDate"|"name"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundBenefitselectionsQueries
Represents the Queries record for the operation: listBackgroundBenefitselections
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"dental"|"dental desc"|"depdisability"|"depdisability desc"|"depgender"|"depgender desc"|"depname"|"depname desc"|"depnationalid"|"depnationalid desc"|"depsmoke"|"depsmoke desc"|"depstudent"|"depstudent desc"|"endDate"|"endDate desc"|"health"|"health desc"|"lastModifiedDate"|"lastModifiedDate desc"|"relation"|"relation desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"dental"|"depdisability"|"depgender"|"depname"|"depnationalid"|"depsmoke"|"depstudent"|"endDate"|"health"|"lastModifiedDate"|"relation"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundCertificatessQueries
Represents the Queries record for the operation: listBackgroundCertificatess
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"custom1"|"custom1 desc"|"description"|"description desc"|"endDate"|"endDate desc"|"institution"|"institution desc"|"lastModifiedDate"|"lastModifiedDate desc"|"licenseCountry"|"licenseCountry desc"|"licenseName"|"licenseName desc"|"licenseNumber"|"licenseNumber desc"|"licenseState"|"licenseState desc"|"name"|"name desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"custom1"|"description"|"endDate"|"institution"|"lastModifiedDate"|"licenseCountry"|"licenseName"|"licenseNumber"|"licenseState"|"name"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundCommunitiesQueries
Represents the Queries record for the operation: listBackgroundCommunities
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"endDate"|"endDate desc"|"lastModifiedDate"|"lastModifiedDate desc"|"name"|"name desc"|"role"|"role desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"endDate"|"lastModifiedDate"|"name"|"role"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundCompensationsQueries
Represents the Queries record for the operation: listBackgroundCompensations
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"compaRatio"|"compaRatio desc"|"curSalary"|"curSalary desc"|"finSalary"|"finSalary desc"|"jobTitle"|"jobTitle desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lumpSum"|"lumpSum desc"|"merit"|"merit desc"|"options"|"options desc"|"pmRating"|"pmRating desc"|"stock"|"stock desc"|"sysCompTemplateName"|"sysCompTemplateName desc"|"sysReviewEndDate"|"sysReviewEndDate desc"|"sysReviewStartDate"|"sysReviewStartDate desc"|"totalComp"|"totalComp desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"compaRatio"|"curSalary"|"finSalary"|"jobTitle"|"lastModifiedDate"|"lumpSum"|"merit"|"options"|"pmRating"|"stock"|"sysCompTemplateName"|"sysReviewEndDate"|"sysReviewStartDate"|"totalComp"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundCoursessQueries
Represents the Queries record for the operation: listBackgroundCoursess
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"course"|"course desc"|"endDate"|"endDate desc"|"institution"|"institution desc"|"instructionType"|"instructionType desc"|"lastModifiedDate"|"lastModifiedDate desc"|"length"|"length desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"course"|"endDate"|"institution"|"instructionType"|"lastModifiedDate"|"length"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundDocumentssQueries
Represents the Queries record for the operation: listBackgroundDocumentss
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? ("DocName"|"DocName desc"|"attachment"|"attachment desc"|"backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"lastModifiedDate"|"lastModifiedDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("DocName"|"attachment"|"backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundEducationsQueries
Represents the Queries record for the operation: listBackgroundEducations
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"degree"|"degree desc"|"degreeDate"|"degreeDate desc"|"endDate"|"endDate desc"|"lastModifiedDate"|"lastModifiedDate desc"|"major"|"major desc"|"school"|"school desc"|"schoolAddress"|"schoolAddress desc"|"schoolCity"|"schoolCity desc"|"schoolCountry"|"schoolCountry desc"|"schoolState"|"schoolState desc"|"schoolType"|"schoolType desc"|"schoolZip"|"schoolZip desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"degree"|"degreeDate"|"endDate"|"lastModifiedDate"|"major"|"school"|"schoolAddress"|"schoolCity"|"schoolCountry"|"schoolState"|"schoolType"|"schoolZip"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundFsaelectionsQueries
Represents the Queries record for the operation: listBackgroundFsaelections
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"fsabalance"|"fsabalance desc"|"fsacontributions"|"fsacontributions desc"|"fsaelectionamount"|"fsaelectionamount desc"|"fsafundsout"|"fsafundsout desc"|"fsaplan"|"fsaplan desc"|"fsarepayment"|"fsarepayment desc"|"lastModifiedDate"|"lastModifiedDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"fsabalance"|"fsacontributions"|"fsaelectionamount"|"fsafundsout"|"fsaplan"|"fsarepayment"|"lastModifiedDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundFuncExperiencesQueries
Represents the Queries record for the operation: listBackgroundFuncExperiences
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"comments"|"comments desc"|"experience"|"experience desc"|"lastModifiedDate"|"lastModifiedDate desc"|"userId"|"userId desc"|"years"|"years desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"comments"|"experience"|"lastModifiedDate"|"userId"|"years")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundGoogledocssQueries
Represents the Queries record for the operation: listBackgroundGoogledocss
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"documentName"|"documentName desc"|"documenturl"|"documenturl desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastmodifieddate"|"lastmodifieddate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"documentName"|"documenturl"|"lastModifiedDate"|"lastmodifieddate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundInsideWorkExperiencesQueries
Represents the Queries record for the operation: listBackgroundInsideWorkExperiences
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"department"|"department desc"|"endDate"|"endDate desc"|"lastModifiedDate"|"lastModifiedDate desc"|"startDate"|"startDate desc"|"title"|"title desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"department"|"endDate"|"lastModifiedDate"|"startDate"|"title"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundLanguagessQueries
Represents the Queries record for the operation: listBackgroundLanguagess
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"language"|"language desc"|"lastModifiedDate"|"lastModifiedDate desc"|"readingProf"|"readingProf desc"|"speakingProf"|"speakingProf desc"|"userId"|"userId desc"|"variant"|"variant desc"|"writingProf"|"writingProf desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"language"|"lastModifiedDate"|"readingProf"|"speakingProf"|"userId"|"variant"|"writingProf")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundLeadExperiencesQueries
Represents the Queries record for the operation: listBackgroundLeadExperiences
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"comments"|"comments desc"|"dollars"|"dollars desc"|"experience"|"experience desc"|"lastModifiedDate"|"lastModifiedDate desc"|"people"|"people desc"|"userId"|"userId desc"|"years"|"years desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"comments"|"dollars"|"experience"|"lastModifiedDate"|"people"|"userId"|"years")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundMembershipssQueries
Represents the Queries record for the operation: listBackgroundMembershipss
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"endDate"|"endDate desc"|"lastModifiedDate"|"lastModifiedDate desc"|"organization"|"organization desc"|"role"|"role desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"endDate"|"lastModifiedDate"|"organization"|"role"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundMobilitiesQueries
Represents the Queries record for the operation: listBackgroundMobilities
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"lastModifiedDate"|"lastModifiedDate desc"|"location"|"location desc"|"userId"|"userId desc"|"willingness"|"willingness desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"location"|"userId"|"willingness")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundOutsideWorkExperiencesQueries
Represents the Queries record for the operation: listBackgroundOutsideWorkExperiences
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"businessType"|"businessType desc"|"employer"|"employer desc"|"employerAddress"|"employerAddress desc"|"employerCity"|"employerCity desc"|"employerContact"|"employerContact desc"|"employerCountry"|"employerCountry desc"|"employerEmail"|"employerEmail desc"|"employerPhone"|"employerPhone desc"|"employerState"|"employerState desc"|"employerZip"|"employerZip desc"|"endDate"|"endDate desc"|"lastModifiedDate"|"lastModifiedDate desc"|"presentEmployer"|"presentEmployer desc"|"startDate"|"startDate desc"|"startTitle"|"startTitle desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"businessType"|"employer"|"employerAddress"|"employerCity"|"employerContact"|"employerCountry"|"employerEmail"|"employerPhone"|"employerState"|"employerZip"|"endDate"|"lastModifiedDate"|"presentEmployer"|"startDate"|"startTitle"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundPreferredNextMovesQueries
Represents the Queries record for the operation: listBackgroundPreferredNextMoves
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"comments"|"comments desc"|"function"|"function desc"|"lastModifiedDate"|"lastModifiedDate desc"|"level"|"level desc"|"timeframe"|"timeframe desc"|"title"|"title desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"comments"|"function"|"lastModifiedDate"|"level"|"timeframe"|"title"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundPromotabilitiesQueries
Represents the Queries record for the operation: listBackgroundPromotabilities
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"comment"|"comment desc"|"function"|"function desc"|"lastModifiedDate"|"lastModifiedDate desc"|"level"|"level desc"|"timeframe"|"timeframe desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"comment"|"function"|"lastModifiedDate"|"level"|"timeframe"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundSpecialAssignsQueries
Represents the Queries record for the operation: listBackgroundSpecialAssigns
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"description"|"description desc"|"endDate"|"endDate desc"|"lastModifiedDate"|"lastModifiedDate desc"|"project"|"project desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"description"|"endDate"|"lastModifiedDate"|"project"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundSysScoreCardDevelopmentObjectivesPortletsQueries
Represents the Queries record for the operation: listBackgroundSysScoreCardDevelopmentObjectivesPortlets
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"lastModifiedDate"|"lastModifiedDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundTalentPoolcorpsQueries
Represents the Queries record for the operation: listBackgroundTalentPoolcorps
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"lastModifiedDate"|"lastModifiedDate desc"|"startDate"|"startDate desc"|"talentPoolComments"|"talentPoolComments desc"|"talentPoolStatus"|"talentPoolStatus desc"|"talentPoolitemCorp"|"talentPoolitemCorp desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"startDate"|"talentPoolComments"|"talentPoolStatus"|"talentPoolitemCorp"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundTalentPoolsQueries
Represents the Queries record for the operation: listBackgroundTalentPools
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? ("backgroundElementId"|"backgroundElementId desc"|"bgOrderPos"|"bgOrderPos desc"|"lastModifiedDate"|"lastModifiedDate desc"|"startDate"|"startDate desc"|"talentPoolComments"|"talentPoolComments desc"|"talentPoolStatus"|"talentPoolStatus desc"|"talentPoolitem"|"talentPoolitem desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"bgOrderPos"|"lastModifiedDate"|"startDate"|"talentPoolComments"|"talentPoolStatus"|"talentPoolitem"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundVarPayEmpHistDataECSourcesQueries
Represents the Queries record for the operation: listBackgroundVarPayEmpHistDataECSources
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? ("backgroundElementId"|"backgroundElementId desc"|"basis"|"basis desc"|"country"|"country desc"|"currencyCode"|"currencyCode desc"|"department"|"department desc"|"division"|"division desc"|"endDate"|"endDate desc"|"jobCode"|"jobCode desc"|"jobTitle"|"jobTitle desc"|"lastModifiedDate"|"lastModifiedDate desc"|"location"|"location desc"|"payGrade"|"payGrade desc"|"recordType"|"recordType desc"|"salary"|"salary desc"|"startDate"|"startDate desc"|"tgtPct"|"tgtPct desc"|"userId"|"userId desc"|"varPayProgramName"|"varPayProgramName desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"basis"|"country"|"currencyCode"|"department"|"division"|"endDate"|"jobCode"|"jobTitle"|"lastModifiedDate"|"location"|"payGrade"|"recordType"|"salary"|"startDate"|"tgtPct"|"userId"|"varPayProgramName")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBackgroundVarPayEmpHistDataQueries
Represents the Queries record for the operation: listBackgroundVarPayEmpHistData
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? ("backgroundElementId"|"backgroundElementId desc"|"basis"|"basis desc"|"businessGoalCode"|"businessGoalCode desc"|"country"|"country desc"|"currencyCode"|"currencyCode desc"|"department"|"department desc"|"division"|"division desc"|"endDate"|"endDate desc"|"incentivePlanCode"|"incentivePlanCode desc"|"jobTitle"|"jobTitle desc"|"lastModifiedDate"|"lastModifiedDate desc"|"location"|"location desc"|"payGrade"|"payGrade desc"|"salary"|"salary desc"|"startDate"|"startDate desc"|"tgtPct"|"tgtPct desc"|"userId"|"userId desc"|"varPayProgramName"|"varPayProgramName desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"basis"|"businessGoalCode"|"country"|"currencyCode"|"department"|"division"|"endDate"|"incentivePlanCode"|"jobTitle"|"lastModifiedDate"|"location"|"payGrade"|"salary"|"startDate"|"tgtPct"|"userId"|"varPayProgramName")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListBadgeTemplatessQueries
Represents the Queries record for the operation: listBadgeTemplatess
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? ("badgeId"|"badgeId desc"|"badgeTitle"|"badgeTitle desc"|"customBadge"|"customBadge desc"|"photo"|"photo desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("badgeId"|"badgeTitle"|"customBadge"|"photo")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListEPCustomBackgroundPortletsQueries
Represents the Queries record for the operation: listEPCustomBackgroundPortlets
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? ("backgroundElementId"|"backgroundElementId desc"|"backgroundPropertyLists"|"backgroundPropertyLists desc"|"editable"|"editable desc"|"userId"|"userId desc"|"viewable"|"viewable desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("backgroundElementId"|"backgroundPropertyLists"|"editable"|"userId"|"viewable")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListEPPublicProfilesQueries
Represents the Queries record for the operation: listEPPublicProfiles
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? ("aboutMeVideoToken"|"aboutMeVideoToken desc"|"aboutMeVideoUploadId"|"aboutMeVideoUploadId desc"|"applicationId"|"applicationId desc"|"hasAboutMeVideo"|"hasAboutMeVideo desc"|"hasIntroduction"|"hasIntroduction desc"|"hasMyName"|"hasMyName desc"|"hasMyNameAudio"|"hasMyNameAudio desc"|"introduction"|"introduction desc"|"isAddBadgeAllowed"|"isAddBadgeAllowed desc"|"isBadgesSectionEnabled"|"isBadgesSectionEnabled desc"|"isExpressiveMode"|"isExpressiveMode desc"|"isExpressivePhotoEditable"|"isExpressivePhotoEditable desc"|"mediaServiceBaseUrl"|"mediaServiceBaseUrl desc"|"myNameAudioToken"|"myNameAudioToken desc"|"myNameAudioUploadId"|"myNameAudioUploadId desc"|"myNameText"|"myNameText desc"|"liveProfilePhotoPermission"|"liveProfilePhotoPermission desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("aboutMeVideoToken"|"aboutMeVideoUploadId"|"applicationId"|"hasAboutMeVideo"|"hasIntroduction"|"hasMyName"|"hasMyNameAudio"|"introduction"|"isAddBadgeAllowed"|"isBadgesSectionEnabled"|"isExpressiveMode"|"isExpressivePhotoEditable"|"mediaServiceBaseUrl"|"myNameAudioToken"|"myNameAudioUploadId"|"myNameText"|"liveProfilePhotoPermission"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListTrendDataSysOverallCompetenciesQueries
Represents the Queries record for the operation: listTrendDataSysOverallCompetencies
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? ("description"|"description desc"|"endDate"|"endDate desc"|"id"|"id desc"|"label"|"label desc"|"lastModified"|"lastModified$1"|"max"|"max desc"|"min"|"min desc"|"module"|"module desc"|"name"|"name desc"|"rating"|"rating desc"|"source"|"source desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListTrendDataSysOverallCustom1sQueries
Represents the Queries record for the operation: listTrendDataSysOverallCustom1s
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? ("description"|"description desc"|"endDate"|"endDate desc"|"id"|"id desc"|"label"|"label desc"|"lastModified"|"lastModified$1"|"max"|"max desc"|"min"|"min desc"|"module"|"module desc"|"name"|"name desc"|"rating"|"rating desc"|"source"|"source desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListTrendDataSysOverallCustom2sQueries
Represents the Queries record for the operation: listTrendDataSysOverallCustom2s
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? ("description"|"description desc"|"endDate"|"endDate desc"|"id"|"id desc"|"label"|"label desc"|"lastModified"|"lastModified$1"|"max"|"max desc"|"min"|"min desc"|"module"|"module desc"|"name"|"name desc"|"rating"|"rating desc"|"source"|"source desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListTrendDataSysOverallObjectivesQueries
Represents the Queries record for the operation: listTrendDataSysOverallObjectives
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? ("description"|"description desc"|"endDate"|"endDate desc"|"id"|"id desc"|"label"|"label desc"|"lastModified"|"lastModified$1"|"max"|"max desc"|"min"|"min desc"|"module"|"module desc"|"name"|"name desc"|"rating"|"rating desc"|"source"|"source desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListTrendDataSysOverallPerformancesQueries
Represents the Queries record for the operation: listTrendDataSysOverallPerformances
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? ("description"|"description desc"|"endDate"|"endDate desc"|"id"|"id desc"|"label"|"label desc"|"lastModified"|"lastModified$1"|"max"|"max desc"|"min"|"min desc"|"module"|"module desc"|"name"|"name desc"|"rating"|"rating desc"|"source"|"source desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListTrendDataSysOverallPotentialsQueries
Represents the Queries record for the operation: listTrendDataSysOverallPotentials
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? ("description"|"description desc"|"endDate"|"endDate desc"|"id"|"id desc"|"label"|"label desc"|"lastModified"|"lastModified$1"|"max"|"max desc"|"min"|"min desc"|"module"|"module desc"|"name"|"name desc"|"rating"|"rating desc"|"source"|"source desc"|"startDate"|"startDate desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("description"|"endDate"|"id"|"label"|"lastModified"|"max"|"min"|"module"|"name"|"rating"|"source"|"startDate"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ListUserBadgessQueries
Represents the Queries record for the operation: listUserBadgess
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? ("badgeCreatorName"|"badgeCreatorName desc"|"badgeId"|"badgeId desc"|"badgeInstanceId"|"badgeInstanceId desc"|"badgeTitle"|"badgeTitle desc"|"comment"|"comment desc"|"creatorUserID"|"creatorUserID desc"|"lastModified"|"lastModified$1"|"photo"|"photo desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("badgeCreatorName"|"badgeId"|"badgeInstanceId"|"badgeTitle"|"comment"|"creatorUserID"|"lastModified"|"photo"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecemployeeprofile: ModifiedBackground_Awards
Fields
- d? Background_Awards -
sap.successfactors.ecemployeeprofile: ModifiedBackground_Benefitselection
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_Certificates
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_Community
Fields
- d? Background_Community -
sap.successfactors.ecemployeeprofile: ModifiedBackground_Compensation
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_Courses
Fields
- d? Background_Courses -
sap.successfactors.ecemployeeprofile: ModifiedBackground_Documents
Fields
- d? Background_Documents -
sap.successfactors.ecemployeeprofile: ModifiedBackground_Education
Fields
- d? Background_Education -
sap.successfactors.ecemployeeprofile: ModifiedBackground_Fsaelection
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_FuncExperience
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_Googledocs
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_InsideWorkExperience
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_Languages
Fields
- d? Background_Languages -
sap.successfactors.ecemployeeprofile: ModifiedBackground_LeadExperience
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_Memberships
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_Mobility
Fields
- d? Background_Mobility -
sap.successfactors.ecemployeeprofile: ModifiedBackground_OutsideWorkExperience
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_PreferredNextMove
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_Promotability
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_SpecialAssign
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_SysScoreCardDevelopmentObjectivesPortlet
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_TalentPool
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_TalentPoolcorp
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_VarPayEmpHistData
Fields
sap.successfactors.ecemployeeprofile: ModifiedBackground_VarPayEmpHistDataECSource
Fields
sap.successfactors.ecemployeeprofile: ModifiedEPPublicProfile
Fields
- d? EPPublicProfile -
sap.successfactors.ecemployeeprofile: ModifiedTrendData_SysOverallCompetency
Fields
sap.successfactors.ecemployeeprofile: ModifiedTrendData_SysOverallCustom1
Fields
sap.successfactors.ecemployeeprofile: ModifiedTrendData_SysOverallCustom2
Fields
sap.successfactors.ecemployeeprofile: ModifiedTrendData_SysOverallObjective
Fields
sap.successfactors.ecemployeeprofile: ModifiedTrendData_SysOverallPerformance
Fields
sap.successfactors.ecemployeeprofile: ModifiedTrendData_SysOverallPotential
Fields
sap.successfactors.ecemployeeprofile: TrendData_SysOverallCompetency
Fields
- endDate? string -
- id? string -
- startDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: TrendData_SysOverallCompetency_1
Fields
sap.successfactors.ecemployeeprofile: TrendData_SysOverallCustom1
Fields
- endDate? string -
- id? string -
- startDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: TrendData_SysOverallCustom1_1
Fields
sap.successfactors.ecemployeeprofile: TrendData_SysOverallCustom2
Fields
- endDate? string -
- id? string -
- startDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: TrendData_SysOverallCustom2_1
Fields
sap.successfactors.ecemployeeprofile: TrendData_SysOverallObjective
Fields
- endDate? string -
- id? string -
- startDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: TrendData_SysOverallObjective_1
Fields
sap.successfactors.ecemployeeprofile: TrendData_SysOverallPerformance
Fields
- endDate? string -
- id? string -
- startDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: TrendData_SysOverallPerformance_1
Fields
sap.successfactors.ecemployeeprofile: TrendData_SysOverallPotential
Fields
- endDate? string -
- id? string -
- startDate? string -
- userId? string -
sap.successfactors.ecemployeeprofile: TrendData_SysOverallPotential_1
Fields
sap.successfactors.ecemployeeprofile: UserBadges
Fields
- badgeInstanceId? Signed32 -
- userId? string -
sap.successfactors.ecemployeeprofile: UserBadges_1
Fields
- d? UserBadges -
sap.successfactors.ecemployeeprofile: Wrapper
Fields
sap.successfactors.ecemployeeprofile: Wrapper_1
Fields
sap.successfactors.ecemployeeprofile: Wrapper_10
Fields
sap.successfactors.ecemployeeprofile: Wrapper_11
Fields
sap.successfactors.ecemployeeprofile: Wrapper_12
Fields
sap.successfactors.ecemployeeprofile: Wrapper_13
Fields
sap.successfactors.ecemployeeprofile: Wrapper_14
Fields
sap.successfactors.ecemployeeprofile: Wrapper_15
Fields
sap.successfactors.ecemployeeprofile: Wrapper_16
Fields
sap.successfactors.ecemployeeprofile: Wrapper_17
Fields
sap.successfactors.ecemployeeprofile: Wrapper_18
Fields
sap.successfactors.ecemployeeprofile: Wrapper_19
Fields
sap.successfactors.ecemployeeprofile: Wrapper_2
Fields
sap.successfactors.ecemployeeprofile: Wrapper_20
Fields
sap.successfactors.ecemployeeprofile: Wrapper_21
Fields
sap.successfactors.ecemployeeprofile: Wrapper_22
Fields
sap.successfactors.ecemployeeprofile: Wrapper_23
Fields
sap.successfactors.ecemployeeprofile: Wrapper_24
Fields
sap.successfactors.ecemployeeprofile: Wrapper_25
Fields
sap.successfactors.ecemployeeprofile: Wrapper_26
Fields
sap.successfactors.ecemployeeprofile: Wrapper_27
Fields
sap.successfactors.ecemployeeprofile: Wrapper_28
Fields
sap.successfactors.ecemployeeprofile: Wrapper_29
Fields
sap.successfactors.ecemployeeprofile: Wrapper_3
Fields
sap.successfactors.ecemployeeprofile: Wrapper_30
Fields
sap.successfactors.ecemployeeprofile: Wrapper_31
Fields
sap.successfactors.ecemployeeprofile: Wrapper_32
Fields
sap.successfactors.ecemployeeprofile: Wrapper_33
Fields
sap.successfactors.ecemployeeprofile: Wrapper_34
Fields
sap.successfactors.ecemployeeprofile: Wrapper_4
Fields
sap.successfactors.ecemployeeprofile: Wrapper_5
Fields
sap.successfactors.ecemployeeprofile: Wrapper_6
Fields
sap.successfactors.ecemployeeprofile: Wrapper_7
Fields
sap.successfactors.ecemployeeprofile: Wrapper_8
Fields
sap.successfactors.ecemployeeprofile: Wrapper_9
Fields
Import
import ballerinax/sap.successfactors.ecemployeeprofile;Metadata
Released date: 13 days ago
Version: 1.0.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.12.0
GraalVM compatible: Yes
Pull count
Total: 2
Current verison: 1
Weekly downloads
Keywords
Business Management/HCM
Cost/Paid
Vendor/SAP
SuccessFactors
Employee Central
Contributors