<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Successfactors: Odata API to create a time off entry for an employee in Human Capital Management Q&amp;A</title>
    <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485883#M1012</link>
    <description>&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;Check the below entities for your queries.&lt;/P&gt;&lt;P&gt;1. Query by giving an employee number and get their time off balances&lt;/P&gt;&lt;P&gt;&lt;A href="https://&amp;lt;hostname&amp;gt;/odata/v2/EmpTimeAccountBalance?$filter=userId" target="test_blank"&gt;https://&amp;lt;hostname&amp;gt;/odata/v2/EmpTimeAccountBalance?$filter=userId&lt;/A&gt; eq '&amp;lt;userIdValue&amp;gt;' and timeAccountType eq '&amp;lt;timeTypevalue&amp;gt;'&lt;/P&gt;&lt;P&gt;above service will give you the total leaves for the current year in the property &lt;STRONG&gt;balance&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;A href="https://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime?$filter=userId" target="test_blank"&gt;https://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime?$filter=userId&lt;/A&gt; eq '&amp;lt;userIdValue&amp;gt;' and (timeType eq '&amp;lt;timeTypevalue&amp;gt;') and (startDate ge datetime'2017-01-01T00:00:00')&lt;/P&gt;&lt;P&gt;in response u can find the property &lt;STRONG&gt;deductionQuantity for the timeType. this is a list of records for the current year. sum all the deduction quantity from the response list.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;balances = balance - (sum of &lt;/STRONG&gt;&lt;B&gt;deductionQuantity) &lt;/B&gt;&lt;/P&gt;&lt;P&gt;2. Create a time off request for a specific start date and end date and time off type.&lt;/P&gt;&lt;P&gt;&lt;A href="https://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime" target="test_blank"&gt;https://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Payload: &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;{
"__metadata" : {
"uri" : "http://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime",
"type": "SFOData.EmployeeTime"},
"startDate": "/Date(1483920000000)/",
"endDate": "/Date(1483920000000)/",
"externalCode": "&amp;lt;some unique value&amp;gt;",
"userIdNav": {
          "__metadata": {
            "uri": "https://&amp;lt;hostname&amp;gt;/odata/v2/User('&amp;lt;userId&amp;gt;')",
            "type": "SFOData.User"
          }},
"timeTypeNav": {
          "__metadata": {
            "uri": "https://&amp;lt;hostname&amp;gt;/odata/v2/TimeType('&amp;lt;timeType&amp;gt;')",
            "type": "SFOData.TimeType"
          }
}
}&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Consider the property externalCode which should be unique value always like key parameter while creating.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Venu&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 26 May 2017 18:07:35 GMT</pubDate>
    <dc:creator>former_member206574</dc:creator>
    <dc:date>2017-05-26T18:07:35Z</dc:date>
    <item>
      <title>Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaq-p/485882</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have a web application which needs to create a time off vacation entry for users in Successfactors. Obviously, we need to use SuccessFactors  Odata APIs to do this. We are looking for the specific APIs that we can use to do the following:&lt;/P&gt;&lt;P&gt;1. Query by giving an employee number and get their time off balances&lt;/P&gt;&lt;P&gt;2. Create a time off request for a specific start date and end date and time off type.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2017 02:12:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaq-p/485882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2017-05-12T02:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485883#M1012</link>
      <description>&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;Check the below entities for your queries.&lt;/P&gt;&lt;P&gt;1. Query by giving an employee number and get their time off balances&lt;/P&gt;&lt;P&gt;&lt;A href="https://&amp;lt;hostname&amp;gt;/odata/v2/EmpTimeAccountBalance?$filter=userId" target="test_blank"&gt;https://&amp;lt;hostname&amp;gt;/odata/v2/EmpTimeAccountBalance?$filter=userId&lt;/A&gt; eq '&amp;lt;userIdValue&amp;gt;' and timeAccountType eq '&amp;lt;timeTypevalue&amp;gt;'&lt;/P&gt;&lt;P&gt;above service will give you the total leaves for the current year in the property &lt;STRONG&gt;balance&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;A href="https://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime?$filter=userId" target="test_blank"&gt;https://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime?$filter=userId&lt;/A&gt; eq '&amp;lt;userIdValue&amp;gt;' and (timeType eq '&amp;lt;timeTypevalue&amp;gt;') and (startDate ge datetime'2017-01-01T00:00:00')&lt;/P&gt;&lt;P&gt;in response u can find the property &lt;STRONG&gt;deductionQuantity for the timeType. this is a list of records for the current year. sum all the deduction quantity from the response list.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;balances = balance - (sum of &lt;/STRONG&gt;&lt;B&gt;deductionQuantity) &lt;/B&gt;&lt;/P&gt;&lt;P&gt;2. Create a time off request for a specific start date and end date and time off type.&lt;/P&gt;&lt;P&gt;&lt;A href="https://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime" target="test_blank"&gt;https://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Payload: &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;{
"__metadata" : {
"uri" : "http://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime",
"type": "SFOData.EmployeeTime"},
"startDate": "/Date(1483920000000)/",
"endDate": "/Date(1483920000000)/",
"externalCode": "&amp;lt;some unique value&amp;gt;",
"userIdNav": {
          "__metadata": {
            "uri": "https://&amp;lt;hostname&amp;gt;/odata/v2/User('&amp;lt;userId&amp;gt;')",
            "type": "SFOData.User"
          }},
"timeTypeNav": {
          "__metadata": {
            "uri": "https://&amp;lt;hostname&amp;gt;/odata/v2/TimeType('&amp;lt;timeType&amp;gt;')",
            "type": "SFOData.TimeType"
          }
}
}&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Consider the property externalCode which should be unique value always like key parameter while creating.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Venu&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 May 2017 18:07:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485883#M1012</guid>
      <dc:creator>former_member206574</dc:creator>
      <dc:date>2017-05-26T18:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485884#M1013</link>
      <description>&lt;P&gt;also you can get using Integration center also, ie simple querying the data&lt;/P&gt;</description>
      <pubDate>Mon, 29 May 2017 18:09:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485884#M1013</guid>
      <dc:creator>siddharthrajora</dc:creator>
      <dc:date>2017-05-29T18:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485885#M1014</link>
      <description>&lt;P&gt;HI Ravi,&lt;/P&gt;
  &lt;P&gt;Have you tried the solution provided by Venu? Did it work? Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2017 06:31:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485885#M1014</guid>
      <dc:creator>former_member217117</dc:creator>
      <dc:date>2017-10-20T06:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485886#M1015</link>
      <description>&lt;P&gt;Hi Venugopal,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;I did try this and I am surprised by the results. &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;This query delivers the results that is expected, however, I am afraid I have to say, the Workflow doesnt get triggered at all. &lt;/P&gt;
  &lt;P&gt;Do you have anything specific in mind to make it work? &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Thanks,&lt;/P&gt;
  &lt;P&gt;Kunjal &lt;/P&gt;</description>
      <pubDate>Mon, 02 Apr 2018 09:52:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485886#M1015</guid>
      <dc:creator>KP-1</dc:creator>
      <dc:date>2018-04-02T09:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485887#M1016</link>
      <description>&lt;P&gt;THANKS¡ Venugopal&lt;/P&gt;</description>
      <pubDate>Sat, 08 Sep 2018 16:39:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485887#M1016</guid>
      <dc:creator>former_member22925</dc:creator>
      <dc:date>2018-09-08T16:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485888#M1017</link>
      <description>&lt;P&gt;Hi Venugopal,&lt;/P&gt;&lt;P&gt;I have same question with Kunjal.&lt;/P&gt;&lt;P&gt;How to trigger the workflow(approve the leave request etc.) by using this API?&lt;/P&gt;&lt;P&gt;Thanks. Kevin&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2019 09:06:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485888#M1017</guid>
      <dc:creator>former_member603293</dc:creator>
      <dc:date>2019-06-17T09:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485889#M1018</link>
      <description>&lt;P&gt;Documentation provided by SAP-&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/doc/7efdca36492e47c7b20ab92c4ca6323c/1908/en-US/SF_EC_OData_API_REF.pdf" target="test_blank"&gt;https://help.sap.com/doc/7efdca36492e47c7b20ab92c4ca6323c/1908/en-US/SF_EC_OData_API_REF.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;API 1&lt;/STRONG&gt;-https://&amp;lt;host&amp;gt;/odata/v2/EmpTimeAccountBalance?$filter=userId eq '3334343' and timeAccountType+in+'EL_Ind','SL_Ind','CL_Ind' &amp;amp;$format=json&lt;/P&gt;&lt;P&gt;Above
API will give you the total available leaves as of today date.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;API
2: &lt;/STRONG&gt;&lt;A href="https://&amp;lt;host&amp;gt;/odata/v2/EmployeeTime?$filter=(userId" target="test_blank"&gt;https://&amp;lt;host&amp;gt;/odata/v2/EmployeeTime?$filter=(userId&lt;/A&gt; eq '3334343') and (approvalStatus eq 'APPROVED') and (timeType eq 'CL_Ind') and (startDate gt datetime'2019-10-19T00:00:00') &amp;amp;$format=json&lt;/P&gt;&lt;P&gt;Above
API will give us list of approved leaves of an employee by passing user id and
status Approved and Time Type And
date greater than today date.&lt;/P&gt;&lt;P&gt;Get Total available leave balance for particular leave type:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Total Leave
Balance=API 1(balance)- API 2&lt;/STRONG&gt; &lt;STRONG&gt;(sum of &lt;/STRONG&gt;&lt;B&gt;deductionQuantity)&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;&lt;BR /&gt;&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Priti&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 08:22:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485889#M1018</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-10-21T08:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485890#M1019</link>
      <description>&lt;P&gt;Hi Kunjal &amp;amp; Kevin, &lt;/P&gt;&lt;P&gt;In order to trigger workflow &lt;/P&gt;&lt;P&gt;please use following endpoint &lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;POST   &lt;/STRONG&gt;&lt;/EM&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;A href="https://&amp;lt;HOSTNAME&amp;gt;/odata/v2/upsert?workflowConfirmed=true&amp;amp;$format=json" target="test_blank"&gt;https://&amp;lt;HOSTNAME&amp;gt;/odata/v2/upsert?workflowConfirmed=true&amp;amp;$format=json&lt;/A&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;{ &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;
                "__metadata": {
                    "uri": "https://&amp;lt;hostname&amp;gt;/odata/v2/EmployeeTime",
                    "type": "SFOData.EmployeeTime"
                }, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;                "startDate": "/Date(1484677800000)/", &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;                "endDate": "/Date(1484739000000)/", &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;                "externalCode":"&amp;lt;UNIQUE VALUE&amp;gt;", &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;"approvalStatus": "PENDING", &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;                "userIdNav": {
                "__metadata": {
                        "uri": "https://&amp;lt;hostname&amp;gt;/odata/v2/User('&amp;lt;USERID&amp;gt;')",
                        "type": "SFOData.User"
                    }
                }, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;                "timeTypeNav": {
                "__metadata": {
                        "uri": "https://&amp;lt;hostname&amp;gt;/odata/v2/TimeType('&amp;lt;TIMETYPE&amp;gt;')",
                        "type": "SFOData.TimeType"
                    } }&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;
}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;This will trigger workflow. &lt;/P&gt;&lt;P&gt;Try to use oAuth for this POST. If you use a technical user than make sure, it has no admin access to MDF oData API as below statement&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;The parameter has no impact on admin users with the Admin access to MDF OData API permission. If an admin user creates or changes a record for a workflow-enabled entity, no workflow is triggered and the record is saved as normal data.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/viewer/d599f15995d348a1b45ba5603e2aba9b/1911/en-US/886cdf72d3474996889d0b306d30c27c.html"&gt;https://help.sap.com/viewer/d599f15995d348a1b45ba5603e2aba9b/1911/en-US/886cdf72d3474996889d0b306d30c27c.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Ravi &lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 19:24:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485890#M1019</guid>
      <dc:creator>former_member512458</dc:creator>
      <dc:date>2020-01-28T19:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485891#M1020</link>
      <description>&lt;P&gt;hello Ravi,&lt;/P&gt;&lt;P&gt;unable to open the link mentioned by you.&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/viewer/d599f15995d348a1b45ba5603e2aba9b/1911/en-US/886cdf72d3474996889d0b306d30c27c.html"&gt;https://help.sap.com/viewer/d599f15995d348a1b45ba5603e2aba9b/1911/en-US/886cdf72d3474996889d0b306d30c27c.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Kindly help with description or correct link.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 10:16:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485891#M1020</guid>
      <dc:creator>Kshetrali</dc:creator>
      <dc:date>2020-10-16T10:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485892#M1021</link>
      <description>&lt;P&gt;how to query in bulk data abstraction for number of leaves&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 11:57:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485892#M1021</guid>
      <dc:creator>former_member48810</dc:creator>
      <dc:date>2021-01-13T11:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485893#M1022</link>
      <description>&lt;P&gt;Pankaj - Quick tip that might help you get an answer to your question quicker:&lt;BR /&gt;Please raise your question again as a new question and
follow our rules of engagement: &lt;A href="https://community.sap.com/resources/rules-of-engagement"&gt;https://community.sap.com/resources/rules-of-engagement&lt;/A&gt;.
The author of the original question is no longer active in the community and
won't receive your query. With the help of our Q&amp;amp;A tutorial: &lt;A href="https://developers.sap.com/tutorials/community-qa.html"&gt;https://developers.sap.com/tutorials/community-qa.html&lt;/A&gt;,
you'll be able to prepare questions that draw responses from our members.&lt;BR /&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2021 17:04:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485893#M1022</guid>
      <dc:creator>lenastodal</dc:creator>
      <dc:date>2021-02-17T17:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485894#M1023</link>
      <description>&lt;P&gt;Unable to do that. Please share the steps.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jul 2021 04:17:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485894#M1023</guid>
      <dc:creator>souptiksom</dc:creator>
      <dc:date>2021-07-16T04:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485895#M1024</link>
      <description>&lt;P&gt;hai ravi,I am also facing same issue,please help me out&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jul 2021 20:11:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485895#M1024</guid>
      <dc:creator>former_member757322</dc:creator>
      <dc:date>2021-07-19T20:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: Successfactors: Odata API to create a time off entry for an employee</title>
      <link>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485896#M1025</link>
      <description>&lt;P&gt;This really helped me. The API documentation is terrifying &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Oct 2021 13:50:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/human-capital-management-q-a/successfactors-odata-api-to-create-a-time-off-entry-for-an-employee/qaa-p/485896#M1025</guid>
      <dc:creator>Radoslav</dc:creator>
      <dc:date>2021-10-14T13:50:45Z</dc:date>
    </item>
  </channel>
</rss>

