<?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 Call transaction Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-error/m-p/6442858#M1412550</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i made this program to reverse a transaction (CN29) using call transaction. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the transaction, i need to select a certain activity in a network to reverse it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i made a logic to know which line item it is i need to reverse and  made a variable to assign the line item number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the bdc code, it is returning this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field RC27X-FLG_SEL . not found in loop of screen&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                          'X' 'SAPLCORU'           '2160',&lt;/P&gt;&lt;P&gt;                          ' ' 'BDC_CURSOR'         'CORUF-UPD_ICON(02)',&lt;/P&gt;&lt;P&gt;                          ' ' 'BDC_OKCODE'         '=ISTR',&lt;/P&gt;&lt;P&gt;                          ' ' 'RC27X-FLG_SEL(ly_index)'  'X',&lt;/P&gt;&lt;P&gt;                          ' ' 'RC27X-FLG_SEL(05)'        ' ',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_index is the variable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am quite sure my logic getting the index is correct. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks !!!&lt;/P&gt;&lt;P&gt; - joan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Nov 2009 05:00:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-23T05:00:42Z</dc:date>
    <item>
      <title>Call transaction Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-error/m-p/6442858#M1412550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i made this program to reverse a transaction (CN29) using call transaction. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the transaction, i need to select a certain activity in a network to reverse it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i made a logic to know which line item it is i need to reverse and  made a variable to assign the line item number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the bdc code, it is returning this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Field RC27X-FLG_SEL . not found in loop of screen&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                          'X' 'SAPLCORU'           '2160',&lt;/P&gt;&lt;P&gt;                          ' ' 'BDC_CURSOR'         'CORUF-UPD_ICON(02)',&lt;/P&gt;&lt;P&gt;                          ' ' 'BDC_OKCODE'         '=ISTR',&lt;/P&gt;&lt;P&gt;                          ' ' 'RC27X-FLG_SEL(ly_index)'  'X',&lt;/P&gt;&lt;P&gt;                          ' ' 'RC27X-FLG_SEL(05)'        ' ',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_index is the variable. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am quite sure my logic getting the index is correct. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks !!!&lt;/P&gt;&lt;P&gt; - joan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2009 05:00:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-error/m-p/6442858#M1412550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-23T05:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-error/m-p/6442859#M1412551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare lv_index as type c or type n.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate 'RC27X-FLG_SEL(' lv_index ')' into lv_field.&lt;/P&gt;&lt;P&gt;condense lv_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then pass lv_field 'X'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2009 05:04:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-error/m-p/6442859#M1412551</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-11-23T05:04:45Z</dc:date>
    </item>
  </channel>
</rss>

