<?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: BAPI_PO_CREATE1 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815305#M917651</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;CL_GUI_FRONTEND_SERVICES=&amp;gt;gui_upload to retrieve the file (upload the file).&lt;/P&gt;&lt;P&gt;HOW TO USE THIS??? GV MORE DETAILS PLEASE...I WANT TO read TEST PO DATA.txt file Can you give me example how the test data( Header  data and Item level data is used to fill the test PO data.txt file )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i need to Use OPEN DATASET&lt;/P&gt;&lt;P&gt;CLOSE dATASET command? &lt;/P&gt;&lt;P&gt;how????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points will be rewarded&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 May 2008 06:26:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-16T06:26:44Z</dc:date>
    <item>
      <title>BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815302#M917648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GURUS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CAN YOU PLEASE HELP &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*I WANT TO WRITE A CODE FOR CREATION OF PO USING THE BAPI_PO_CREATE1.&lt;/P&gt;&lt;P&gt;ist i want to put one selection screen &lt;/P&gt;&lt;P&gt;where using AT SELECTION SCREEN ON VALUE REQUEST FOR P_FILE i want  to give browseing option for one text file with test data of PO in my local PC. then when that file is selected then all the HEADER DATA and item level data will be dispalyed.&lt;/P&gt;&lt;P&gt;provide code example, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks *&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 13:09:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815302#M917648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T13:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815303#M917649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use method CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_OPEN_DIALOG in your at selection screen...for P_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next use CL_GUI_FRONTEND_SERVICES=&amp;gt;gui_upload to retrieve the file (upload the file).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at internal table and call BAPI by filling the data from the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Micky Oestreich on May 15, 2008 3:19 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 13:17:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815303#M917649</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-15T13:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815304#M917650</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;see&lt;/P&gt;&lt;P&gt;CL CL_GUI_FRONTEND_SERVICES&lt;/P&gt;&lt;P&gt;____________________________________________________&lt;/P&gt;&lt;P&gt;Short Text&lt;/P&gt;&lt;P&gt;Frontend Services&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functionality&lt;/P&gt;&lt;P&gt;The class CL_GUI_FRONTEND_SERVICES contains static methods for the following areas:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_FILE LIKE RLGRAP-FILENAME.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  DATA: T_FILE_IN TYPE FILETABLE,&lt;/P&gt;&lt;P&gt;        W_FILE_IN TYPE FILE_TABLE,&lt;/P&gt;&lt;P&gt;        RC        TYPE I.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  CALL METHOD CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_OPEN_DIALOG&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      FILE_TABLE              = T_FILE_IN&lt;/P&gt;&lt;P&gt;      RC                      = RC&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      FILE_OPEN_DIALOG_FAILED = 1&lt;/P&gt;&lt;P&gt;      CNTL_ERROR              = 2&lt;/P&gt;&lt;P&gt;      ERROR_NO_GUI            = 3&lt;/P&gt;&lt;P&gt;      OTHERS                  = 4.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    CHECK RC = 1.&lt;/P&gt;&lt;P&gt;    READ TABLE T_FILE_IN INTO W_FILE_IN INDEX 1.&lt;/P&gt;&lt;P&gt;    MOVE W_FILE_IN TO P_FILE.&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;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 13:20:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815304#M917650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T13:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815305#M917651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;CL_GUI_FRONTEND_SERVICES=&amp;gt;gui_upload to retrieve the file (upload the file).&lt;/P&gt;&lt;P&gt;HOW TO USE THIS??? GV MORE DETAILS PLEASE...I WANT TO read TEST PO DATA.txt file Can you give me example how the test data( Header  data and Item level data is used to fill the test PO data.txt file )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i need to Use OPEN DATASET&lt;/P&gt;&lt;P&gt;CLOSE dATASET command? &lt;/P&gt;&lt;P&gt;how????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points will be rewarded&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 06:26:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815305#M917651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T06:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815306#M917652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;CL_GUI_FRONTEND_SERVICES=&amp;gt;gui_upload to retrieve the file (upload the file).&lt;/P&gt;&lt;P&gt;HOW TO USE THIS??? GV MORE DETAILS PLEASE...I WANT TO read TEST PO DATA.txt file Can you give me example how the test data( Header  data and Item level data is used to fill the test PO data.txt file )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i need to Use OPEN DATASET&lt;/P&gt;&lt;P&gt;CLOSE dATASET command? &lt;/P&gt;&lt;P&gt;how????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points will be rewarded&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 06:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815306#M917652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T06:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_PO_CREATE1</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815307#M917653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my question is not completely answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 06:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-po-create1/m-p/3815307#M917653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T06:27:59Z</dc:date>
    </item>
  </channel>
</rss>

