<?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 Start md04 with pre-values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/start-md04-with-pre-values/m-p/1409852#M197497</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 want to run the md04 and when the transaction starts i want to fill the Material field and the plant field with two values that come from the program that calls the transaction and give the ok code to go to the screen that gives the information of the material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;basicly what i want is, i have a program, he calls the transaction MD04 and pass the values for material and plant and gives ok without the user see, and then what the user sees is the screen with the details of the material.&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, 21 Jul 2006 16:18:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-21T16:18:40Z</dc:date>
    <item>
      <title>Start md04 with pre-values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/start-md04-with-pre-values/m-p/1409852#M197497</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 want to run the md04 and when the transaction starts i want to fill the Material field and the plant field with two values that come from the program that calls the transaction and give the ok code to go to the screen that gives the information of the material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;basicly what i want is, i have a program, he calls the transaction MD04 and pass the values for material and plant and gives ok without the user see, and then what the user sees is the screen with the details of the material.&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, 21 Jul 2006 16:18:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/start-md04-with-pre-values/m-p/1409852#M197497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T16:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Start md04 with pre-values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/start-md04-with-pre-values/m-p/1409853#M197498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;            set parameter id 'MAT' field itab-matnr.
            set parameter id 'WRK' field itab-werks.
            call transaction 'MD04' and skip first screen.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 16:21:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/start-md04-with-pre-values/m-p/1409853#M197498</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-07-21T16:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Start md04 with pre-values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/start-md04-with-pre-values/m-p/1409854#M197499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET PARAMETER ID pid FIELD f.&lt;/P&gt;&lt;P&gt;(with pid = MAT for material and pid = WRK for plant and your values in 'f').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then:&lt;/P&gt;&lt;P&gt;CALL TRANSACTION MD04 AND SKIP FIRST SCREEN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 16:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/start-md04-with-pre-values/m-p/1409854#M197499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T16:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Start md04 with pre-values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/start-md04-with-pre-values/m-p/1409855#M197500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ricardo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use call transaction statement from your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The syntax would be :&lt;/P&gt;&lt;P&gt;*Fill material # in mat_no and plant # in plant_no field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID: 'MAT' FIELD mat_no,&lt;/P&gt;&lt;P&gt;                  'WRK' FIELD plant_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MD04' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2006 16:31:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/start-md04-with-pre-values/m-p/1409855#M197500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-21T16:31:44Z</dc:date>
    </item>
  </channel>
</rss>

