<?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: Issue using perform in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-using-perform/m-p/4910455#M1146410</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the solution for your error with corrected code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: it_rbkp TYPE TABLE OF RBKP.&lt;/P&gt;&lt;P&gt;DATA: wa_rbkp like line of it_rbkp.&lt;/P&gt;&lt;P&gt;DATA: v_amt LIKE RBKP-RMWWR.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF not WA_RBKP is initial.&lt;/P&gt;&lt;P&gt;   perform main using  wa_rbkp-belnr&lt;/P&gt;&lt;P&gt;                       wa_rbkp-gjahr.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM main  USING    P_WA_RBKP_BELNR&lt;/P&gt;&lt;P&gt;                                 P_WA_RBKP_GJAHR.&lt;/P&gt;&lt;P&gt;  perform action using wa_rbkp-rmwwr.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " main&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM action using p_rmwwr TYPE RMWWR.&lt;/P&gt;&lt;P&gt;   v_amt = p_rmwwr.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you further questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;text removed&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on Dec 10, 2008 9:16 AM - Do not ask for or offer points, as per the forum rules.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Dec 2008 20:27:56 GMT</pubDate>
    <dc:creator>nkr1shna</dc:creator>
    <dc:date>2008-12-09T20:27:56Z</dc:date>
    <item>
      <title>Issue using perform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-using-perform/m-p/4910452#M1146407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am using following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: it_rbkp TYPE TABLE OF RBKP.
DATA: wa_rbkp like line of it_rbkp.
DATA: v_amt LIKE RBKP-RMWWR.

IF not WA_RBKP is initial.
   perform main using  wa_rbkp-belnr
                       wa_rbkp-gjahr.
ENDIF.


FORM main  USING    P_WA_RBKP_BELNR
                                 P_WA_RBKP_GJAHR.
perform action using wa_rbkp.
ENDFORM.                    " main

FORM action using wa_rbkp.
v_amt = wa_rbkp-rmwwr.
endform.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the statement v_amt = wa_rbkp-rmwwr is causing a problem saying that data object wa_rbkp has no structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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;Regards,&lt;/P&gt;&lt;P&gt;Rajes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajesh Thomas on Dec 9, 2008 8:50 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 19:50:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-using-perform/m-p/4910452#M1146407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T19:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using perform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-using-perform/m-p/4910453#M1146408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to explicitly TYPE the parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM action using wa_rbkp TYPE RBKP. " &amp;lt;&amp;lt;
v_amt = wa_rbkp-rmwwr.
endform.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 20:03:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-using-perform/m-p/4910453#M1146408</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-12-09T20:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using perform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-using-perform/m-p/4910454#M1146409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,,&lt;/P&gt;&lt;P&gt;you can do like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM action USING wa_rbkp STRUCTURE rbkp.
  v_amt = wa_rbkp-rmwwr.
ENDFORM.                    "action&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew83.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 20:05:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-using-perform/m-p/4910454#M1146409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T20:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: Issue using perform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-using-perform/m-p/4910455#M1146410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the solution for your error with corrected code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: it_rbkp TYPE TABLE OF RBKP.&lt;/P&gt;&lt;P&gt;DATA: wa_rbkp like line of it_rbkp.&lt;/P&gt;&lt;P&gt;DATA: v_amt LIKE RBKP-RMWWR.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;IF not WA_RBKP is initial.&lt;/P&gt;&lt;P&gt;   perform main using  wa_rbkp-belnr&lt;/P&gt;&lt;P&gt;                       wa_rbkp-gjahr.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM main  USING    P_WA_RBKP_BELNR&lt;/P&gt;&lt;P&gt;                                 P_WA_RBKP_GJAHR.&lt;/P&gt;&lt;P&gt;  perform action using wa_rbkp-rmwwr.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " main&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM action using p_rmwwr TYPE RMWWR.&lt;/P&gt;&lt;P&gt;   v_amt = p_rmwwr.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you further questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Krishna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;text removed&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matt on Dec 10, 2008 9:16 AM - Do not ask for or offer points, as per the forum rules.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 20:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-using-perform/m-p/4910455#M1146410</guid>
      <dc:creator>nkr1shna</dc:creator>
      <dc:date>2008-12-09T20:27:56Z</dc:date>
    </item>
  </channel>
</rss>

