<?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: problem in performs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-performs/m-p/2860177#M670723</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;Change your declarations from &lt;/P&gt;&lt;P&gt;TYPES: ty_accountgl LIKE bapiacgl09,&lt;/P&gt;&lt;P&gt;ty_accountap LIKE bapiacap09,&lt;/P&gt;&lt;P&gt;ty_currencyamount LIKE bapiaccr09&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;TYPES: ty_accountgl TYPE bapiacgl09,&lt;/P&gt;&lt;P&gt;ty_accountap TYPE bapiacap09,&lt;/P&gt;&lt;P&gt;ty_currencyamount TYPE bapiaccr09&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Rajasekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Oct 2007 18:28:16 GMT</pubDate>
    <dc:creator>rajasekhar_matukumalli3</dc:creator>
    <dc:date>2007-10-01T18:28:16Z</dc:date>
    <item>
      <title>problem in performs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-performs/m-p/2860174#M670720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My data declarations and perform statement are as follows&lt;/P&gt;&lt;P&gt;TYPES:   ty_accountgl       LIKE bapiacgl09,&lt;/P&gt;&lt;P&gt;         ty_accountap       LIKE bapiacap09,&lt;/P&gt;&lt;P&gt;         ty_currencyamount  LIKE bapiaccr09.&lt;/P&gt;&lt;P&gt;DATA: t_accountgl         TYPE  STANDARD TABLE OF ty_accountgl,&lt;/P&gt;&lt;P&gt;      wa_accountgl        TYPE                    ty_accountgl,&lt;/P&gt;&lt;P&gt;      t_accountap         TYPE  STANDARD TABLE OF ty_accountap,&lt;/P&gt;&lt;P&gt;      wa_accountap        TYPE                    ty_accountap,&lt;/P&gt;&lt;P&gt;      t_currencyamount    TYPE  STANDARD TABLE OF ty_currencyamount,&lt;/P&gt;&lt;P&gt;      wa_currencyamount   TYPE                    ty_currencyamount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform document_post tables t_accountgl t_accountap t_currencyammount&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM document_post TABLES   P_T_ACCOUNTGL STRUCTURE  ty_accountgl&lt;/P&gt;&lt;P&gt;                            P_T_ACCOUNTAP STRUCTURE TY_ACCOUNTAP&lt;/P&gt;&lt;P&gt;                          P_T_CURRENCYAMOUNT STRUCTURE TY_CURRENCYAMOUNt.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i do syntax check the error is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field "TY_ACCOUNTGL" is unknown, but there is a field with the similar name "T_ACCOUNTGL".		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CAN ANY ONE HELP ME IN RESOLVING THIS PROBLEM...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS,&lt;/P&gt;&lt;P&gt;BHASKAR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 17:48:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-performs/m-p/2860174#M670720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-01T17:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: problem in performs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-performs/m-p/2860175#M670721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are passing ty_accountgl as a table to the perform, but it is not defined as a table. It's just a structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 17:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-performs/m-p/2860175#M670721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-01T17:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: problem in performs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-performs/m-p/2860176#M670722</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;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PERFORM DOCUMENT_POST TABLES T_ACCOUNTGL T_ACCOUNTAP T_CURRENCYAMOUNT.

FORM DOCUMENT_POST TABLES P_T_ACCOUNTGL LIKE T_ACCOUNTGL
                          P_T_ACCOUNTAP LIKE T_ACCOUNTAP
                          P_T_CURRENCYAMOUNT LIKE T_CURRENCYAMOUNT.

ENDFORM.                    "


OR

FORM DOCUMENT_POST TABLES P_T_ACCOUNTGL 
                          P_T_ACCOUNTAP 
                          P_T_CURRENCYAMOUNT.

ENDFORM.                    "
&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 17:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-performs/m-p/2860176#M670722</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-10-01T17:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: problem in performs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-performs/m-p/2860177#M670723</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;Change your declarations from &lt;/P&gt;&lt;P&gt;TYPES: ty_accountgl LIKE bapiacgl09,&lt;/P&gt;&lt;P&gt;ty_accountap LIKE bapiacap09,&lt;/P&gt;&lt;P&gt;ty_currencyamount LIKE bapiaccr09&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to&lt;/P&gt;&lt;P&gt;TYPES: ty_accountgl TYPE bapiacgl09,&lt;/P&gt;&lt;P&gt;ty_accountap TYPE bapiacap09,&lt;/P&gt;&lt;P&gt;ty_currencyamount TYPE bapiaccr09&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Rajasekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Oct 2007 18:28:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-performs/m-p/2860177#M670723</guid>
      <dc:creator>rajasekhar_matukumalli3</dc:creator>
      <dc:date>2007-10-01T18:28:16Z</dc:date>
    </item>
  </channel>
</rss>

