<?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: Submit program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187240#M127542</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is your modified code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
OPEN DATASET V_FILEPATH FOR INPUT IN TEXT MODE 
                         ENCODING DEFAULT
                          MESSAGE V_MSG.
DO.
  READ DATASET V_FILEPATH INTO T_INPUTFILE.
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
    EXIT.
  ELSE.
* Perform to get the SAP Functional Area.
   PERFORM GET_FKBER.
  ENDIF.
  APPEND T_INPUTFILE.
  CLEAR T_INPUTFILE.
ENDDO.

CLOSE DATASET V_FILEPATH.
IF T_INPUTFILE[] IS NOT INITIAL.
  OPEN DATASET V_FILEPATH FOR OUTPUT IN TEXT MODE 
                           ENCODING DEFAULT
                            MESSAGE V_MSG.
  LOOP AT T_INPUTFILE.
    TRANSFER T_INPUTFILE TO V_FILEPATH.
  ENDLOOP.
  CLOSE DATASET V_FILEPATH.
  SUBMIT RFBIBL00 WITH DS_NAME = V_FILEPATH
                  WITH FL_CHECK = SPACE
                  WITH CALLMODE = 'B' AND RETURN.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2006 22:19:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-12T22:19:03Z</dc:date>
    <item>
      <title>Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187231#M127533</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; My requirement is that I have to read the file from the application server, change the existing values of functional area with the new SAP functional Area &amp;amp; then submit it to standard SAP prg RFBIBL00. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET V_FILEPATH FOR INPUT IN TEXT MODE ENCODING DEFAULT&lt;/P&gt;&lt;P&gt;                                            MESSAGE V_MSG.&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;    READ DATASET V_FILEPATH INTO T_INPUTFILE.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Perform to get the SAP Functional Area.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      PERFORM GET_FKBER.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    APPEND T_INPUTFILE.&lt;/P&gt;&lt;P&gt;    CLEAR  T_INPUTFILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF T_INPUTFILE[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    SUBMIT RFBIBL00 WITH DS_NAME = V_FILEPATH&lt;/P&gt;&lt;P&gt;                    WITH FL_CHECK = SPACE&lt;/P&gt;&lt;P&gt;                    WITH CALLMODE = 'B'&lt;/P&gt;&lt;P&gt;                    AND RETURN.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; My query is that the all my changes are reflected in t_inputfile. But I cannot submit the t_inputfile for DS_NAME, it is giving me error. What should I do so the my changes reflect in the actual physical file ... ?? What should I give in DS_NAME ?? .. so that when I run SM35 changes are seen there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;SB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 06:20:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187231#M127533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T06:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187232#M127534</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; Just DELETE DATASET after populating t_inputfile. Then OPEN DATASET v_filename FOR OUTPUT IN TEXT MODE loop at t_inputfile, transfer all the contents in the new file with the same name and pass the file name to the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 06:27:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187232#M127534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T06:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187233#M127535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What error are you getting? Do a CLOSE DATASET before submitting the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 06:31:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187233#M127535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T06:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187234#M127536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I did as u said but still in SM35 it is showing the old values only ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 06:42:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187234#M127536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T06:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187235#M127537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sb,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Capital / Lower case&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  check out the exact name of the file&lt;/P&gt;&lt;P&gt;  on the application server.&lt;/P&gt;&lt;P&gt;  Each letter should be EXACTLY in the same case&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  (In unix/aix, upper/lower case is very important)&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2006 07:02:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187235#M127537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-11T07:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187236#M127538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;i&amp;gt;&amp;gt; Hi Srinivas,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I did as u said but still in SM35 it is showing the&lt;/P&gt;&lt;P&gt;&amp;gt; he old values only ...&lt;/P&gt;&lt;P&gt;&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What old values? I thought your issue is with the file not being accessable to your RFBIBL00 program. So now you are able to create the session, which means the file is no longer the issue. What is the issue now?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 21:10:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187236#M127538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T21:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187237#M127539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Well what i did was closed the dataset v_filepath. &amp;amp; then write the submit program ... even then the changes I did for functional area was not reflecting. I could see the old values while running the SM35 session. Then I used the suggestion of again open dataset for output command loop thru the t_inputfile , transfer the file to the application server, Close the dataset &amp;amp; then wrote the submit command ... it works fine for one file but for another file it errors... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;SB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 22:01:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187237#M127539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T22:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187238#M127540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to roughly explain your logic as a pseudo code? I will give it a try and you can expand/correct it as appropriate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read a file from desktop into an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at the internal table and prepare the data in the RFBIBL00 file format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Download the RFBIBL00 formatted file onto the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Submit RFBIBL00 to process the file previously downloaded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This creates SM35 sessions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain your process, may be there is something missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 22:09:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187238#M127540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T22:09:28Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187239#M127541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With regards to seeing old values, I think here is your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are uploading the file from application server into an internal table and changing the values in the internal table. But you are not tranferring the changed internal table back to the file. Here is flow you need to implement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;open dataset myfile.&lt;/P&gt;&lt;P&gt;read file record.&lt;/P&gt;&lt;P&gt;exit if no record found.&lt;/P&gt;&lt;P&gt;append record to internal table.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;close dataset myfile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open dataset myfile for output.&lt;/P&gt;&lt;P&gt;loop at the internal table.&lt;/P&gt;&lt;P&gt;modify functional area.&lt;/P&gt;&lt;P&gt;transfer record to myfile.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;close dataset myfile.&lt;/P&gt;&lt;P&gt;submit RFBIBL00.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 22:14:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187239#M127541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T22:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187240#M127542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is your modified code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
OPEN DATASET V_FILEPATH FOR INPUT IN TEXT MODE 
                         ENCODING DEFAULT
                          MESSAGE V_MSG.
DO.
  READ DATASET V_FILEPATH INTO T_INPUTFILE.
  IF SY-SUBRC &amp;lt;&amp;gt; 0.
    EXIT.
  ELSE.
* Perform to get the SAP Functional Area.
   PERFORM GET_FKBER.
  ENDIF.
  APPEND T_INPUTFILE.
  CLEAR T_INPUTFILE.
ENDDO.

CLOSE DATASET V_FILEPATH.
IF T_INPUTFILE[] IS NOT INITIAL.
  OPEN DATASET V_FILEPATH FOR OUTPUT IN TEXT MODE 
                           ENCODING DEFAULT
                            MESSAGE V_MSG.
  LOOP AT T_INPUTFILE.
    TRANSFER T_INPUTFILE TO V_FILEPATH.
  ENDLOOP.
  CLOSE DATASET V_FILEPATH.
  SUBMIT RFBIBL00 WITH DS_NAME = V_FILEPATH
                  WITH FL_CHECK = SPACE
                  WITH CALLMODE = 'B' AND RETURN.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 22:19:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187240#M127542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T22:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187241#M127543</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; I get a file from other system in my application server.&lt;/P&gt;&lt;P&gt; I populate the data of V_Filepath(application server file) in T_inputfile.&lt;/P&gt;&lt;P&gt; Logic is applied to get the correct SAP functional area. (The logic is correct &amp;amp; I can see the new values in t_inputfile )&lt;/P&gt;&lt;P&gt; Close the dataset.&lt;/P&gt;&lt;P&gt;Submit to RFBIBL00 with DS_NAME = V_FILEPATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Now what was happening is that after execution of submit command I go to SM35 &amp;amp; process the session .. here the Func area was the old values ...&lt;/P&gt;&lt;P&gt; So I again wrote &lt;/P&gt;&lt;P&gt;Open dataset v_filepath for output.&lt;/P&gt;&lt;P&gt;Loop at t_inputfile.&lt;/P&gt;&lt;P&gt;  transfer t_inputfile to v_filepath.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;close dataset v_filepath.&lt;/P&gt;&lt;P&gt;Then write Submit to RFBIBL00 with DS_NAME = V_FILEPATH.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 22:27:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187241#M127543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T22:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187242#M127544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So your logic now is more or less like the one I posted previously? Can you please post the latest piece of that code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 22:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187242#M127544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T22:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187243#M127545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;i&amp;gt;it works fine for one file but for another file it&lt;/P&gt;&lt;P&gt;&amp;gt; errors... &amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you are uploading multiple files. How is your loop logic for multiple files?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Get the list of files.&lt;/P&gt;&lt;P&gt;loop at the file list.&lt;/P&gt;&lt;P&gt;get the file contents into internal table.&lt;/P&gt;&lt;P&gt;modify the functional area.&lt;/P&gt;&lt;P&gt;close the file.&lt;/P&gt;&lt;P&gt;open the file.&lt;/P&gt;&lt;P&gt;transfer the contents of the internal table to file.&lt;/P&gt;&lt;P&gt;close the file.&lt;/P&gt;&lt;P&gt;submit RFBIBL00.&lt;/P&gt;&lt;P&gt;refresh the contents of &amp;lt;b&amp;gt;all internal tables&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;read the next file and repeat the process.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 22:36:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187243#M127545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T22:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187244#M127546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that's the way it is &amp;amp; works fine for one file but for another file gives an error saying unable to open the file . I have checked with others &amp;amp; it is guessed that it may have to do with file auhorizations coming from the other application system on to my application server....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the above thing I also tried this ... I went to sxda_tools transaction .. &lt;/P&gt;&lt;P&gt;gave object type BKPF,&lt;/P&gt;&lt;P&gt;Program type DINP,&lt;/P&gt;&lt;P&gt;Program RFBIBL00,&lt;/P&gt;&lt;P&gt;File type physical&lt;/P&gt;&lt;P&gt;filename v_filepath (/usr/sap/...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;click change , go to next screen , changed one feild BBSEG-SGTXT , saved it , again saved it ... there it was trowing an error Unable to open the file ... then I came to know that this is not due to my code but something to do with authorizations at the system level...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 23:10:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187244#M127546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T23:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187245#M127547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, if that is the case then I guess your problem is resolved. Someone will take care of the permissions and you can then read all the files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please close the post if that is the case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2006 23:50:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187245#M127547</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-12T23:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187246#M127548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did that ... hopefully it reflects&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2006 00:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187246#M127548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-13T00:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187247#M127549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope, you either select 'Problem Solved' next to any post or 'Solved on my own' next to your first post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2006 00:06:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program/m-p/1187247#M127549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-13T00:06:43Z</dc:date>
    </item>
  </channel>
</rss>

