<?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  Tcode TBDM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514014#M236775</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do a BDC to fill the values of a report program, when the SUBMIT statement provides the functionality for you.  The CAll TRANSACTION statement is usually used to call module pool programs not reports.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should always try to stay away from BDCs whenever possible, in this case, the SUBMIT is the better way to go.&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>Mon, 14 Aug 2006 19:56:03 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-08-14T19:56:03Z</dc:date>
    <item>
      <title>CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514005#M236766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;   I want to call 'TBDM' transaction code from custom proram can anybody tell me the all procedure including step (if possible code as a prototype)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 19:02:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514005#M236766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T19:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514006#M236767</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;  CALL TRANSACTION 'TBDM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 19:03:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514006#M236767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T19:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514007#M236768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL TRANSACTION 'TBDM'.&lt;/P&gt;&lt;P&gt;That's it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 19:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514007#M236768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T19:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514008#M236769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a report progam, so you can simply call it by using the SUBMIT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

submit RFTBFF00 via selection-screen
          and return.



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you want to pass parameters to this program, you can do so simply by using the WITH extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;submit RFTBFF00 via selection-screen
     with file = 'C:test.txt'
          and return.&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 19:05:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514008#M236769</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-14T19:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514009#M236770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want it to execute automatically you can pass the appropriate parameters using WITH  and get rid of the VIA SELECTION-SCREEN extension.  This will skip the selection screen and execute the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

submit RFTBFF00  
      with file = 'C:test.txt'
          and return.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION may not be a good solution in this case, since it is a report program.&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 19:06:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514009#M236770</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-14T19:06:59Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514010#M236771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am callling that tcode but how can I pass the value ot that tcode's selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 19:13:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514010#M236771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T19:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514011#M236772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you check out my previous answers you will see that you can pass values to the selection screen by SUBMITing the program instead of CALLing the TRANSACTION.  You can use the WITH extension of the SUBMIT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the above code.&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>Mon, 14 Aug 2006 19:16:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514011#M236772</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-14T19:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514012#M236773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here would be the complete call.  You can change the parameters as you see fix.  Remember when setting a radiobutton in a group, you need to make sure that the other radiobuttons in the group are = space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit RFTBFF00 via selection-screen&lt;/P&gt;&lt;P&gt;     with file = 'C:\test.txt'&lt;/P&gt;&lt;P&gt;     with pcupload = 'X'     " Upload&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     with par_prs = 'X'      " Exchange Rates&lt;/P&gt;&lt;P&gt;     with par_men = space    " Exchange Rates&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     with par_rfn = 'X'      " Data Provider Direct&lt;/P&gt;&lt;P&gt;     with par_rfd  = space   " Data Provider In Direct&lt;/P&gt;&lt;P&gt;     with par_feed = space   " Data Provider&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     with log      = 'X'     " Error File - Generate&lt;/P&gt;&lt;P&gt;     with logfile  = 'C:\SAPPCADM\errortest.log'&lt;/P&gt;&lt;P&gt;     with logdwnld = 'X'     " Error File -Download&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     with par_Tst  = 'X'     "Output - Test Mode&lt;/P&gt;&lt;P&gt;     with par_dsal = space   "All&lt;/P&gt;&lt;P&gt;     with par_dsfl = 'X'     "Errors&lt;/P&gt;&lt;P&gt;     with par_dsok = space   "Correct&lt;/P&gt;&lt;P&gt;     with par_var  = space   "Variant&lt;/P&gt;&lt;P&gt;          and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLease make sure to award points for helpful answers and mark your posts as solved when solved completely.  Thanks.&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>Mon, 14 Aug 2006 19:29:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514012#M236773</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-14T19:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514013#M236774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you tell me why you want me to go with the submit rather than call transaction. If I have solid reason then I can represent that to the functional people.    (I already did the program with all the way and it working fine all the way but I did in call transaction to call TBDM with the same way as we do  for BDC thats why Iam asking this question that is there any other way we can call transaction and also pass the section options. my proogram has also has the ability to do from submit also)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Aug 2006 19:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514013#M236774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-14T19:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514014#M236775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do a BDC to fill the values of a report program, when the SUBMIT statement provides the functionality for you.  The CAll TRANSACTION statement is usually used to call module pool programs not reports.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should always try to stay away from BDCs whenever possible, in this case, the SUBMIT is the better way to go.&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>Mon, 14 Aug 2006 19:56:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514014#M236775</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-14T19:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: CAll  Tcode TBDM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514015#M236776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please help me to prepare the file format for this transaction TBDM.If you have some test data record can you just paste in this thread.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Feb 2007 20:15:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-tcode-tbdm/m-p/1514015#M236776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-05T20:15:48Z</dc:date>
    </item>
  </channel>
</rss>

