<?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: user_command error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501212#M1421819</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dharam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following code change is still not giving the result.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SET PARAMETER ID 'AUN' FIELD '161'.
      CALL TRANSACTION 'VA43'AND SKIP FIRST SCREEN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It goes to initial screen of VA43 but there is an error,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"Enter the Document Number"&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jan 2010 05:15:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-21T05:15:03Z</dc:date>
    <item>
      <title>user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501192#M1421799</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 have defined the following User_Command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CASE RS_SELFIELD-FIELDNAME.
    WHEN 'VBELN'.
      SET PARAMETER ID 'VF' FIELD RS_SELFIELD-VALUE.
      CALL TRANSACTION 'VF03'  AND SKIP FIRST SCREEN.
    WHEN 'VBELN_GRP' or  'VBELV'.
      SET PARAMETER ID 'AUN' FIELD RS_SELFIELD-VALUE.
      CALL TRANSACTION 'VA43'  AND SKIP FIRST SCREEN.
*    WHEN 'VBELV'.
*      SET PARAMETER ID 'AUN' FIELD RS_SELFIELD-VALUE.
*      CALL TRANSACTION 'VA43'  AND SKIP FIRST SCREEN.
  ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when the field id VBELN,the call transaction is working fine.&lt;/P&gt;&lt;P&gt;in either case where VBELN_GRP / VBELV are the fields,the call transaction is not working.I have checked for the parameter ID.The error being the first screen of VA43 being displayed,or the OLD contract previously opened in different session is getting displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please suggest changes to rectify this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 05:12:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501192#M1421799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T05:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501193#M1421800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FREE MEMORY ID 'VF'.&lt;/P&gt;&lt;P&gt;FREE MEMORY ID 'AUN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE RS_SELFIELD-FIELDNAME.&lt;/P&gt;&lt;P&gt;    WHEN 'VBELN'.&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID 'VF' FIELD RS_SELFIELD-VALUE.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'VF03'  AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;    WHEN 'VBELN_GRP' or  'VBELV'.&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID 'AUN' FIELD RS_SELFIELD-VALUE.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'VA43'  AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   WHEN 'VBELV'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     SET PARAMETER ID 'AUN' FIELD RS_SELFIELD-VALUE.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     CALL TRANSACTION 'VA43'  AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 05:28:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501193#M1421800</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-19T05:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501194#M1421801</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;&lt;/P&gt;&lt;P&gt;Try to clear the variable(RS_SELFIELD-FIELDNAME).not sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 05:30:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501194#M1421801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T05:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501195#M1421802</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; VBELN_GRP  -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; must be of type VBELN &lt;/P&gt;&lt;P&gt; VBELV    -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; must be of type VBELN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherwise your statement are OK&lt;/P&gt;&lt;P&gt;I have checked it on my side it is perfect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set a break-point before the set parameter id statement and check whether the value is correct in the FIELD RS_SELFIELD-VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regareds,&lt;/P&gt;&lt;P&gt;Abhijit G. Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 05:31:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501195#M1421802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T05:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501196#M1421803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Keshav for the prompt reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FREE MEMORY ID 'VF'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;FREE MEMORY ID 'AUN'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even the above statements are not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 07:04:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501196#M1421803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T07:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501197#M1421804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following fields are storing the correct value as per the ALV field we Click.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RS_SELFIELD-VALUE &amp;amp; RS_SELFIELD-FIELDNAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When CALL TRANSACTION command is executed,it points to a different field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 07:12:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501197#M1421804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T07:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501198#M1421805</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;just do one small test remove the skip screen  statement and see if it is taking you to the transaction code: VA43 and the desired value is getting populated via the parameter id...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just do this and let me know....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit G. Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 07:25:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501198#M1421805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T07:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501199#M1421806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the value in the following fields are as per the ALV grid:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;RS_SELFIELD-VALUE  
RS_SELFIELD-FIELDNAME&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when the transaction comes,it has a different field value.If its 140 in ALV grid,then 160 is getting displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even removing the &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SKIP FIRST SCREEN&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does bring us to the initial screen,but the contract number is again an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 08:43:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501199#M1421806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T08:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501200#M1421807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the BDC Method like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'VA01' with bdcdata.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 08:46:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501200#M1421807</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-19T08:46:37Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501201#M1421808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keshav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION 'VA43' USING BDCDATA_TAB.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is not working.it goes to the initial screen  of VA43,with the wrong value of contract.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 09:02:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501201#M1421808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T09:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501202#M1421809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi,
&amp;lt;li&amp;gt;There should be corresponding &lt;STRONG&gt;GET PARAMETER ID 'AUN' FIELD xyz&lt;/STRONG&gt; for the SET PARAMETER ID mentioned before you use &lt;STRONG&gt;CALL TRANSACTION 'VA43'  AND SKIP FIRST SCREEN&lt;/STRONG&gt; statement. 
&amp;lt;li&amp;gt; &lt;STRONG&gt;SAPMV45A&lt;/STRONG&gt; is the program for &lt;STRONG&gt;VA43&lt;/STRONG&gt; transaction code. I searche with the term &lt;STRONG&gt;GET PARAMETER ID 'AUN'&lt;/STRONG&gt; in that program. It was not found. So conclusion is, AND SKIP FIRST SCREEN is used when you have corresponding GET PARAMETER ID in the program of the transaction. 

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 09:06:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501202#M1421809</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-01-19T09:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501203#M1421810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you must have followed the question,its working fine for VF03 tcode.But for VA43 its giving error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 09:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501203#M1421810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T09:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501204#M1421811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please read the reason suggested by Venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 16:13:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501204#M1421811</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-19T16:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501205#M1421812</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;put a break-point before you case statement and check the values in RS_SELEFIELD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if they are correct then in the case statement do this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE RS_SELFIELD-FIELDNAME.&lt;/P&gt;&lt;P&gt;    WHEN 'VBELN'.&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID 'VF' FIELD RS_SELFIELD-VALUE.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'VF03'  AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;    WHEN 'VBELN_GRP' or  'VBELV'.&lt;/P&gt;&lt;P&gt;      FREE MEMORY ID 'AUN'.  &lt;SPAN __default_attr="red" __jive_macro_name="color"&gt; -&lt;/SPAN&gt;&lt;/P&gt;&lt;HR originaltext="---" /&gt;&amp;gt; Check if this solves it for you&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID 'AUN' FIELD RS_SELFIELD-VALUE.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'VA43'  AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit G. Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 17:51:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501205#M1421812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T17:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501206#M1421813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK I have changed the code by leaving the following statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AND SKIP FIRST SCREEN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the double click takes us to the initial screen of VA43,but the value of the field is not populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 04:40:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501206#M1421813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-20T04:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501207#M1421814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OK I have changed the code by leaving the following statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AND SKIP FIRST SCREEN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the double click takes us to the initial screen of VA43,but the value of the field is not populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 05:57:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501207#M1421814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-20T05:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501208#M1421815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Abhijit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FREE MEMORY ID&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is not helping solve the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 05:58:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501208#M1421815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-20T05:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501209#M1421816</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;try this one VA43 field name shold be 'VBELN' .Please cehck the value(VBELN).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: dharma raj on Jan 20, 2010 11:35 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2010 06:04:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501209#M1421816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-20T06:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501210#M1421817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dharma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That too is giving error,because the field name in ALV needs to be checked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2010 04:39:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501210#M1421817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-21T04:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: user_command error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501211#M1421818</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;for this it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SET PARAMETER ID 'AUN' FIELD '40000231'.&lt;/P&gt;&lt;P&gt;      CALL TRANSACTION 'VA43'  AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so please hard code the value and cehk the vaule or while debuggin the correct value is passing or not check it .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ALV u r passing the VA43(contract no)? .&lt;/P&gt;&lt;P&gt;what error u r getting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jan 2010 04:50:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-command-error/m-p/6501211#M1421818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-21T04:50:53Z</dc:date>
    </item>
  </channel>
</rss>

