<?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 using BDC data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560489#M1268882</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will not work for you because in the BDC you haven't processed the click of the third button....&lt;/P&gt;&lt;P&gt;just copy and paste the code.....&lt;/P&gt;&lt;P&gt;I have added two records to the bdc data..... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR: it_bdcdata, wa_bdcdata.
wa_bdcdata-program = 'RFITEMAR'. "program name of FBL5N
wa_bdcdata-dynpro = '1000'.
wa_bdcdata-dynbegin = 'X'.
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'BDC_OKCODE'.
wa_bdcdata-fval = '=DYNS'.
APPEND wa_bdcdata TO it_bdcdata.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these are the two records which are added.... where and how to add just see below.... I have written the complete code which you have given  and also the place where the above two records have to be added...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR: it_bdcdata, wa_bdcdata.
"   here is the place where these two records are supposed to be added.....
" This will for sure resolve your issue.... :)
wa_bdcdata-program = 'RFITEMAR'. "program name of FBL5N
wa_bdcdata-dynpro = '1000'.
wa_bdcdata-dynbegin = 'X'.
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'BDC_OKCODE'.
wa_bdcdata-fval = '=DYNS'.
APPEND wa_bdcdata TO it_bdcdata.

wa_bdcdata-program = 'RFITEMAR'. "program name of FBL5N
wa_bdcdata-dynpro = '1000'.
wa_bdcdata-dynbegin = 'X'.
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'BDC_CURSOR'.
wa_bdcdata-fval = 'DD_KUNNR-LOW'. "customer number field
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'DD_KUNNR-LOW'.
wa_bdcdata-fval = s_kunnr. "data from my selection screen parameter
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'BDC_CURSOR'.
wa_bdcdata-fval = '%%DYN009-LOW'.
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = '%%DYN009-LOW'.
wa_bdcdata-fval = 'A'.
APPEND wa_bdcdata TO it_bdcdata.&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;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 May 2009 05:58:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-12T05:58:15Z</dc:date>
    <item>
      <title>Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560482#M1268875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create a program with a functionality to redirect the user to tcode FBL5N. I am using CALL TRANSACTION tcode USING it_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For my BDC data, I do something like the code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR: it_bdcdata, wa_bdcdata.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-program  = 'RFITEMAR'.     "program name of FBL5N&lt;/P&gt;&lt;P&gt;      wa_bdcdata-dynpro   = '1000'.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-dynbegin = 'X'.&lt;/P&gt;&lt;P&gt;      APPEND wa_bdcdata TO it_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR wa_bdcdata.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fnam = 'BDC_CURSOR'.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fval = 'DD_KUNNR-LOW'.     "customer number field&lt;/P&gt;&lt;P&gt;      APPEND wa_bdcdata TO it_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR wa_bdcdata.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fnam = 'DD_KUNNR-LOW'.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fval = s_kunnr.             "data from my selection screen parameter&lt;/P&gt;&lt;P&gt;      APPEND wa_bdcdata TO it_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is how can I pass a value to Special G/L ind. field of FBL5N. You can find this field if you go to tcode FBL5N &amp;gt; click the  dynamic selection button (third button from the left of the application toolbar) &amp;gt; and under the Dynamic Selection area, there you can find the Special G/L ind. field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to pass the value 'A' to that field, I don't know how because that field is on a subscreen. I tried the code below but it doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR wa_bdcdata.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fnam = 'BDC_CURSOR'.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fval = '%%DYN009-LOW'.&lt;/P&gt;&lt;P&gt;      APPEND wa_bdcdata TO it_bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR wa_bdcdata.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fnam = '%%DYN009-LOW'.&lt;/P&gt;&lt;P&gt;      wa_bdcdata-fval = 'A'. &lt;/P&gt;&lt;P&gt;      APPEND wa_bdcdata TO it_bdcdata.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 01:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560482#M1268875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T01:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560483#M1268876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using call recording method...! for BDC..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firts record your Transaction from SHDB(Call ecording method)&lt;/P&gt;&lt;P&gt;then look for the source code..! it contains both session 7 Call transaction method...!&lt;/P&gt;&lt;P&gt;there you can see clearly how to pass the data to sub screen or dynamic selection scree,,, anything...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any problem revert back...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 02:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560483#M1268876</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T02:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560484#M1268877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did record the transaction and followed the suggested abap codes, but when I try to run my program it always say "Field %%DYN009-LOW does not exist in the screen RFITEMAR 1000"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My recording shows this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                                  '%%DYN009-LOW'.&lt;/P&gt;&lt;P&gt;perform bdc_field using '%%DYN009-LOW'&lt;/P&gt;&lt;P&gt;                                  'A'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 02:24:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560484#M1268877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T02:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560485#M1268878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is simple Richard,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My recording shows this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'%%DYN009-LOW'.&lt;/P&gt;&lt;P&gt;perform bdc_field using '%%DYN009-LOW'&lt;/P&gt;&lt;P&gt;'A'.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is because...! In the field '%%DYN009-LOW'. %%DYN-&lt;STRONG&gt;009&lt;/STRONG&gt; denotes the position of the dynamic selection screen,,&lt;/P&gt;&lt;P&gt;Example,,,!&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Special G/L ind.&lt;/STRONG&gt; Above this field there might be 8 fields selected,,, so the field name is '%%DYN009'..&lt;/P&gt;&lt;P&gt;If you select one more field above then it will become '%%DYN010'...!..! &lt;/P&gt;&lt;P&gt;If  selected below no change...!&lt;/P&gt;&lt;P&gt;If one field removed form above this field then it changes to '%%DYN008'..! And so on.,..!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By keeping this in mind now trace the error...!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;Dileep .C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 03:24:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560485#M1268878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T03:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560486#M1268879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apart from Recording the Transaction with the Recorder you can also manually note down the fields. This can be achieved by pressing the F1 Function Key on the Screen Fields and then in the Performance Assistance you can navigate to the Technical Details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you already figured out that Field name is not proper you can change the fieldnames which you will get from technical details for fields and can try executing the program.&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;Thanks,&lt;/P&gt;&lt;P&gt;Samantak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 03:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560486#M1268879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T03:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560487#M1268880</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 Richard,
Why don't you try this way ?

&lt;STRONG&gt;1&lt;/STRONG&gt;. Select the fields which you want dynamically. 
&lt;STRONG&gt;2&lt;/STRONG&gt;. Create one variant by saving the selection-screen.
&lt;STRONG&gt;3&lt;/STRONG&gt;. Go to SHDB transaction to record FBL5N transaction code.
&lt;STRONG&gt;4&lt;/STRONG&gt;. When you start recording, select variant first and click on Dynamic selection button then you can see selected fields. 
&lt;STRONG&gt;5&lt;/STRONG&gt;. Now pass data to the fields on the selection-screen.

I believe that it works. 

Thanks
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560487#M1268880</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-05-12T05:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560488#M1268881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all, FBL5N is Enjoy-Transaction. The funda is we cannot use BDCs for Enjoy-Transactions. &lt;/P&gt;&lt;P&gt;Please check for any BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;-Syed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:42:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560488#M1268881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T05:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560489#M1268882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will not work for you because in the BDC you haven't processed the click of the third button....&lt;/P&gt;&lt;P&gt;just copy and paste the code.....&lt;/P&gt;&lt;P&gt;I have added two records to the bdc data..... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR: it_bdcdata, wa_bdcdata.
wa_bdcdata-program = 'RFITEMAR'. "program name of FBL5N
wa_bdcdata-dynpro = '1000'.
wa_bdcdata-dynbegin = 'X'.
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'BDC_OKCODE'.
wa_bdcdata-fval = '=DYNS'.
APPEND wa_bdcdata TO it_bdcdata.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these are the two records which are added.... where and how to add just see below.... I have written the complete code which you have given  and also the place where the above two records have to be added...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLEAR: it_bdcdata, wa_bdcdata.
"   here is the place where these two records are supposed to be added.....
" This will for sure resolve your issue.... :)
wa_bdcdata-program = 'RFITEMAR'. "program name of FBL5N
wa_bdcdata-dynpro = '1000'.
wa_bdcdata-dynbegin = 'X'.
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'BDC_OKCODE'.
wa_bdcdata-fval = '=DYNS'.
APPEND wa_bdcdata TO it_bdcdata.

wa_bdcdata-program = 'RFITEMAR'. "program name of FBL5N
wa_bdcdata-dynpro = '1000'.
wa_bdcdata-dynbegin = 'X'.
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'BDC_CURSOR'.
wa_bdcdata-fval = 'DD_KUNNR-LOW'. "customer number field
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'DD_KUNNR-LOW'.
wa_bdcdata-fval = s_kunnr. "data from my selection screen parameter
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = 'BDC_CURSOR'.
wa_bdcdata-fval = '%%DYN009-LOW'.
APPEND wa_bdcdata TO it_bdcdata.

CLEAR wa_bdcdata.
wa_bdcdata-fnam = '%%DYN009-LOW'.
wa_bdcdata-fval = 'A'.
APPEND wa_bdcdata TO it_bdcdata.&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;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 05:58:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560489#M1268882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T05:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560490#M1268883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Richard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Test the following Sample Code Hope will solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: it_bdcdata TYPE TABLE OF bdcdata,
      wa_it_bdcdata like LINE OF it_bdcdata.

DATA opt TYPE ctu_params.

CLEAR wa_it_bdcdata.
wa_it_bdcdata-program  = 'RFITEMAR'.
wa_it_bdcdata-dynpro   = '1000'.
wa_it_bdcdata-dynbegin = 'X'.
APPEND wa_it_bdcdata TO it_bdcdata.

CLEAR wa_it_bdcdata.
wa_it_bdcdata-fnam = 'BDC_OKCODE'.
wa_it_bdcdata-fval = '=DYNS'.
APPEND wa_it_bdcdata TO it_bdcdata.

CLEAR wa_it_bdcdata.
wa_it_bdcdata-program  = 'RFITEMAR'.
wa_it_bdcdata-dynpro   = '1000'.
wa_it_bdcdata-dynbegin = 'X'.
APPEND wa_it_bdcdata TO it_bdcdata.

CLEAR wa_it_bdcdata.
wa_it_bdcdata-fnam = '%%DYN009-LOW'.
wa_it_bdcdata-fval = 'B'.
APPEND wa_it_bdcdata TO it_bdcdata.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 06:12:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560490#M1268883</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-05-12T06:12:04Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction using BDC data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560491#M1268884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Siddarth and Faisal! Your input solved my problem! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also thank you to all who tried to help me. Very well appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 May 2009 10:18:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc-data/m-p/5560491#M1268884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-12T10:18:50Z</dc:date>
    </item>
  </channel>
</rss>

