<?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: Transaction Call in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394446#M191327</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is not possible to set a field of the called transaction to read-only through Batch Input I need another solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore I tried to call a selection variant in this transaction. That works almost fine, it automatically opens the screen where I can choose a variant but then a Pop-Up appears "OK-Code =PICK". Now I have to click ok and after that the variant is loaded. How can I avoid this Pop-Up?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'RM06EL00' '1000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/EGET'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'EL_LIFNR-LOW'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Get the right selection-variant &lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMSSY0' '0120'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              '08/10'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=PICK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction 'test'&lt;/P&gt;&lt;P&gt;  using bdcdata&lt;/P&gt;&lt;P&gt;  MODE 'n'&lt;/P&gt;&lt;P&gt;  Update 'L'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BDC_DYNPRO USING PROGRAM DYNPRO.&lt;/P&gt;&lt;P&gt;  CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;  BDCDATA-PROGRAM  = PROGRAM.&lt;/P&gt;&lt;P&gt;  BDCDATA-DYNPRO   = DYNPRO.&lt;/P&gt;&lt;P&gt;  BDCDATA-DYNBEGIN = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BDC_FIELD USING FNAM FVAL.&lt;/P&gt;&lt;P&gt;    CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;    BDCDATA-FNAM = FNAM.&lt;/P&gt;&lt;P&gt;    BDCDATA-FVAL = FVAL.&lt;/P&gt;&lt;P&gt;    APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Jul 2006 13:02:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-13T13:02:47Z</dc:date>
    <item>
      <title>Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394441#M191322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I call a transaction out of a report and pass some values to the called Transaction (with BDCDATA). That works fine, but now I need to know if it is possible to set some of the fields in the transaction to read only that the user can not change the given values. How can I realize this in my report?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or can I call the transaction and then a variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 08:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394441#M191322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T08:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394442#M191323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi matthias,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Well, thats not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Ie. reading the screen values,&lt;/P&gt;&lt;P&gt;   which the transaction has populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. However,&lt;/P&gt;&lt;P&gt;   u can read the database tables,&lt;/P&gt;&lt;P&gt;   and if u know the logic,&lt;/P&gt;&lt;P&gt;   u can detect/know &lt;/P&gt;&lt;P&gt;   which values will be there on screen.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 08:36:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394442#M191323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T08:36:56Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394443#M191324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to create a transaction variant I guess.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 08:37:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394443#M191324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T08:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394444#M191325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you running the BDC in foreground?  Only then can the user change the values in the fields. Most BDC sessions run in background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you calling a SAP transaction?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 08:37:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394444#M191325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T08:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394445#M191326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to create a Screen Variant for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 08:40:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394445#M191326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T08:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394446#M191327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it is not possible to set a field of the called transaction to read-only through Batch Input I need another solution. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore I tried to call a selection variant in this transaction. That works almost fine, it automatically opens the screen where I can choose a variant but then a Pop-Up appears "OK-Code =PICK". Now I have to click ok and after that the variant is loaded. How can I avoid this Pop-Up?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'RM06EL00' '1000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '/EGET'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              'EL_LIFNR-LOW'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Get the right selection-variant &lt;/P&gt;&lt;P&gt;perform bdc_dynpro      using 'SAPMSSY0' '0120'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;                              '08/10'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field       using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;                              '=PICK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction 'test'&lt;/P&gt;&lt;P&gt;  using bdcdata&lt;/P&gt;&lt;P&gt;  MODE 'n'&lt;/P&gt;&lt;P&gt;  Update 'L'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BDC_DYNPRO USING PROGRAM DYNPRO.&lt;/P&gt;&lt;P&gt;  CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;  BDCDATA-PROGRAM  = PROGRAM.&lt;/P&gt;&lt;P&gt;  BDCDATA-DYNPRO   = DYNPRO.&lt;/P&gt;&lt;P&gt;  BDCDATA-DYNBEGIN = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BDC_FIELD USING FNAM FVAL.&lt;/P&gt;&lt;P&gt;    CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;    BDCDATA-FNAM = FNAM.&lt;/P&gt;&lt;P&gt;    BDCDATA-FVAL = FVAL.&lt;/P&gt;&lt;P&gt;    APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 13:02:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394446#M191327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T13:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394447#M191328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. very minor mistake&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. use CAPITAL case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. N (not n) for mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction 'test'&lt;/P&gt;&lt;P&gt;using bdcdata&lt;/P&gt;&lt;P&gt;MODE '&amp;lt;b&amp;gt;N&amp;lt;/b&amp;gt;'&lt;/P&gt;&lt;P&gt;Update 'L'.&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;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 13:10:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394447#M191328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T13:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394448#M191329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now the transaction does not start with MODE 'N'. It starts with MODE 'A', but then I get the described problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 13:20:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394448#M191329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T13:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394449#M191330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To suppress the Dialog box for ok code, uncheck it in expert tab of options in GUI setting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Alt+F12 opens the gui settings menu, select Options and then Expert tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 13:31:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394449#M191330</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-07-13T13:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394450#M191331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer Sridhar. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But If I uncheck the Dialog Box in the GUI Settings then the code "/EGET" and "=PICK" does not appear in a Dialog Box but in the commando field (where I usually type in the transaction numbers)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Matthias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 13:57:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394450#M191331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T13:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394451#M191332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK codes used in the BDC table appear in the command field, that's how the transaction know where to go when u hit enter in CALL transaction A mode, u should not enter any commands in that field unitil your last OK code (=PICK)is executed, or if you must enter a command to open a new transaction in the middle, remember the ok code in the field and enter the command and re enter the ok code in the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW i don't think u need to enter any command before finishing all ok codes u've populated in the BDCDATA table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 14:22:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394451#M191332</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-07-13T14:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394452#M191333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Matthias&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2006 14:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394452#M191333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-13T14:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394453#M191334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To set fields read only, create a selection variant, check protected check box for the field u want to set read only and save it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GO to transaction SE93, create a transaction code for program and selection screen, in the start with variant field enter the above created varaint name, save it. Use this transaction code in the CALL TRANSACTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sridhar K&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2006 12:12:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394453#M191334</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-07-14T12:12:22Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394454#M191335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately it is not possible to create a screen variant for transaction ME2l (Dynpro 1000). Now I have this problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a report where I call a transaction. In this transaction I choose a selection variant via BDCData. Everything works fine except for one point. The BDC choose the selection variant through cursor position. But if a user create a new selection variant then my report choose the wrong variant because of the cursor position.&lt;/P&gt;&lt;P&gt;How can I realize that it does not choose the selection variant by cursor position therefore by name of the variant. I tried this but it didnt work: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'RSVAR-VARIANT'&lt;/P&gt;&lt;P&gt;'=NameofScreenVariant'.&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;At the moment the code with cursor position look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'RM06EL00' '1000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'/EGET'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_dynpro using 'SAPMSSY0' '0120'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'RSVAR-VARIANT(2)'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_CURSOR'&lt;/P&gt;&lt;P&gt;'08/10'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform bdc_field using 'BDC_OKCODE'&lt;/P&gt;&lt;P&gt;'=PICK'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2006 12:47:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394454#M191335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-14T12:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394455#M191336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not refering to screen variant, create regular variant by clicking save button in ME2L. and try steps in my prev reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2006 12:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394455#M191336</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-07-14T12:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394456#M191337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your patience.&lt;/P&gt;&lt;P&gt;Your proposal is not possible because I have to call a transaction variant in my report. So I can not use the standard programm (RM06EL00). (If I choose a purchase order in me2l it jumps to me23n where I had to deactivate some buttons - thats why I need the transaction variant.)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Jul 2006 13:22:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/1394456#M191337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-14T13:22:57Z</dc:date>
    </item>
  </channel>
</rss>

