<?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 Record_tab not containing all column data. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-tab-not-containing-all-column-data/m-p/6455529#M1414674</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;We are creating a z search help for a &lt;STRONG&gt;standard search help existing for Agreement(Konnr) in iw32.(PM module)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;When f4 is pressed on Agreement ,&lt;/STRONG&gt; standard search help displays 7 columns .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However,in the program exit,Out of  7 , 3 column's values has been merged and is appearing in &lt;STRONG&gt;record_tab&lt;/STRONG&gt; , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But When the output is displayed,it is showing all the 7 column data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But i need all the 7 fileds to be merged and displayed in the Record_tab for further processing&lt;/STRONG&gt; &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 in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Viswanadh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Jan 2010 15:19:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-04T15:19:39Z</dc:date>
    <item>
      <title>Record_tab not containing all column data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-tab-not-containing-all-column-data/m-p/6455529#M1414674</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;We are creating a z search help for a &lt;STRONG&gt;standard search help existing for Agreement(Konnr) in iw32.(PM module)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;When f4 is pressed on Agreement ,&lt;/STRONG&gt; standard search help displays 7 columns .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However,in the program exit,Out of  7 , 3 column's values has been merged and is appearing in &lt;STRONG&gt;record_tab&lt;/STRONG&gt; , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But When the output is displayed,it is showing all the 7 column data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;But i need all the 7 fileds to be merged and displayed in the Record_tab for further processing&lt;/STRONG&gt; &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 in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Viswanadh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jan 2010 15:19:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record-tab-not-containing-all-column-data/m-p/6455529#M1414674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-04T15:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Record_tab not containing all column data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/record-tab-not-containing-all-column-data/m-p/6455530#M1414675</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;   Not sure I understand your problem but .. Are you using the function module F4UT_RESULTS_MAP, to format the record_tab data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;something like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*  Selección de datos...
    SELECT bkpf~BUKRS BELNR GJAHR bkpf~BLART bLDAT
                 BUDAT USNAM CPUDT LOTKZ
        UP TO callcontrol-maxrecords ROWS
          INTO TABLE tbkpf FROM bkpf JOIN zispsclasesdoc ON bkpf~bukrs =
                                                                  zispsclasesdoc~bukrs and  bkpf~blart = zispsclasesdoc~blart
     WHERE bkpf~bukrs IN r_bukrs
         AND belnr IN r_belnr
         AND gjahr IN r_gjahr
         AND bkpf~blart IN r_blart
         AND bldat IN r_bldat
         AND budat IN r_budat
         and usnam in r_usnam
         and cpudt in r_cpudt
         and lotkz in r_lotkz.
 
     REFRESH: record_tab.
    CALL FUNCTION 'F4UT_RESULTS_MAP'
*   EXPORTING
*       SOURCE_STRUCTURE         =
*       APPLY_RESTRICTIONS       = ' '
        TABLES
          shlp_tab                  =  shlp_tab
          record_tab              = record_tab    &amp;lt;== record_tab to fill
          source_tab             = tbkpf              &amp;lt;== your data
       CHANGING
          shlp                        = shlp
          callcontrol               = callcontrol
*  EXCEPTIONS
*    ILLEGAL_STRUCTURE        = 1
*     OTHERS                   = 2
              .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 09:41:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/record-tab-not-containing-all-column-data/m-p/6455530#M1414675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-05T09:41:23Z</dc:date>
    </item>
  </channel>
</rss>

