<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324180#M166455</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use a SUBMIT to report RIEQUI20 instead CALL TRANSACTION. &lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 May 2006 12:32:04 GMT</pubDate>
    <dc:creator>LucianoBentiveg</dc:creator>
    <dc:date>2006-05-26T12:32:04Z</dc:date>
    <item>
      <title>call transaction using bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324179#M166454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a program displaying the alv list report,&lt;/P&gt;&lt;P&gt;by selecting the line in the alv list report, i need to call another tranaction&lt;/P&gt;&lt;P&gt;and the values in the alv list is to be populated in the new transaction fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have to use Call Transaction using bdc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the below subroutine but this only displaying only the transaction, and not populating the value in the fields. &lt;/P&gt;&lt;P&gt;instead of using this CALL TRANSACTION 'IH10' and SKIP FIRST SCREEN. I need to use CALL TRANASCTION USING BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM zuser_command USING p_ucomm TYPE sy-ucomm&lt;/P&gt;&lt;P&gt;                         p_ls_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;  DATA: v_lisel TYPE sylisel.&lt;/P&gt;&lt;P&gt;  v_lisel = sy-lisel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION 'IH10' and SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;ENDFORM.                    "zuser_command&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 07:07:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324179#M166454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T07:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction using bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324180#M166455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use a SUBMIT to report RIEQUI20 instead CALL TRANSACTION. &lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 12:32:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324180#M166455</guid>
      <dc:creator>LucianoBentiveg</dc:creator>
      <dc:date>2006-05-26T12:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction using bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324181#M166456</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;you need to use some thing like this...&lt;/P&gt;&lt;P&gt;EQN is the parameter ID for the equipment number.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;b&amp;gt;set parameter id 'EQN' field rs_selfield-value.
CALL TRANSACTION 'IH10' and SKIP FIRST SCREEN.&amp;lt;/b&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 12:43:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324181#M166456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T12:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction using bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324182#M166457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And also you need to use conversion routine if requires.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: v_equnr type equnr.
v_equnr =  rs_selfield-value.


CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
  EXPORTING
    INPUT         = V_EQUNR
 IMPORTING
   OUTPUT        = V_EQUNR.
set parameter id 'EQN' field v_equnr.
CALL TRANSACTION 'IH10' and SKIP FIRST SCREEN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 12:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324182#M166457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T12:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction using bdc</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324183#M166458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HII&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'IH10' using bdcdata update 's' mode 'a' messages&lt;/P&gt;&lt;P&gt;into bdcmsgcoll.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if unable to solve your problem plzz paste your code&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;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 12:51:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-using-bdc/m-p/1324183#M166458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T12:51:08Z</dc:date>
    </item>
  </channel>
</rss>

