<?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: Please Help... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574340#M588157</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL 'C_SAPGPARAM' ID 'NAME'  FIELD 'DIR_BINARY'
                    ID 'VALUE' FIELD path.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just change the value 'DIR_BINARY' for different path and you will get unix parth in variable 'path'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Jul 2007 12:12:59 GMT</pubDate>
    <dc:creator>Pawan_Kesari</dc:creator>
    <dc:date>2007-07-27T12:12:59Z</dc:date>
    <item>
      <title>Please Help...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574335#M588152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any function module in ABAP to convert the Directory Parameter name in the TCODE AL11 into the corresponding path? If not how can we convert that dir parameter name to corresponding path?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points will be rewarded for sure...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bijesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 11:23:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574335#M588152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T11:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574336#M588153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;can you explan it a little bit more?&lt;/P&gt;&lt;P&gt;Perhaps concatenate helps?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 11:31:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574336#M588153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T11:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574337#M588154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'FILE_GET_NAME'&lt;/P&gt;&lt;P&gt;             EXPORTING&lt;/P&gt;&lt;P&gt;                client           = sy-mandt&lt;/P&gt;&lt;P&gt;                logical_filename = p_filout&lt;/P&gt;&lt;P&gt;                operating_system = sy-opsys&lt;/P&gt;&lt;P&gt;             IMPORTING&lt;/P&gt;&lt;P&gt;                file_name        = w_phy_fname&lt;/P&gt;&lt;P&gt;             EXCEPTIONS&lt;/P&gt;&lt;P&gt;                file_not_found   = 1&lt;/P&gt;&lt;P&gt;                OTHERS           = 2.&lt;/P&gt;&lt;P&gt;&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;             ENDIF.&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;           In the obove example I use the function module  'FILE_GET_NAME'&lt;/P&gt;&lt;P&gt;         It gives the file path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         INPUT-   &lt;/P&gt;&lt;P&gt;         logical_filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    OUTPUT-&lt;/P&gt;&lt;P&gt;  Physical_filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: If you want logical path and physical file name. &lt;/P&gt;&lt;P&gt;We can get by using the following function module. &lt;/P&gt;&lt;P&gt;&amp;#145;FILE_GET_NAME_USING_PATH&amp;#146;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   INPUT-&lt;/P&gt;&lt;P&gt;   Logical path &amp;amp; Physical file name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   OUTPUT-&lt;/P&gt;&lt;P&gt;   Physical path &amp;amp; Physical file name.&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;Vishal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 11:41:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574337#M588154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T11:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574338#M588155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you mean something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'tmp'&lt;/P&gt;&lt;P&gt;                         sy-sysid&lt;/P&gt;&lt;P&gt;                         'data'&lt;/P&gt;&lt;P&gt;                         into filename&lt;/P&gt;&lt;P&gt;                         separated by '\'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 11:41:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574338#M588155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T11:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574339#M588156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have given me the right solution. But am not able to test it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I went to the AL11 screen and took one logical file name. and passed the same to the function. But i am getting the File Not Found Error (SY-SUBRC - 1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you plz tell me why it could be?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 11:55:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574339#M588156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T11:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574340#M588157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL 'C_SAPGPARAM' ID 'NAME'  FIELD 'DIR_BINARY'
                    ID 'VALUE' FIELD path.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just change the value 'DIR_BINARY' for different path and you will get unix parth in variable 'path'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 12:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574340#M588157</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2007-07-27T12:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574341#M588158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Pawan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That solved it. But is this &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;'C_SAPGPARAM'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; a program? I am not able to see it using the SE38 txn! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can, could you plz tell me what is it exactly?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 12:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574341#M588158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-27T12:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Please Help...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574342#M588159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;'C_SAPGPARAM' is system function. Normally external programs written in C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Jul 2007 12:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/please-help/m-p/2574342#M588159</guid>
      <dc:creator>Pawan_Kesari</dc:creator>
      <dc:date>2007-07-27T12:22:30Z</dc:date>
    </item>
  </channel>
</rss>

