<?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: Call transaction message in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883499#M370819</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;Thanks for your help. I tried with Z-BDC03(12). Now it gave me the following  mesage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Z-BDC03(12) is not an ibput field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Feb 2007 18:53:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-01T18:53:17Z</dc:date>
    <item>
      <title>Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883487#M370807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I am trying to upload the data from text file to KP06 t-code using CALL transaction.&lt;/P&gt;&lt;P&gt;The following is the statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'KP06' using bdcdata mode 'E' messages into imsgtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is displaying the ok_code screen with value =CBUC and displaying the actual screen 0110. and then displaying the following message in the down message bar.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field BDC03 (12) does not exist in the screen SAPLKPP2 0110. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To me the field BDC03 (12) is there in the screen. I can see it when the screen is displayed along with the ok_code screen.&lt;/P&gt;&lt;P&gt;Can someone give me some idea how to fix this problem? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the great help. &lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 16:53:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883487#M370807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T16:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883488#M370808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you have to scroll down to see the line?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 16:58:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883488#M370808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T16:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883489#M370809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;Thanks for the response. Yes, it has scroll down bar and I can scroll down.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 17:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883489#M370809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T17:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883490#M370810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;(12) means the 12th line of the table?  If so, you should use the DEFSIZE parameter to give you a consistant size and you will need to handle the page up/down.  That message is telling you that the field in question is not currently on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


data: bdcdata type table of bdcdata with header line.
data: imsgtab type table of bdcmsgcoll with header line.

data: opt type ctu_params.

opt-DISMODE = 'E'.
opt-defsize = 'X'.


call transaction 'KP06' using bdcdata
                        options from opt
                        messages into imsgtab.

&lt;/CODE&gt;&lt;/PRE&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>Thu, 01 Feb 2007 17:03:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883490#M370810</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-02-01T17:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883491#M370811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I find it easier to handle this sort of situation with the "Position..." button (ok code CPOZ). If you have entered 12 lines, press this button (in batch input) and line 13 will come to the top or be the second line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is available for this transaction, but unfortunately not for all transactions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 17:09:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883491#M370811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T17:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883492#M370812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree, the position button has saved me a lot.  If there is one for this transaction,  do your recording again, this time use the position to button to make the certain row the first row of the table control, then you will can do the BDC logic in a LOOP and always be modifing the first row.&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>Thu, 01 Feb 2007 17:15:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883492#M370812</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-02-01T17:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883493#M370813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;I tried your solution. It did not work. There are only 13 rows in the screen. For the 12 rows the data is filled from the input text file. The 13th row contains the total of all 12 rows. The error message is coming on 12th row. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 17:22:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883493#M370813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T17:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883494#M370814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure it's not Z-BDC03 (12) instead of BDC03 (12)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 17:30:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883494#M370814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T17:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883495#M370815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;Yes, I am sure it is BDC03(12). That is the name displayed in the message. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 17:37:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883495#M370815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T17:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883496#M370816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I meant are you passing BDC03(12) or Z-BDC03(12) to the BDC. The field name according to the technical information is Z-BDC03(12). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 17:44:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883496#M370816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T17:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883497#M370817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;The following is the statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC03(12)' wa_rec-12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 17:48:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883497#M370817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T17:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883498#M370818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

perform bdc_field using 'Z-BDC03(12)' wa_rec-12.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 18:34:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883498#M370818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T18:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883499#M370819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;Thanks for your help. I tried with Z-BDC03(12). Now it gave me the following  mesage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Z-BDC03(12) is not an ibput field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 18:53:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883499#M370819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T18:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883500#M370820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I guess that's progress. You are running it in mode 'E', so is the 12th line amount open for input when you get the message?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 18:57:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883500#M370820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T18:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883501#M370821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;Do you mind if you can elaborate in detail? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 19:10:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883501#M370821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T19:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883502#M370822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you get the error message in mode 'E', you have anumber of lines filled in with cost elements and amounts. The last line is a total line. Is it the 11th, 12th or 13th line on the screen? Is this the one you are trying to change?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 19:23:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883502#M370822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T19:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883503#M370823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;Thank you for your great help. The last line is 13. Only first 12 lines are filled from the input file/internal table. The 13th line is sum of all first 12 lines. The error message is coming on line 12. If I comment line 12, it gives the error message on line 11 which is bdc03(11). But one thing I noticed is Call transaction sy-subrc =0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 19:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883503#M370823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T19:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883504#M370824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If 12 lines are filled from your file, try putting it line 14 (the one after the total).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 19:43:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883504#M370824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T19:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883505#M370825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;/P&gt;&lt;P&gt;Then don't I need to change the screen to have the 14th line to be appeared? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sobhan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 19:46:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883505#M370825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T19:46:14Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction message</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883506#M370826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's right; you only have 13 lines. Try filling one fewer and put this on the 13th line - just to see if this works. If it does, you'll have to use one of the techniques Rich or I suggested earlier to fill more entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 19:52:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-message/m-p/1883506#M370826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T19:52:57Z</dc:date>
    </item>
  </channel>
</rss>

