<?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: plz help in submit statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153324#M749909</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sreeram &lt;/P&gt;&lt;P&gt;this is looking gud &lt;/P&gt;&lt;P&gt;once i ill check it then i ill surely reward u &lt;/P&gt;&lt;P&gt;do u hav any example 4 this if ye plz giv me complete code 4 it &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Dec 2007 11:57:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-14T11:57:02Z</dc:date>
    <item>
      <title>plz help in submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153320#M749905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a transaction MD4C which shows some missing material numbers .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i ill have to create a report which shows some selected part of data from MD4C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;means if md4c is showing 16 rows i ill have to show only 5 rows based on my selection criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me how to do it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wat i am thinking &lt;/P&gt;&lt;P&gt;can i use statement submit to execute that program and  i want to&lt;/P&gt;&lt;P&gt;ask 1 thing &lt;/P&gt;&lt;P&gt;like in MD4C i have an internal table in which i have all the data &lt;/P&gt;&lt;P&gt;can i use submit statement to bring that internal table to my program .&lt;/P&gt;&lt;P&gt;plz guide me how to do it ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 10:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153320#M749905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T10:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: plz help in submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153321#M749906</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;   if you have alll the data, why don't you analyze the logic of that transaction code with the help of functional consultant and write u r own code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;internal tables are local to their parent programs, u can't bring data out &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 11:18:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153321#M749906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T11:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: plz help in submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153322#M749907</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;first find and analyse the report program executing while executing the Tcode MD4C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can directly call that standard report program from your z-program using below statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Follow the below steps.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call the below FM to prepare selection table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  W_REPORTID = SY-REPID.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      CURR_REPORT     = W_REPORTID&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      SELECTION_TABLE = W_SEL_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Call the standard program&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SUBMIT 'Standard program name' EXPORTING LIST TO MEMORY WITH SELECTION-TABLE W_SEL_TAB  AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;use the below function module to get the contents from memory&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Use the function module to get the data from memory.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'LIST_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      LISTOBJECT = I_LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;then use the below function module to convert the downloaded data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Use the function module to convert raw data to asci format&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'LIST_TO_ASCI'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      LISTASCI           = I_INITIAL&lt;/P&gt;&lt;P&gt;      LISTOBJECT         = I_LIST&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      EMPTY_LIST         = 1&lt;/P&gt;&lt;P&gt;      LIST_INDEX_INVALID = 2&lt;/P&gt;&lt;P&gt;      OTHERS             = 3.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC NE '0'.                                       "#EC *&lt;/P&gt;&lt;P&gt;    MESSAGE E056."Unable to convert data.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now I_INITIAL will contains the standard report data; now you can analyse this internal table and you can do the coding towards your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sreeram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 11:33:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153322#M749907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T11:33:06Z</dc:date>
    </item>
    <item>
      <title>Re: plz help in submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153323#M749908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;u say u already know the table which stores the data for tis tcode. get the data in the z program. store it in internal table and put one &lt;/P&gt;&lt;P&gt;PARAMETERS:.... (this will accept teh no of lines u want to get or disp)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then in prog code, loop at tat int table which stores all ur data, loop on it until sy-tabix eq parameters value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in tis way only specified lines will be displayed....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 11:40:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153323#M749908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T11:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: plz help in submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153324#M749909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sreeram &lt;/P&gt;&lt;P&gt;this is looking gud &lt;/P&gt;&lt;P&gt;once i ill check it then i ill surely reward u &lt;/P&gt;&lt;P&gt;do u hav any example 4 this if ye plz giv me complete code 4 it &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 11:57:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153324#M749909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T11:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: plz help in submit statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153325#M749910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sabahuddin &lt;/P&gt;&lt;P&gt;thanx 4 d rply&lt;/P&gt;&lt;P&gt;but plz tell me how to bring data in my z program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 11:58:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/plz-help-in-submit-statement/m-p/3153325#M749910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T11:58:22Z</dc:date>
    </item>
  </channel>
</rss>

