<?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: model dialog box in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556005#M582561</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for second question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used to call functions in an R/3 system by a caller external to R/3 or to call programs external to R/3 from an R/3 system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functions can only be called via RFC, if they are tagged as RFC functions in the SAP development workbench. They are then called RFC function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A remote function call (RFC) is the call of a function module that runs in a different system to the calling program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jul 2007 13:48:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-20T13:48:59Z</dc:date>
    <item>
      <title>model dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556002#M582558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is model dialob box.&lt;/P&gt;&lt;P&gt;what is difference  b/w fumction module and remote function module&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 13:44:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556002#M582558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T13:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: model dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556003#M582559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vishnu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is one of the screen types for a screen,check in the attributes of the screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    If you activate this attribute, the screen is used as a modal dialog&lt;/P&gt;&lt;P&gt;    box. In the program, you call the screen with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL SCREEN  STARTING AT  &amp;lt;top left&amp;gt;&lt;/P&gt;&lt;P&gt;                 ENDING   AT  &amp;lt;bottom right&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Unlike normal pop-ups, a modal dialog box has its own pushbuttons and&lt;/P&gt;&lt;P&gt;    title. There is no menu bar and command field entries are not possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 13:46:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556003#M582559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T13:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: model dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556004#M582560</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;Calling a single screen is a special case of embedding a screen sequence. If you want to prevent the called screen from covering the current screen completely, you can use the CALL SCREEN statement with the STARTING AT and ENDING AT options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN &amp;lt;scrn&amp;gt;&lt;/P&gt;&lt;P&gt;     STARTING AT &amp;lt;X1&amp;gt; &amp;lt;Y1&amp;gt;&lt;/P&gt;&lt;P&gt;     ENDING AT   &amp;lt;X2&amp;gt; &amp;lt;Y2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This calls the screen number &amp;lt;scrn&amp;gt; as a modal dialog box. When the screen is displayed, the screen that had called it is visible but inactive. The STARTING AT and ENDING AT additions specify the top left-hand and bottom right-hand corners of the dialog box respectively. In the screen attributes of screen &amp;lt;scrn&amp;gt;, you must set the Modal dialog box attribute. This defines how the interface elements are positioned on the screen.&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;/P&gt;&lt;P&gt;Function moduel will be called with in the SAP and the Remote function modules will be called/can call with in SAP and outside the SAP&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 13:48:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556004#M582560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T13:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: model dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556005#M582561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for second question&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC is the protocol used to call functions in an R/3 system by a caller external to R/3 or to call programs external to R/3 from an R/3 system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Functions can only be called via RFC, if they are tagged as RFC functions in the SAP development workbench. They are then called RFC function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A remote function call (RFC) is the call of a function module that runs in a different system to the calling program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 13:48:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556005#M582561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T13:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: model dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556006#M582562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishnu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;what is difference b/w fumction module and remote function module&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Remote function module is also a function module which have processing type as Remote Enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;what is model dialob box&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;If you want to prevent the called screen from covering the current screen completely then we will use modal dialog box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN &amp;lt;scrn&amp;gt;&lt;/P&gt;&lt;P&gt;     STARTING AT &amp;lt;X1&amp;gt; &amp;lt;Y1&amp;gt;&lt;/P&gt;&lt;P&gt;     ENDING AT   &amp;lt;X2&amp;gt; &amp;lt;Y2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This calls the screen number &amp;lt;scrn&amp;gt; as a modal dialog box. When the screen is displayed, the screen that had called it is visible but inactive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 13:50:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556006#M582562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T13:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: model dialog box</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556007#M582563</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;model dialog box means means it is use ful for displaying the screen as a pop-up&lt;/P&gt;&lt;P&gt;u have to call that screen like this.&lt;/P&gt;&lt;P&gt;CALL SCREEN &amp;lt;scrn no&amp;gt; STARTING AT &amp;lt;X1&amp;gt; &amp;lt;Y1&amp;gt; ENDING AT &amp;lt;X2&amp;gt; &amp;lt;Y2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RFC means it is also a module useful for retrieve and pass the data from/to other clients.to make a function to be rfc in the attributes u have to select function module type as RFC ENABLED type and make all the parameters in that function module as PASS BY VALUE type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see this link for more help on RFC&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/22/0424ce488911d189490000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/22/0424ce488911d189490000e829fbbd/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/22/0424ba488911d189490000e829fbbd/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/22/0424ba488911d189490000e829fbbd/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 13:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/model-dialog-box/m-p/2556007#M582563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T13:58:06Z</dc:date>
    </item>
  </channel>
</rss>

