<?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 submit program with select-options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359596#M521807</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 am new to abap i a requirement that my current program should call one standard program in that standard programe i have to pass values&lt;/P&gt;&lt;P&gt;ie it is select-options with no interval but i should pass values in multipleselections &lt;/P&gt;&lt;P&gt;so i can use submit program name then how i should pass values the values r in my select statemet with that select statement i should send one field value to standard program select-options with no interval when it accept the value i should directy display the output.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jun 2007 15:02:32 GMT</pubDate>
    <dc:creator>rthoodi</dc:creator>
    <dc:date>2007-06-08T15:02:32Z</dc:date>
    <item>
      <title>submit program with select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359596#M521807</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 am new to abap i a requirement that my current program should call one standard program in that standard programe i have to pass values&lt;/P&gt;&lt;P&gt;ie it is select-options with no interval but i should pass values in multipleselections &lt;/P&gt;&lt;P&gt;so i can use submit program name then how i should pass values the values r in my select statemet with that select statement i should send one field value to standard program select-options with no interval when it accept the value i should directy display the output.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 15:02:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359596#M521807</guid>
      <dc:creator>rthoodi</dc:creator>
      <dc:date>2007-06-08T15:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: submit program with select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359597#M521808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM GET_ZKOBERRICH.
  DATA: SO_PROJ TYPE RANGE OF PROJ-PSPID,
        WA_PROJ LIKE LINE OF SO_PROJ,
        SO_POSID TYPE RANGE OF PRPS-POSID,
        WA_POSID LIKE LINE OF SO_POSID.
  DATA: LISTOBJECT LIKE ABAPLIST OCCURS 0 WITH HEADER LINE.
  CLEAR: SO_PROJ,WA_PROJ,SO_POSID,WA_POSID.
  REFRESH: SO_PROJ,SO_POSID.
  LOOP AT G_T_STATUS.
    WA_PROJ-SIGN = 'I'.
    WA_PROJ-OPTION = 'EQ'.
    CALL FUNCTION 'CONVERSION_EXIT_ABPSN_INPUT'
         EXPORTING
              INPUT  = G_T_STATUS-PSPID
         IMPORTING
              OUTPUT = G_T_STATUS-PSPID.
    WA_PROJ-LOW = G_T_STATUS-PSPID.
    APPEND WA_PROJ TO SO_PROJ.
    WA_POSID-SIGN = 'I'.
    WA_POSID-OPTION = 'EQ'.
    CALL FUNCTION 'CONVERSION_EXIT_ABPSN_INPUT'
         EXPORTING
              INPUT  = G_T_STATUS-POSID
         IMPORTING
              OUTPUT = G_T_STATUS-POSID.
    WA_POSID-LOW = G_T_STATUS-POSID.
    APPEND WA_POSID TO SO_POSID.
    CLEAR: WA_PROJ,WA_POSID.
  ENDLOOP.
  SORT SO_PROJ BY LOW.
  DELETE ADJACENT DUPLICATES FROM SO_PROJ COMPARING LOW.
  SORT SO_POSID BY LOW.
  DELETE ADJACENT DUPLICATES FROM SO_POSID COMPARING LOW.

  IF NOT SO_PROJ[] IS INITIAL AND NOT SO_POSID[] IS INITIAL.
    CLEAR: G_F_FLAG.
    G_F_FLAG = 'X'.
    EXPORT G_F_FLAG TO MEMORY ID 'ZFEHLERKOSTEN'.
    SUBMIT Z48R_PROJEKT_FEHLERKOSTEN  WITH SO_PROJ IN SO_PROJ
                                      WITH SO_PSP IN SO_POSID
                                      WITH SO_PBUKR IN SO_PBUKR
                                      WITH PA_JAHRV EQ PA_JAHRV
                                      WITH PA_PERV EQ PA_PERV
                                      WITH PA_JAHRB EQ PA_JAHRB
                                      WITH PA_PERB EQ PA_PERB
                                      WITH P_LIST EQ 'X'
                                      EXPORTING LIST TO MEMORY
                                      AND RETURN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward.&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 15:04:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359597#M521808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T15:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: submit program with select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359598#M521809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: t_param LIKE rsparams OCCURS 10 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       t_param-selname = 'called program selection-screen name'.&lt;/P&gt;&lt;P&gt;       t_param-kind = 'P'.  " here P is parameter s is select-option&lt;/P&gt;&lt;P&gt;       t_param-low  = pass value.&lt;/P&gt;&lt;P&gt;       t_param-high =  pass value&lt;/P&gt;&lt;P&gt;      APPEND t_param.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SUBMIT programname VIA SELECTION-SCREEN&lt;/P&gt;&lt;P&gt;                          WITH SELECTION-TABLE t_param&lt;/P&gt;&lt;P&gt;                          AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 15:09:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359598#M521809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T15:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: submit program with select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359599#M521810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2011 13:12:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359599#M521810</guid>
      <dc:creator>rthoodi</dc:creator>
      <dc:date>2011-06-16T13:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: submit program with select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359600#M521811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have declared select option as &lt;/P&gt;&lt;P&gt;data : g_blart type mhnd-blart.&lt;/P&gt;&lt;P&gt;types: t_blart like RANGE OF g_blart.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_blart for g_blart. in Zprog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I want to call this using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;SUBMIT programname VIA SELECTION-SCREEN&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WITH SELECTION-TABLE&amp;nbsp; ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Can you please tell&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2013 07:08:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359600#M521811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-10-22T07:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: submit program with select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359601#M521812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Feb 2016 09:09:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-program-with-select-options/m-p/2359601#M521812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-02-21T09:09:35Z</dc:date>
    </item>
  </channel>
</rss>

