<?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: Function module to get Presentation server's directory on F4 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737419#M635827</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm not supposed to use any Method. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is an enhancement in the running program, I need FM which will serve the purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Sep 2007 12:53:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-12T12:53:59Z</dc:date>
    <item>
      <title>Function module to get Presentation server's directory on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737414#M635822</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;Kindly tell me the Function Module to be used in the Selection screen parameter to get the "Local PC's Directory path".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need only Directory path, because program will generate the file and send that into the selected directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saurabh Garg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 12:44:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737414#M635822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T12:44:24Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get Presentation server's directory on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737415#M635823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_file type 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; CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      file_name = p_file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 12:47:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737415#M635823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T12:47:51Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get Presentation server's directory on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737416#M635824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This program shows how to get F4 help from presentation server or application server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Z50651_FILENAMES_F4 MESSAGE-ID ZMSG_50651.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;SELECTION SCREEN&lt;/STRONG&gt;***********************&lt;/P&gt;&lt;P&gt;PARAMETERS : LOCAL RADIOBUTTON GROUP G1 USER-COMMAND UCOM1,&lt;/P&gt;&lt;P&gt;             APPLN RADIOBUTTON GROUP G1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : P_HEADER TYPE IBIPPARMS-PATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********&lt;STRONG&gt;DATA DECLARATIONS&lt;/STRONG&gt;*********************&lt;/P&gt;&lt;P&gt;DATA : V_FLAG,&lt;/P&gt;&lt;P&gt;       V_HEADER1 TYPE DXFIELDS-LONGPATH,&lt;/P&gt;&lt;P&gt;       V_HEADER TYPE IBIPPARMS-PATH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON RADIOBUTTON GROUP G1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM CHECK_RADIO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_HEADER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  PERFORM GET_F4_HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**************&lt;STRONG&gt;FORMS&lt;/STRONG&gt;*********************************&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  CHECK_RADIO&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM CHECK_RADIO .&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN 'UCOM1'.&lt;/P&gt;&lt;P&gt;      IF LOCAL = 'X'.&lt;/P&gt;&lt;P&gt;        V_FLAG = 'L'.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        V_FLAG = 'A'.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " CHECK_RADIO&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  GET_F4_HELP&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM GET_F4_HELP .&lt;/P&gt;&lt;P&gt;  IF V_FLAG = 'L'.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        PROGRAM_NAME  = SYST-CPROG&lt;/P&gt;&lt;P&gt;        DYNPRO_NUMBER = SYST-DYNNR&lt;/P&gt;&lt;P&gt;        FIELD_NAME    = 'P_HEADER'&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        FILE_NAME     = V_HEADER.&lt;/P&gt;&lt;P&gt;    P_HEADER = V_HEADER.&lt;/P&gt;&lt;P&gt;  ELSEIF V_FLAG = 'A'.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'F4_DXFILENAME_TOPRECURSION'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       I_LOCATION_FLAG       = 'A'&lt;/P&gt;&lt;P&gt;       I_SERVER              = '?'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_PATH                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       FILEMASK              = '&lt;STRONG&gt;.&lt;/STRONG&gt;'&lt;/P&gt;&lt;P&gt;       FILEOPERATION         = 'R'&lt;/P&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  O_LOCATION_FLAG       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  O_SERVER              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       O_PATH                = V_HEADER1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ABEND_FLAG            =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;       RFC_ERROR             = 1&lt;/P&gt;&lt;P&gt;       ERROR_WITH_GUI        = 2&lt;/P&gt;&lt;P&gt;       OTHERS                = 3&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;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " GET_F4_HELP&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;Vasu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 12:48:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737416#M635824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T12:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get Presentation server's directory on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737417#M635825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This Function Module is to get the Local PC's file name. &lt;/P&gt;&lt;P&gt;But I need ONLY DIRECTORY PATH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 12:49:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737417#M635825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T12:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get Presentation server's directory on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737418#M635826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the DIRECTORY_BROWSE or DIRECTORY_GET_CURRENT Method of the class CL_GUI_FRONTEND_SERVICES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 12:51:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737418#M635826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T12:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get Presentation server's directory on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737419#M635827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm not supposed to use any Method. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is an enhancement in the running program, I need FM which will serve the purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Sep 2007 12:53:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737419#M635827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-12T12:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to get Presentation server's directory on F4</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737420#M635828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Oct 2007 07:03:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-get-presentation-server-s-directory-on-f4/m-p/2737420#M635828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-24T07:03:24Z</dc:date>
    </item>
  </channel>
</rss>

