<?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 Update infotype in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotype/m-p/2563788#M584767</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to update infotype 22, 31 , 68. I am using function module "HR_INFOTYPE_OPERATION". But using this FM i can only upate the fields of infotype which are reflected in the infotype screen. I need to update other fields which are there in the PA table but not reflected in the screen.&lt;/P&gt;&lt;P&gt;Is there any other function module available?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Aug 2007 06:04:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-03T06:04:32Z</dc:date>
    <item>
      <title>Update infotype</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotype/m-p/2563788#M584767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to update infotype 22, 31 , 68. I am using function module "HR_INFOTYPE_OPERATION". But using this FM i can only upate the fields of infotype which are reflected in the infotype screen. I need to update other fields which are there in the PA table but not reflected in the screen.&lt;/P&gt;&lt;P&gt;Is there any other function module available?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 06:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotype/m-p/2563788#M584767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-03T06:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Update infotype</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotype/m-p/2563789#M584768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="114479"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 06:16:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotype/m-p/2563789#M584768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-03T06:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Update infotype</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotype/m-p/2563790#M584769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the Function Module &amp;lt;b&amp;gt;HR_MAINTAIN_MASTERDATA&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module enables you to maintain master data for employees and applicants. You can enter field names and contents in the 'proposed values' table. This will then be transferred to the corresponding infotypes. The same validation checks take place as would in the individual maintenance screens for the infotypes. You can enter as much data as you like. You can enter several records or infotypes at once. You are responsible for making sure that the data is consistent. If necessary, the module returns an error message. The error messages are the same as the those which appear in the dialog, in other words, the individual maintenance screen error messages are transferred rather than interpreted by this module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Exanple&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_MAINTAIN_MASTERDATA'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;pernr = p_0735-pernr&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MASSN =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;actio = 'MOD'&lt;/P&gt;&lt;P&gt;tclas = 'A'&lt;/P&gt;&lt;P&gt;begda = p_0735-begda&lt;/P&gt;&lt;P&gt;endda = p_0735-endda&lt;/P&gt;&lt;P&gt;objps = p_0735-objps&lt;/P&gt;&lt;P&gt;seqnr = p_0735-seqnr&lt;/P&gt;&lt;P&gt;sprps = p_0735-sprps&lt;/P&gt;&lt;P&gt;subty = p_0735-subty&lt;/P&gt;&lt;P&gt;*Put 0 here when everything is ok. 1 shows dialog on error.&lt;/P&gt;&lt;P&gt;dialog_mode = dialog_mode&lt;/P&gt;&lt;P&gt;luw_mode = luw_mode&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NO_EXISTENCE_CHECK = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NO_ENQUEUE = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;return = l_return&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;RETURN1 =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;HR_RETURN =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;proposed_values = l_value_tab&lt;/P&gt;&lt;P&gt;modified_keys = l_pskey.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 09:15:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-infotype/m-p/2563790#M584769</guid>
      <dc:creator>abhijitzope</dc:creator>
      <dc:date>2007-08-03T09:15:41Z</dc:date>
    </item>
  </channel>
</rss>

