<?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: how to differentiate between presentation server and application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633010#M282368</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 open dataset is used.If so,it's application server.Otherwise if GUI_UPLOAD/WS_UPLOAD is used,it's presentation server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Oct 2006 08:33:25 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2006-10-11T08:33:25Z</dc:date>
    <item>
      <title>how to differentiate between presentation server and application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633006#M282364</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 wanted to upload the data from the presentation server or from the application server . Inside the coding i should check whether it is application server or presentation server how to check&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:07:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633006#M282364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T08:07:42Z</dc:date>
    </item>
    <item>
      <title>Re: how to differentiate between presentation server and application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633007#M282365</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;Files are stored in the presentation server means they are stored in your Desktop system... within the code you will find FM GUI_DOWNLOAD/GUI_UPLOD/WS_UPLOAD/WS_DOWNLOAD to determine the same..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Files are stored in the application server means they are stored in R/3 application server ... within the code you will find Open dataset, read dataset , transfer dataset or close dataset ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward it this helps,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:11:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633007#M282365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T08:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to differentiate between presentation server and application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633008#M282366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Preetha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Check the code below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Selection Screen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : rb_pc  RADIOBUTTON GROUP r1 DEFAULT 'X'&lt;/P&gt;&lt;P&gt;             USER-COMMAND ucomm,    "For Presentation&lt;/P&gt;&lt;P&gt;             p_f1       LIKE rlgrap-filename&lt;/P&gt;&lt;P&gt;                        MODIF ID rb1,    "Input File&lt;/P&gt;&lt;P&gt;             rb_srv  RADIOBUTTON GROUP  r1         &lt;/P&gt;&lt;P&gt;                                  "For Application&lt;/P&gt;&lt;P&gt;             p_f2       LIKE rlgrap-filename&lt;/P&gt;&lt;P&gt;                        MODIF ID rb2,     "Input File&lt;/P&gt;&lt;P&gt;         p_direct   TYPE char128 MODIF ID abc DEFAULT  &lt;/P&gt;&lt;P&gt;             c_path.      "File Directory&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_f1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-- Browse Presentation Server&lt;/P&gt;&lt;P&gt;  PERFORM ( Call - GUI UPLOAD.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_f2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-- Browse Application Server&lt;/P&gt;&lt;P&gt;  PERFORM (Call - OPEN DATASET).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF rb_pc = 'X' AND screen-group1 = 'RB2'.&lt;/P&gt;&lt;P&gt;      screen-input = '0'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSEIF rb_srv = 'X' AND screen-group1 = 'RB1'.&lt;/P&gt;&lt;P&gt;      screen-input = '0'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF screen-group1 = 'ABC'.&lt;/P&gt;&lt;P&gt;      screen-input = '0'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:26:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633008#M282366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-11T08:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to differentiate between presentation server and application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633009#M282367</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 open dataset is used.If so,it's application server.Otherwise if GUI_UPLOAD/WS_UPLOAD is used,it's presentation server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:31:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633009#M282367</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-10-11T08:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to differentiate between presentation server and application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633010#M282368</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 open dataset is used.If so,it's application server.Otherwise if GUI_UPLOAD/WS_UPLOAD is used,it's presentation server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Oct 2006 08:33:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-differentiate-between-presentation-server-and-application-server/m-p/1633010#M282368</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-10-11T08:33:25Z</dc:date>
    </item>
  </channel>
</rss>

