<?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: SUBMIT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303288#M503611</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;see this&lt;/P&gt;&lt;P&gt;Use EQ for parameter and IN for select options&lt;/P&gt;&lt;P&gt;(check in the program selection screen  for the declaration of s_budat and s_saknr or something else and use accordingly)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SUBMIT RFITEMGL&lt;/P&gt;&lt;P&gt;                      WITH s_budat IN sd_budat&lt;/P&gt;&lt;P&gt;                      WITH s_saknr in  sd_saknr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                            AND RETURN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                      USER               sy-uname&lt;/P&gt;&lt;P&gt;                      VIA JOB            jobname&lt;/P&gt;&lt;P&gt;                      NUMBER             jobcount&lt;/P&gt;&lt;P&gt;                      TO SAP-SPOOL&lt;/P&gt;&lt;P&gt;                      SPOOL PARAMETERS   print_params&lt;/P&gt;&lt;P&gt;                      ARCHIVE PARAMETERS arc_params&lt;/P&gt;&lt;P&gt;                      WITHOUT SPOOL DYNPRO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 May 2007 09:25:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-23T09:25:23Z</dc:date>
    <item>
      <title>SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303286#M503609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus&lt;/P&gt;&lt;P&gt;in d below code everything is fine but am not able to get what values should i put ther in the SUBMIT statement.please give me examples of what should be given in the SUBMIT statement especially for BUDAT &amp;amp; SAKNR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:SKB1,bsis.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;types: begin of gty_acccoco,&lt;/P&gt;&lt;P&gt;saknr like ska1-saknr,&lt;/P&gt;&lt;P&gt;bukrs like skb1-bukrs,&lt;/P&gt;&lt;P&gt;gvtyp like ska1-gvtyp,&lt;/P&gt;&lt;P&gt;end of gty_acccoco.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;tables: b0sg, rfxpo, itemset.&lt;/P&gt;&lt;P&gt;tables: sscrfields.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data: gt_accoco type standard table of gty_acccoco,&lt;/P&gt;&lt;P&gt;gt_accoco_bs type standard table of gty_acccoco,&lt;/P&gt;&lt;P&gt;gd_accoco type gty_acccoco.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;selection-screen function key 1.&lt;/P&gt;&lt;P&gt;selection-screen begin of block glaccount with frame title text-w02.&lt;/P&gt;&lt;P&gt;select-options: GLACCT for skb1-saknr modif id wkl no database selection.&lt;/P&gt;&lt;P&gt;selection-screen end of block glaccount.&lt;/P&gt;&lt;P&gt;selection-screen begin of block company with frame title text-w03.&lt;/P&gt;&lt;P&gt;select-options: CODE for skb1-bukrs modif id wkl no database&lt;/P&gt;&lt;P&gt;selection.&lt;/P&gt;&lt;P&gt;selection-screen end of block company.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;selection-screen begin of block items with frame title text-007.&lt;/P&gt;&lt;P&gt;selection-screen begin of block status with frame title text-002.&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;parameters x_opsel like itemset-xopsel radiobutton group rad1. .&lt;/P&gt;&lt;P&gt;selection-screen comment 3(20) text-003 for field x_opsel.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;parameters pa_stida like rfpdo-allgstid default sy-datlo.&lt;/P&gt;&lt;P&gt;selection-screen skip.&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;parameters x_clsel like itemset-xclsel radiobutton group rad1.&lt;/P&gt;&lt;P&gt;selection-screen comment 3(25) text-004 for field x_clsel.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;select-options so_augdt for bsis-augdt no database selection.&lt;/P&gt;&lt;P&gt;parameters pa_stid2 like rfpdo-allgstid.&lt;/P&gt;&lt;P&gt;selection-screen skip.&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;parameters x_aisel like itemset-xaisel radiobutton group rad1 DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;selection-screen comment 3(20) text-005 for field x_aisel.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;select-options so_budat for bsis-budat no database selection.&lt;/P&gt;&lt;P&gt;selection-screen end of block status.&lt;/P&gt;&lt;P&gt;selection-screen begin of block type with frame title text-006.&lt;/P&gt;&lt;P&gt;parameters: x_norm like itemset-xnorm as checkbox default 'X',&lt;/P&gt;&lt;P&gt;x_shbv like itemset-xshbv no-display,&lt;/P&gt;&lt;P&gt;x_merk like itemset-xmerk as checkbox,&lt;/P&gt;&lt;P&gt;x_park like itemset-xpark as checkbox,&lt;/P&gt;&lt;P&gt;x_apar like itemset-xarit no-display.&lt;/P&gt;&lt;P&gt;selection-screen end of block type.&lt;/P&gt;&lt;P&gt;selection-screen end of block items.&lt;/P&gt;&lt;P&gt;selection-screen begin of block list with frame title text-001.&lt;/P&gt;&lt;P&gt;selection-screen end of block list.&lt;/P&gt;&lt;P&gt;*select-options so_faedt for it_pos-faedt no-display.&lt;/P&gt;&lt;P&gt;parameters: pa_cent type c no-display.&lt;/P&gt;&lt;P&gt;data: gp_yrper type rwcoom-fiscper.&lt;/P&gt;&lt;P&gt;select-options: so_yrper for gp_yrper no-display.&lt;/P&gt;&lt;P&gt;parameters: pa_inet type c no-display.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;SUBMIT RFITEMGL&lt;/P&gt;&lt;P&gt;        WITH ALCUR &lt;/P&gt;&lt;P&gt;        WITH EXCDT &lt;/P&gt;&lt;P&gt;        WITH PA_CENT&lt;/P&gt;&lt;P&gt;        WITH PA_GRID&lt;/P&gt;&lt;P&gt;        WITH PA_INET &lt;/P&gt;&lt;P&gt;        WITH PA_NMAX &lt;/P&gt;&lt;P&gt;        WITH PA_STID2 &lt;/P&gt;&lt;P&gt;        WITH PA_STIDA &lt;/P&gt;&lt;P&gt;        WITH PA_VARI &lt;/P&gt;&lt;P&gt;        WITH PA_WLBUK&lt;/P&gt;&lt;P&gt;        WITH PA_WLSAK&lt;/P&gt;&lt;P&gt;        WITH SD_APOPT&lt;/P&gt;&lt;P&gt;        WITH SD_AUGDT&lt;/P&gt;&lt;P&gt;        WITH SD_BSCHL&lt;/P&gt;&lt;P&gt;        WITH SD_BUDAT &lt;/P&gt;&lt;P&gt;        WITH SD_BUKRS&lt;/P&gt;&lt;P&gt;        WITH SD_FILES &lt;/P&gt;&lt;P&gt;        WITH SD_GSBER&lt;/P&gt;&lt;P&gt;        WITH SD_GSB_B&lt;/P&gt;&lt;P&gt;        WITH SD_IARCH &lt;/P&gt;&lt;P&gt;        WITH SD_KOSTL &lt;/P&gt;&lt;P&gt;        WITH SD_KTOPL &lt;/P&gt;&lt;P&gt;        WITH SD_MEMOR&lt;/P&gt;&lt;P&gt;        WITH SD_NOAUT &lt;/P&gt;&lt;P&gt;        WITH SD_NOOAP&lt;/P&gt;&lt;P&gt;        WITH SD_OBJEC &lt;/P&gt;&lt;P&gt;        WITH SD_OPOPT &lt;/P&gt;&lt;P&gt;        WITH SD_SAKNR &lt;/P&gt;&lt;P&gt;        WITH SD_SHKZG &lt;/P&gt;&lt;P&gt;        WITH SD_STIDA&lt;/P&gt;&lt;P&gt;        WITH SD_TPC &lt;/P&gt;&lt;P&gt;        WITH SD_USEAR &lt;/P&gt;&lt;P&gt;        WITH SD_USEAS &lt;/P&gt;&lt;P&gt;        WITH SD_USEDB &lt;/P&gt;&lt;P&gt;        WITH SD_VBUND &lt;/P&gt;&lt;P&gt;        WITH SD_WERKS&lt;/P&gt;&lt;P&gt;        WITH SD_ZUONR &lt;/P&gt;&lt;P&gt;        WITH SO_ASKTO &lt;/P&gt;&lt;P&gt;        WITH SO_AUGDT &lt;/P&gt;&lt;P&gt;        WITH SO_BUDAT &lt;/P&gt;&lt;P&gt;        WITH SO_BWWR2&lt;/P&gt;&lt;P&gt;        WITH SO_BWWR3&lt;/P&gt;&lt;P&gt;        WITH SO_BWWRT&lt;/P&gt;&lt;P&gt;        WITH SO_DMBE2 &lt;/P&gt;&lt;P&gt;        WITH SO_DMBE3 &lt;/P&gt;&lt;P&gt;        WITH SO_DMSHB&lt;/P&gt;&lt;P&gt;        WITH SO_FAEDT &lt;/P&gt;&lt;P&gt;        WITH SO_GSBER &lt;/P&gt;&lt;P&gt;        WITH SO_HWAE2 &lt;/P&gt;&lt;P&gt;        WITH SO_HWAE3 &lt;/P&gt;&lt;P&gt;        WITH SO_HWAER&lt;/P&gt;&lt;P&gt;        WITH SO_JAMON &lt;/P&gt;&lt;P&gt;        WITH SO_KKBWR&lt;/P&gt;&lt;P&gt;        WITH SO_KOART&lt;/P&gt;&lt;P&gt;        WITH SO_KURSE&lt;/P&gt;&lt;P&gt;        WITH SO_QBSHB&lt;/P&gt;&lt;P&gt;        WITH SO_QSFBT &lt;/P&gt;&lt;P&gt;        WITH SO_QSSHB &lt;/P&gt;&lt;P&gt;        WITH SO_SHKZG &lt;/P&gt;&lt;P&gt;        WITH SO_SKFBT &lt;/P&gt;&lt;P&gt;        WITH SO_SKNTO&lt;/P&gt;&lt;P&gt;        WITH SO_VERZ1 &lt;/P&gt;&lt;P&gt;        WITH SO_VERZN &lt;/P&gt;&lt;P&gt;        WITH SO_WAERS &lt;/P&gt;&lt;P&gt;        WITH SO_WLBUK &lt;/P&gt;&lt;P&gt;        WITH SO_WLSAK &lt;/P&gt;&lt;P&gt;        WITH SO_WRSHB&lt;/P&gt;&lt;P&gt;        WITH SO_WSKTO&lt;/P&gt;&lt;P&gt;        WITH SO_YRPER &lt;/P&gt;&lt;P&gt;        WITH SO_ZALDT&lt;/P&gt;&lt;P&gt;        WITH SO_ZINSZ &lt;/P&gt;&lt;P&gt;        WITH XX_BUKRS&lt;/P&gt;&lt;P&gt;        WITH XX_KTOPL&lt;/P&gt;&lt;P&gt;        WITH X_AISEL &lt;/P&gt;&lt;P&gt;        WITH X_APAR &lt;/P&gt;&lt;P&gt;        WITH X_CLSEL.&lt;/P&gt;&lt;P&gt;        WITH X_MERK &lt;/P&gt;&lt;P&gt;        WITH X_NORM &lt;/P&gt;&lt;P&gt;        WITH X_OPSEL &lt;/P&gt;&lt;P&gt;        WITH X_PARK &lt;/P&gt;&lt;P&gt;        WITH X_SHBV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:19:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303286#M503609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303287#M503610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write like this:&lt;/P&gt;&lt;P&gt; SUBMIT (L_REPID)&lt;/P&gt;&lt;P&gt; WITH SO_1111 IN SO_1111&lt;/P&gt;&lt;P&gt; WITH SO_2222 IN SO_2222&lt;/P&gt;&lt;P&gt; WITH SO_3333 IN SO_3333&lt;/P&gt;&lt;P&gt; .............&lt;/P&gt;&lt;P&gt;..............&lt;/P&gt;&lt;P&gt; USER SY-UNAME VIA JOB W_JOBNAME NUMBER W_JOB_COUNT&lt;/P&gt;&lt;P&gt; AND RETURN.&lt;/P&gt;&lt;P&gt; ( w_jobname = sy-repid)&lt;/P&gt;&lt;P&gt;Hope it works.&lt;/P&gt;&lt;P&gt;Reward helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddhesh Sanghvi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:24:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303287#M503610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303288#M503611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;see this&lt;/P&gt;&lt;P&gt;Use EQ for parameter and IN for select options&lt;/P&gt;&lt;P&gt;(check in the program selection screen  for the declaration of s_budat and s_saknr or something else and use accordingly)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SUBMIT RFITEMGL&lt;/P&gt;&lt;P&gt;                      WITH s_budat IN sd_budat&lt;/P&gt;&lt;P&gt;                      WITH s_saknr in  sd_saknr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                            AND RETURN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                      USER               sy-uname&lt;/P&gt;&lt;P&gt;                      VIA JOB            jobname&lt;/P&gt;&lt;P&gt;                      NUMBER             jobcount&lt;/P&gt;&lt;P&gt;                      TO SAP-SPOOL&lt;/P&gt;&lt;P&gt;                      SPOOL PARAMETERS   print_params&lt;/P&gt;&lt;P&gt;                      ARCHIVE PARAMETERS arc_params&lt;/P&gt;&lt;P&gt;                      WITHOUT SPOOL DYNPRO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:25:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303288#M503611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303289#M503612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anji &lt;/P&gt;&lt;P&gt;but am getting error for the SAKNR fields...please help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303289#M503612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303290#M503613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay Krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT  zrpcprru0_376    &lt;/P&gt;&lt;P&gt;                    WITH pnppernr-low = w_0001-pernr&lt;/P&gt;&lt;P&gt;                    WITH wtype2 ='X'&lt;/P&gt;&lt;P&gt;                    WITH s_lgart = '/5UT'&lt;/P&gt;&lt;P&gt;                    WITH p_ctd = 'X'&lt;/P&gt;&lt;P&gt;                    WITH p_ytd = 'X'&lt;/P&gt;&lt;P&gt;                    WITH p_tls = 'X'&lt;/P&gt;&lt;P&gt;                    WITH piptimr3 = 'X'&lt;/P&gt;&lt;P&gt;                    WITH pnpbegda = l_date2&lt;/P&gt;&lt;P&gt;                    WITH pnpendda = p_endda&lt;/P&gt;&lt;P&gt;                    AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IMPORT ws_wtype5ut FROM MEMORY ID 'ABCD'.&lt;/P&gt;&lt;P&gt;        ws_wtype5ut_main = ws_wtype5ut.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if any queries...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Award points if it is useful...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:40:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303290#M503613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303291#M503614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi naveen&lt;/P&gt;&lt;P&gt;can u explain me wit repsect to the code i posted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:41:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303291#M503614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303292#M503615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the error that you are getting&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 May 2007 09:48:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit/m-p/2303292#M503615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-23T09:48:43Z</dc:date>
    </item>
  </channel>
</rss>

