<?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: parameter id in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083214#M98464</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i just checked and found that it dosent work. (type d, type with user format) investigating the cause for the problem. will get back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 27 Nov 2005 10:14:19 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2005-11-27T10:14:19Z</dc:date>
    <item>
      <title>parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083210#M98460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi!&lt;/P&gt;&lt;P&gt;I am using an ALV report.&lt;/P&gt;&lt;P&gt;when using the double click i need to go to transaction MM19.&lt;/P&gt;&lt;P&gt;When i am passing the parameters through the set parameter id and call transaction, only the matnr is being passed and the date field is not.&lt;/P&gt;&lt;P&gt;the code is:&lt;/P&gt;&lt;P&gt;set parameter id 'MAT' field xxxx&lt;/P&gt;&lt;P&gt;set parameter id 'STICH' field xxxx&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MM19'.&lt;/P&gt;&lt;P&gt;what am i doing wrong?&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;yifat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 09:50:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083210#M98460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-27T09:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083211#M98461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the data type of the parameter you have used for the variable used with&lt;/P&gt;&lt;P&gt;set parameter id 'STICH' field &amp;lt;b&amp;gt;xxxx&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it type D?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:04:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083211#M98461</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-11-27T10:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083212#M98462</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 used type CC_DATUM.&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;YIFAT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083212#M98462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-27T10:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083213#M98463</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;The following code works, I found out from the program that the parameter id STICH is considered only under certain conditions..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zsritest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_matnr LIKE rmmg1-matnr OBLIGATORY,&lt;/P&gt;&lt;P&gt;            p_dline LIKE rmmg1-dline DEFAULT sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;****The following two are required to tell the system&lt;/P&gt;&lt;P&gt;****to accept Date&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MXX' FIELD 'BUS1001.DISPLAY'.  &lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'CALL_TRANS_MODE' FIELD 'ECM_MAT_SHOW'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'MAT' FIELD p_matnr.&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'STICH' FIELD p_dline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MM19'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:13:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083213#M98463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-27T10:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083214#M98464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i just checked and found that it dosent work. (type d, type with user format) investigating the cause for the problem. will get back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:14:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083214#M98464</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-11-27T10:14:19Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083215#M98465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried this code in my system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;set parameter id 'MAT' field 'CPB11300'.&lt;/P&gt;&lt;P&gt;set parameter id 'STICH' field '11/27/2005'.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MM19' and skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it's working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Probably you should delare a variable of length 10.&lt;/P&gt;&lt;P&gt;Write the date to this field.&lt;/P&gt;&lt;P&gt;write &amp;lt;KEY_DATE&amp;gt; to v_date.&lt;/P&gt;&lt;P&gt;and then pass the value.&lt;/P&gt;&lt;P&gt;May be you have declare the value that is being passed to date as like sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this,&lt;/P&gt;&lt;P&gt;data: v_date(10) value '11/27/2005'.&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;set parameter id 'MAT' field 'CPB11300'.&lt;/P&gt;&lt;P&gt;set parameter id 'STICH' field v_date.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MM19' and skip first screen.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi Kanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:14:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083215#M98465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-27T10:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083216#M98466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good find Srikanth Pinnamaneni. How did you find that out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083216#M98466</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-11-27T10:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083217#M98467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I debugged it till the point where the parameter ids are considered using GET PARAMETER..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program SAPLMGMM and PBO module INITIALISIERUNG has this code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:19:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083217#M98467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-27T10:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083218#M98468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Srikanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:22:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083218#M98468</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-11-27T10:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083219#M98469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I check with both type sy-datum as well as 10 char long date with user specific format, it didnt work, but the solution given by Srikanth works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:39:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083219#M98469</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-11-27T10:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083220#M98470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raja,&lt;/P&gt;&lt;P&gt; I've executed this code in my system just now.&lt;/P&gt;&lt;P&gt;Its working fine.Why is it not working for you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_date(10) value '11/27/2005'.&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;set parameter id 'MAT' field 'CPB11300'.&lt;/P&gt;&lt;P&gt;set parameter id 'STICH' field v_date.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'MM19' and skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:42:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083220#M98470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-27T10:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083221#M98471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi raja,&lt;/P&gt;&lt;P&gt; I've checked it for another date.&lt;/P&gt;&lt;P&gt;It's not working.&lt;/P&gt;&lt;P&gt;You were right.&lt;/P&gt;&lt;P&gt;We have to use Srikanth's Logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:45:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083221#M98471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-27T10:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083222#M98472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just change the date value to other than current date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example pass 10/20/2004 to v_date and check the behaviour, it will still default to current date in MM19.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:45:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083222#M98472</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-11-27T10:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: parameter id</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083223#M98473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi!&lt;/P&gt;&lt;P&gt;thank you all for your answers.&lt;/P&gt;&lt;P&gt;regards yifat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Nov 2005 10:54:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/1083223#M98473</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-27T10:54:44Z</dc:date>
    </item>
  </channel>
</rss>

