<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694011#M1293717</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call transaction skip first screen. and give the values to the parameter id&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 May 2009 10:02:37 GMT</pubDate>
    <dc:creator>Madhurivs23</dc:creator>
    <dc:date>2009-05-25T10:02:37Z</dc:date>
    <item>
      <title>Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694007#M1293713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi every body,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i stuck up with one problem,i.e..&lt;/P&gt;&lt;P&gt;i have call one transaction for that i am using statement&lt;/P&gt;&lt;P&gt;Call transaction 'VA01'.&lt;/P&gt;&lt;P&gt;Now thing is that,when i call this transaction from my program i am able to see the sales order scree.&lt;/P&gt;&lt;P&gt;if i am giving ORDER TYPE is OR &amp;gt; then i have to click enter &amp;gt; again i want to go back my program&lt;/P&gt;&lt;P&gt;there i have to use this order type( means in my programm).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 09:08:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694007#M1293713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T09:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694008#M1293714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;get the value from parameter id &lt;STRONG&gt;AAT&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 09:10:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694008#M1293714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T09:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694009#M1293715</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;When ever you want to do some thing with the order type, have these order types in TVARV table.&lt;/P&gt;&lt;P&gt;if the user is tryiing to post a document of type OR, then do something in your program and call the bdc&lt;/P&gt;&lt;P&gt;i mean call transaction va01 using bdcdata update 'S' mode 'N' messages msgcoll.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are trying to do the BDC, then we need to follow this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want only after entering order type in VA01, then you have to search for the USer exit or Enchancement spots.......like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 09:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694009#M1293715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T09:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694010#M1293716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Sekhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Test the following sample code and let me know if any issue,&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,
      auart TYPE auart. " Sales Document Type

auart = 'AA'. " Give Order Type Here

DATA opt TYPE ctu_params.

CLEAR wa_it_bdcdata.
wa_it_bdcdata-program  = 'SAPMV45A'.
wa_it_bdcdata-dynpro   = '0101'.
wa_it_bdcdata-dynbegin = 'X'.
APPEND wa_it_bdcdata TO it_bdcdata.

CLEAR wa_it_bdcdata.
wa_it_bdcdata-fnam = 'BDC_CURSOR'.
wa_it_bdcdata-fval = 'VBAK-AUART'.
APPEND wa_it_bdcdata TO it_bdcdata.

CLEAR wa_it_bdcdata.
wa_it_bdcdata-fnam = 'VBAK-AUART'.
wa_it_bdcdata-fval = auart.
APPEND wa_it_bdcdata TO it_bdcdata.

opt-dismode = 'E'.

CALL TRANSACTION 'VA01' USING it_bdcdata OPTIONS FROM opt.&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>Mon, 25 May 2009 09:27:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694010#M1293716</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-05-25T09:27:16Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694011#M1293717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call transaction skip first screen. and give the values to the parameter id&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 10:02:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694011#M1293717</guid>
      <dc:creator>Madhurivs23</dc:creator>
      <dc:date>2009-05-25T10:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694012#M1293718</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;Plz refer this coding for sales order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM user_commands USING syst_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                           selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE:syst_ucomm.&lt;/P&gt;&lt;P&gt;    WHEN  '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;      IF selfield-fieldname = 'ORDER_DOC'.                                      "insert field name here&lt;/P&gt;&lt;P&gt;        READ TABLE it_final INTO wa_final INDEX selfield-tabindex.&lt;/P&gt;&lt;P&gt;        IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;          SET PARAMETER ID 'AUN' FIELD wa_final-order_doc.&lt;/P&gt;&lt;P&gt;          CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;I_CALLBACK_USER_COMMAND           = 'USER_COMMANDS'&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;Archana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 10:30:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694012#M1293718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T10:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Call Transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694013#M1293719</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;There is convertion routine for field AUART. So please check once if the input is OR then it stores in databse is TA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By this FM.&lt;/P&gt;&lt;P&gt;CONVERSION_EXIT_AUART_INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 10:45:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/5694013#M1293719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T10:45:41Z</dc:date>
    </item>
  </channel>
</rss>

