<?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: RH_INSERT_INFTY in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862144#M363891</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GOOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this link,which might help you to solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PE/PE.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PE/PE.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Feb 2007 18:02:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-05T18:02:40Z</dc:date>
    <item>
      <title>RH_INSERT_INFTY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862140#M363887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to create a new infotype 1028 for one of the object of the structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunatly I cannot use the function module RH_INSERT_INFTY... Is there any other function modules to be used?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  data : lit_1028 type standard table of hrp1028,
         lwt_1028 like line of lit_1028.

  lwt_1028-begda = c_begda.
  lwt_1028-endda = c_endda.
  lwt_1028-stras = c_stras.
  lwt_1028-hausn = c_hausn.
  lwt_1028-pstlz = c_pstlz.
  lwt_1028-ort01 = c_ort01.
  lwt_1028-land1 = c_land1.
  lwt_1028-infty = '1028'.


  append lwt_1028 to lit_1028.
  call function 'RH_INSERT_INFTY'
    exporting
*   FCODE                     = 'INSE'
      vtask                     = 'S'
*   ORDER_FLG                 = 'X'
*   COMMIT_FLG                = 'X'
    AUTHY                     = space
*   PPPAR_IMP                 =
*   OLD_TABNR                 = ' '
*   REPID                     = ' '
*   FORM                      = ' '
*   KEEP_LUPD                 =
*   WORKF_ACTV                = 'X'
    tables
      innnn                     = lit_1028
   exceptions
     no_authorization          = 1
     error_during_insert       = 2
     repid_form_initial        = 3
     corr_exit                 = 4
     begda_greater_endda       = 5
     others                    = 6.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 07:02:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862140#M363887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T07:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: RH_INSERT_INFTY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862141#M363888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;anybody can help on me ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 07:30:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862141#M363888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T07:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: RH_INSERT_INFTY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862142#M363889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can not u try for BDC for transaction PP01?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 07:48:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862142#M363889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T07:48:00Z</dc:date>
    </item>
    <item>
      <title>Re: RH_INSERT_INFTY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862143#M363890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I works but doesn't seems to be the optimal option...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But thanks for try...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 17:33:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862143#M363890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T17:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: RH_INSERT_INFTY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862144#M363891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GOOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this link,which might help you to solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PE/PE.pdf" target="test_blank"&gt;http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PE/PE.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 18:02:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862144#M363891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T18:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: RH_INSERT_INFTY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862145#M363892</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;The problem is that you're using the wrong structure. You have to use the P1028 instead of HRP1028&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; data : lit_1028 type standard table of P1028&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lwt_1028 like line of lit_1028.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;P&gt;N.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2012 08:10:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/rh-insert-infty/m-p/1862145#M363892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-07-12T08:10:18Z</dc:date>
    </item>
  </channel>
</rss>

