<?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>topic Re: Update infotypes (HR) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935498#M691779</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, what do you recommend ? What exactly do you mean ?? &lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Oct 2007 10:30:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-22T10:30:37Z</dc:date>
    <item>
      <title>Update infotypes (HR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935494#M691775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to find SAP standard routines to update a registry in an infotype that is being modified. The ones that make changes into BEGDA and ENDDA in other existing records, if necessary if there is overlapping. &lt;/P&gt;&lt;P&gt;I need to see changes in dynpro 3000 without having to get out and enter again. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am making some modifications in an own infotype but I can not see the changes when I show the summary (dynpro 3000).  How can I update a registry with determined BEGDA and ENDDA directly? is a lock problem? I am using ENQUEUE_EPPRELE and DEQUEUE_EPPRELE but I can only see the changes when I get out of PA30 completely and I access the registry again so I do not know what I am doing wrong.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Oct 2007 15:40:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935494#M691775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-21T15:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Update infotypes (HR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935495#M691776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please elaborate a bit more on your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think your problem is SAP standard. When you change the infotype you should "refresh" the date to see it in the summary, If a refresh button is not present in PA30, your only option would be to start the transaction again /npa30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Rob Dielemas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 09:54:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935495#M691776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T09:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Update infotypes (HR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935496#M691777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have been proving this code into a FM but I can not see the results in database. Perhaps it can not be done but it seems to be there is a problem with commit. (I think it is correct that way). &lt;/P&gt;&lt;P&gt;Can anyone help ? Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        p9007-pernr = pernr.&lt;/P&gt;&lt;P&gt;        p9007-infty = '9007'.&lt;/P&gt;&lt;P&gt;        p9007-subty = subty.&lt;/P&gt;&lt;P&gt;        p9007-begda = begda.&lt;/P&gt;&lt;P&gt;        p9007-endda = endda_n.&lt;/P&gt;&lt;P&gt;        p9007-ZZCLSEXP = subty.&lt;/P&gt;&lt;P&gt;        p9007-doc_status = 'CD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'HR_EMPLOYEE_ENQUEUE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   NUMBER             = pernr&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   RETURN             = return_enqueue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF RETURN_ENQUEUE-NUMBER IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF&lt;/P&gt;&lt;P&gt;                                .&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'HR_INFOTYPE_OPERATION'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            INFTY                  = '9007'&lt;/P&gt;&lt;P&gt;            NUMBER                 = pernr&lt;/P&gt;&lt;P&gt;            SUBTYPE                = subty&lt;/P&gt;&lt;P&gt;            VALIDITYEND            = endda&lt;/P&gt;&lt;P&gt;            VALIDITYBEGIN          = begda&lt;/P&gt;&lt;P&gt;            RECORD                 = p9007&lt;/P&gt;&lt;P&gt;            OPERATION              = 'MOD'&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            RETURN                 = return1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF RETURN1-NUMBER IS INITIAL.&lt;/P&gt;&lt;P&gt;  COMMIT WORK.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_EMPLOYEE_DEQUEUE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   NUMBER        = pernr&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   RETURN        = return_dequeue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 10:03:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935496#M691777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T10:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Update infotypes (HR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935497#M691778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you test you changes in PA30 or PA20? Both transactions do a data prefetch and caches a bunch of values, you will not be aware of data changes without leaving them.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 10:22:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935497#M691778</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2007-10-22T10:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Update infotypes (HR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935498#M691779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, what do you recommend ? What exactly do you mean ?? &lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 10:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935498#M691779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T10:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Update infotypes (HR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935499#M691780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you are going to PA20 and watch the case you want to modify you have to leave the entire tansaction to see yout changes. A lot of HR Transactions are doing a prefetch of a lot of tables never refreshing them. If you modify tables you cant see the changes without leaving PA20. Many HR-transacztion behave like that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 10:33:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935499#M691780</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2007-10-22T10:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Update infotypes (HR)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935500#M691781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don;t see entries in table pa9007 then I guess that the update doesn't work and you should find out why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can't your requirement be fulfilled using dynamic actions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, Rob.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2007 15:11:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotypes-hr/m-p/2935500#M691781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-22T15:11:01Z</dc:date>
    </item>
  </channel>
</rss>

