<?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 hr outbound interface.....run time error in code!!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177634#M462720</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anyone help ....&lt;/P&gt;&lt;P&gt;this is the part of code showing run time error....can anyoune help me find what the problem is??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;SELECT   pernr&amp;lt;/b&amp;gt;      "&amp;lt;b&amp;gt;the error is at this line&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;           werks&lt;/P&gt;&lt;P&gt;           persg&lt;/P&gt;&lt;P&gt;           persk&lt;/P&gt;&lt;P&gt;  INTO TABLE it_pa0001&lt;/P&gt;&lt;P&gt;  FROM pa0001&lt;/P&gt;&lt;P&gt;  WHERE pernr EQ p_pernr&lt;/P&gt;&lt;P&gt;        AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;        AND endda &amp;gt; sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*get data from PA0002&lt;/P&gt;&lt;P&gt;  IF it_pa0001 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;  SELECT   pernr&lt;/P&gt;&lt;P&gt;           nachn&lt;/P&gt;&lt;P&gt;           vorna&lt;/P&gt;&lt;P&gt;           gesch&lt;/P&gt;&lt;P&gt;           gbdat&lt;/P&gt;&lt;P&gt;           famst&lt;/P&gt;&lt;P&gt;           perid&lt;/P&gt;&lt;P&gt;    INTO TABLE it_pa0002&lt;/P&gt;&lt;P&gt;    FROM pa0002&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN it_pa0001&lt;/P&gt;&lt;P&gt;    WHERE pernr = it_pa0001-pernr&lt;/P&gt;&lt;P&gt;         AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;         AND endda &amp;gt; sy-datum.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF it_pa0001 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT pernr&lt;/P&gt;&lt;P&gt;           stras&lt;/P&gt;&lt;P&gt;           ort01&lt;/P&gt;&lt;P&gt;           pstlz&lt;/P&gt;&lt;P&gt;           locat&lt;/P&gt;&lt;P&gt;           state&lt;/P&gt;&lt;P&gt;           telnr&lt;/P&gt;&lt;P&gt;    INTO TABLE it_pa0006&lt;/P&gt;&lt;P&gt;    FROM pa0006&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN it_pa0001&lt;/P&gt;&lt;P&gt;    WHERE pernr = it_pa0001-pernr&lt;/P&gt;&lt;P&gt;         AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;         AND endda &amp;gt; sy-datum&lt;/P&gt;&lt;P&gt;         AND anssa = '1'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF it_pa0001 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT pernr&lt;/P&gt;&lt;P&gt;           begda&lt;/P&gt;&lt;P&gt;           event&lt;/P&gt;&lt;P&gt;    INTO TABLE it_pa0378&lt;/P&gt;&lt;P&gt;    FROM pa0378&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN it_pa0001&lt;/P&gt;&lt;P&gt;    WHERE pernr = it_pa0001-pernr&lt;/P&gt;&lt;P&gt;         AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;         AND endda &amp;gt; sy-datum.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF p_pchk EQ 'X' and p_pres eq 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_pa0002 INTO w_pa0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR w_final_par.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;move values from IT_PA0002&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      w_final_par-pernr = w_pa0002-pernr.&lt;/P&gt;&lt;P&gt;      w_final_par-perid = w_pa0002-perid.&lt;/P&gt;&lt;P&gt;      w_final_par-nachn = w_pa0002-nachn.&lt;/P&gt;&lt;P&gt;      w_final_par-vorna = w_pa0002-vorna.&lt;/P&gt;&lt;P&gt;      w_final_par-gesch = w_pa0002-gesch.&lt;/P&gt;&lt;P&gt;      w_final_par-gbdat = w_pa0002-gbdat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;read address values from IT_PA0006&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      READ TABLE it_pa0006 INTO w_pa0006 WITH KEY pernr = w_pa0002-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;move fields from IT_PA0006&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        w_final_par-stras = w_pa0006-stras.&lt;/P&gt;&lt;P&gt;        w_final_par-ort01 = w_pa0006-ort01.&lt;/P&gt;&lt;P&gt;        w_final_par-pstlz = w_pa0006-pstlz.&lt;/P&gt;&lt;P&gt;        w_final_par-state = w_pa0006-state.&lt;/P&gt;&lt;P&gt;        w_final_par-locat = w_pa0006-locat.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      APPEND w_final_par TO it_final_par.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;read address values from IT_PA0378&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      READ TABLE it_pa0378 INTO w_pa0378 WITH KEY pernr = w_pa0002-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;move fields from IT_PA0378&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        w_final_par-event = w_pa0378-event.&lt;/P&gt;&lt;P&gt;        w_final_par-famst = w_pa0378-famst.&lt;/P&gt;&lt;P&gt;        w_final_par-begda = w_pa0378-begda.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      APPEND w_final_par TO it_final_par.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        filename = pass_file_path&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        data_tab = it_final_par&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS   = 22.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      ULINE.&lt;/P&gt;&lt;P&gt;      WRITE:/5 text-008,28  p_pfile.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Apr 2007 10:04:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-30T10:04:18Z</dc:date>
    <item>
      <title>hr outbound interface.....run time error in code!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177634#M462720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anyone help ....&lt;/P&gt;&lt;P&gt;this is the part of code showing run time error....can anyoune help me find what the problem is??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;SELECT   pernr&amp;lt;/b&amp;gt;      "&amp;lt;b&amp;gt;the error is at this line&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;           werks&lt;/P&gt;&lt;P&gt;           persg&lt;/P&gt;&lt;P&gt;           persk&lt;/P&gt;&lt;P&gt;  INTO TABLE it_pa0001&lt;/P&gt;&lt;P&gt;  FROM pa0001&lt;/P&gt;&lt;P&gt;  WHERE pernr EQ p_pernr&lt;/P&gt;&lt;P&gt;        AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;        AND endda &amp;gt; sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*get data from PA0002&lt;/P&gt;&lt;P&gt;  IF it_pa0001 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;  SELECT   pernr&lt;/P&gt;&lt;P&gt;           nachn&lt;/P&gt;&lt;P&gt;           vorna&lt;/P&gt;&lt;P&gt;           gesch&lt;/P&gt;&lt;P&gt;           gbdat&lt;/P&gt;&lt;P&gt;           famst&lt;/P&gt;&lt;P&gt;           perid&lt;/P&gt;&lt;P&gt;    INTO TABLE it_pa0002&lt;/P&gt;&lt;P&gt;    FROM pa0002&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN it_pa0001&lt;/P&gt;&lt;P&gt;    WHERE pernr = it_pa0001-pernr&lt;/P&gt;&lt;P&gt;         AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;         AND endda &amp;gt; sy-datum.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF it_pa0001 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT pernr&lt;/P&gt;&lt;P&gt;           stras&lt;/P&gt;&lt;P&gt;           ort01&lt;/P&gt;&lt;P&gt;           pstlz&lt;/P&gt;&lt;P&gt;           locat&lt;/P&gt;&lt;P&gt;           state&lt;/P&gt;&lt;P&gt;           telnr&lt;/P&gt;&lt;P&gt;    INTO TABLE it_pa0006&lt;/P&gt;&lt;P&gt;    FROM pa0006&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN it_pa0001&lt;/P&gt;&lt;P&gt;    WHERE pernr = it_pa0001-pernr&lt;/P&gt;&lt;P&gt;         AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;         AND endda &amp;gt; sy-datum&lt;/P&gt;&lt;P&gt;         AND anssa = '1'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF it_pa0001 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    SELECT pernr&lt;/P&gt;&lt;P&gt;           begda&lt;/P&gt;&lt;P&gt;           event&lt;/P&gt;&lt;P&gt;    INTO TABLE it_pa0378&lt;/P&gt;&lt;P&gt;    FROM pa0378&lt;/P&gt;&lt;P&gt;    FOR ALL ENTRIES IN it_pa0001&lt;/P&gt;&lt;P&gt;    WHERE pernr = it_pa0001-pernr&lt;/P&gt;&lt;P&gt;         AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;         AND endda &amp;gt; sy-datum.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF p_pchk EQ 'X' and p_pres eq 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_pa0002 INTO w_pa0002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR w_final_par.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;move values from IT_PA0002&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      w_final_par-pernr = w_pa0002-pernr.&lt;/P&gt;&lt;P&gt;      w_final_par-perid = w_pa0002-perid.&lt;/P&gt;&lt;P&gt;      w_final_par-nachn = w_pa0002-nachn.&lt;/P&gt;&lt;P&gt;      w_final_par-vorna = w_pa0002-vorna.&lt;/P&gt;&lt;P&gt;      w_final_par-gesch = w_pa0002-gesch.&lt;/P&gt;&lt;P&gt;      w_final_par-gbdat = w_pa0002-gbdat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;read address values from IT_PA0006&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      READ TABLE it_pa0006 INTO w_pa0006 WITH KEY pernr = w_pa0002-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;move fields from IT_PA0006&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        w_final_par-stras = w_pa0006-stras.&lt;/P&gt;&lt;P&gt;        w_final_par-ort01 = w_pa0006-ort01.&lt;/P&gt;&lt;P&gt;        w_final_par-pstlz = w_pa0006-pstlz.&lt;/P&gt;&lt;P&gt;        w_final_par-state = w_pa0006-state.&lt;/P&gt;&lt;P&gt;        w_final_par-locat = w_pa0006-locat.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      APPEND w_final_par TO it_final_par.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;read address values from IT_PA0378&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      READ TABLE it_pa0378 INTO w_pa0378 WITH KEY pernr = w_pa0002-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;move fields from IT_PA0378&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        w_final_par-event = w_pa0378-event.&lt;/P&gt;&lt;P&gt;        w_final_par-famst = w_pa0378-famst.&lt;/P&gt;&lt;P&gt;        w_final_par-begda = w_pa0378-begda.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      APPEND w_final_par TO it_final_par.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        filename = pass_file_path&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        data_tab = it_final_par&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        OTHERS   = 22.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      ULINE.&lt;/P&gt;&lt;P&gt;      WRITE:/5 text-008,28  p_pfile.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 10:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177634#M462720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T10:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: hr outbound interface.....run time error in code!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177635#M462721</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;Check if the sequence of the fields in  it_pa0001 and the field list you have written your select statement are the same..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u can use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT pernr "the error is at this line&lt;/P&gt;&lt;P&gt;werks&lt;/P&gt;&lt;P&gt;persg&lt;/P&gt;&lt;P&gt;persk&lt;/P&gt;&lt;P&gt;INTO corresponding fields of TABLE it_pa0001&lt;/P&gt;&lt;P&gt;FROM pa0001&lt;/P&gt;&lt;P&gt;WHERE pernr EQ p_pernr&lt;/P&gt;&lt;P&gt;AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;AND endda &amp;gt; sy-datum&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 10:10:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177635#M462721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T10:10:00Z</dc:date>
    </item>
    <item>
      <title>Re: hr outbound interface.....run time error in code!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177636#M462722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this way...&lt;/P&gt;&lt;P&gt;SELECT pernr "the error is at this line&lt;/P&gt;&lt;P&gt;werks&lt;/P&gt;&lt;P&gt;persg&lt;/P&gt;&lt;P&gt;persk&lt;/P&gt;&lt;P&gt;INTO &amp;lt;b&amp;gt;corresponding fields of&amp;lt;/b&amp;gt; TABLE it_pa0001&lt;/P&gt;&lt;P&gt;FROM pa0001&lt;/P&gt;&lt;P&gt;WHERE pernr EQ p_pernr&lt;/P&gt;&lt;P&gt;AND begda &amp;lt; sy-datum&lt;/P&gt;&lt;P&gt;AND endda &amp;gt; sy-datum.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 10:12:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177636#M462722</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T10:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: hr outbound interface.....run time error in code!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177637#M462723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use  -&lt;/P&gt;&lt;P&gt;SELECT pernr werks persg persk&lt;/P&gt;&lt;P&gt;INTO TABLE it_pa0001&lt;/P&gt;&lt;P&gt;FROM pa0001&lt;/P&gt;&lt;P&gt;WHERE pernr EQ p_pernr&lt;/P&gt;&lt;P&gt;AND begda &amp;lt;= sy-datum&lt;/P&gt;&lt;P&gt;AND endda &amp;gt;= sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming table IT_PA0001 has only these 4 fields and in the following order only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 10:14:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177637#M462723</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-04-30T10:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: hr outbound interface.....run time error in code!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177638#M462724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thankx Santhosh , Ramesh and thankx Amit....&lt;/P&gt;&lt;P&gt;all that worked to overcome the runtime error but now the error showing up is &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ERROR calling data provide&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message no. FES011&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Blank output screen)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any problem with the data retreival code or something else???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 10:48:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177638#M462724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T10:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: hr outbound interface.....run time error in code!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177639#M462725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This error is due to wrong values in GUI_DOWNLOAD FM.&lt;/P&gt;&lt;P&gt;Check the path you are passing, it should be physical path and also for local drive only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 13:03:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hr-outbound-interface-run-time-error-in-code/m-p/2177639#M462725</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-04-30T13:03:50Z</dc:date>
    </item>
  </channel>
</rss>

