Identical names in subsequent rows not shown in ALV list

hi,
I am new to ABAP,
i have developed a ALV Program to show the joiners and leavers of a Company,
here everything works fine, except one thing,
i have 10 number of colums, 1. PERNR 2.First Name 3.LAst Name 4. DOB ....
in the Second column(First Name), if the names are similar, like 1.shane Lee  and 2.shane warne, the second persons first name is not getting displyed (that files is blank) but the last name , DOB and all works fine,
i have used this code "rp_provide_from_last p0002".
what are all the possibilities to correct this.
Thanks
B
Moderator message: please use meaningful subject lines when posting, corrected for you this time.
Edited by: Thomas Zloch on Nov 18, 2010 8:50 AM

By debugging after rp_provide statement you can ensure name is retrieved properly. If name in second line is not coming, please check whether you have used sort on this field in ALV.

Similar Messages

  • Thanks Neil. Though I have purchased Mountain Lion from Mac App stores before HD crash, this is not shown in the list of purchases.why?

    Thanks Neil. Though I have purchased Mountain Lion from Mac App stores before HD crash, this is not shown in the list of purchases.why?
    regards,
    [email protected]

    If you go to System Preferences > Network do you see other networks listed on the left panel?  Is the lock in the lower left corner closed?  If not, highlight your network, then close the lock so you block other networks.

  • Date is not shown in messages list

    For many emails that I am receiving from different accounts, date is not shown in messages list, only time.
    It looks like these messages were received today, in fact they are old.
    Encountered this problem on 2 different PCs, 3 different mail accounts (gmail and own server).
    What could be the reason and how to fix it?

    The messages shown without date are not today's, they can be few days, months or even a year old...

  • Default blank rows not shown

    Hi there,
    I created some master detail forms. When i'm pressing the add rows button the form navigates to the last row, the total rows number in the pagination box increases with 1, but no blank row is shown. Anybody any idea why?
    Apex 3.0.1
    Kind regards,
    Martin Schaap

    I have some new information, maybe this triggers someone.
    In order to detect the problem, I dropped the master detail form and started all over again. After initial creation of te master detail form the 'Add row' button just worked fine. It also did after some replacement of the fields and adding lookups and formatting.
    At last I added an 'search'-field and changed the query to support this search-field.
    I entered a search criterium and pressed the 'Add rows' button. It still worked fine. After removing the search criterium all rows where displayed again, but the 'Add rows' button didn't work anymore. Assuming that perhaps something still remains in a buffer or whatever I expanded the query by adding 'or :PX_SEARCH IS NULL', but from this point nothing did help. Even after removing the search-field and restoring the query, the 'Add rows' button still didn't work. It goes to the last record(set) but no default blank line is shown anymore.

  • Anyconnect created profile not shown in connection list, especially the wireless profiles.

    Dears,
    Kindly advise as we encounter anyConnect issue, when creating profile for using with ISE, the new created profile is not shown in the connection list.
    I’m using profile editor to create profile for EAP-Fast, the issue is that the profile that was created not shown in the connection list.
    i put the xml file in the correct location
    C:\ProgramData\Cisco\Cisco AnyConnect Secure Mobility Client\Network Access Manager\newConfigFiles
    in windows 7.
    it is shown in saved networks but not shown in the connection list.
    we tried profile editor version 4 but the same issue still exist.

    Hi,
    Test the System Connector Type in the Portal.
    Connector should be any one of the Types :JDBC, ODBO, XMLA, OLAP then only the BI systems will be appear in the BI integartion wizard,
    Govindu

  • Problem saving contacts in xperia z1. after saving new contacts, it is not shown in contacts list

    problem saving contacts in xperia z1. after saving new contacts, it is not shown in contacts list

    Hi and welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    It sounds like you have a filter enabled in your contact app. Open contact > menu button > filter and see if you have any filter for your phone contact or Google contacts. Also check that "show online contacts" is unchecked. 
    What are your thoughts about this forum? Let us know by doing this short survey.

  • Hide delete option is not working in ALV List  Display- urgent

    Hi All,
    In my program i am displaying the output by using alv list display. after displaying the data i am displaying my own pf status here. in this i have few pushbuttons like
    selest all, deselect all, hide . first two options are working fine. when i click hide button selected records are going to be hide.but this is not happening in my program. any body cam send me the code plz.
    i am sending my code below. if possible please modify and resend the code asap.
    my code:
    type-pools : slis.
    tables : zuser_secobjects.
    data : t_header1 like zuser_secobjects.
    data : begin of it_secobjects occurs 0.
            include structure t_header1.
    *data :  box,
           input(1) type c,
    data :   checkbox type c,
            flag type c,
          end of it_secobjects.
    data : wa_ita like line of it_secobjects.
    *data : it_secobjects like zuser_secobjects occurs 0 with header line.
    data : i_field type slis_t_fieldcat_alv with header line.
    data : w_field like line of i_field.
    data : i_sort type slis_t_sortinfo_alv.
    data : w_sort like line of i_sort.
    data : it_filt1 type slis_t_filter_alv with header line.
    data:
    i_tabname type tabname,
    i_repid like sy-repid,
    is_lout type slis_layout_alv.
    data :   it_filt type slis_t_filter_alv   with header line,
             it_evts type slis_t_event        with header line.
    DATA : is_vari type disvariant.
    constants :   c_default_vari value 'X',
                  c_save_vari    value 'U',
                   c_checkfield type slis_fieldname     value 'ACTION',
                   c_f2code     type sy-ucomm           value '&ETA'.
    data : chk_box type slis_fieldname.
    selection-screen: begin of block b1 with frame title text-t01.
    parameters : p_appln type zuser_secobjects-appln.
    parameters : p_user type usr02-bname, "zuser_secobjects-appln_user,
    p_partnr type zuser_secobjects-appln_partner,
    p_ptype type zuser_secobjects-partner_type default '02',
    p_upostn type zuser_secobjects-user_position,
    p_sdate like likp-erdat default sy-datum,
    p_edate(10) default '12/31/9999',
    p_revnum type zuser_secobjects-revnum,
    p_cted type zuser_secobjects-created_by,
    p_cdate type zuser_secobjects-creation_date,
    p_ctime type zuser_secobjects-creation_time,
    p_chnby type zuser_secobjects-changed_by,
    p_cdate1 type zuser_secobjects-changed_date,
    p_ctime1 type zuser_secobjects-changed_time.
    selection-screen: end of block b1.
    form user_command using p_ucomm like sy-ucomm
    rs_selfield type slis_selfield.
    *DATA :   it_filt type slis_t_filter_alv   with header line.
      case p_ucomm.
        when 'SELECT_ALL'. " SELALL is the FCODE of ur push button
          loop at it_secobjects into wa_ita.
            wa_ita-checkbox = 'X'.
            modify it_secobjects from wa_ita.
          endloop.
      rs_selfield-refresh = 'X'.   "<-  ADD THIS
      when 'DESLCT_ALL'.
        loop at it_secobjects into wa_ita.
            wa_ita-checkbox = ' '.
            modify it_secobjects from wa_ita.
          endloop.
      rs_selfield-refresh = 'X'.   "<-  ADD THIS
        is_lout-f2code               = c_f2code.
        is_lout-box_fieldname        = c_checkfield.
        is_lout-get_selinfos         = 'X'.
        is_lout-detail_popup         = 'X'.
        is_lout-detail_initial_lines = 'X'.
    when 'HIDE_DEL'.
          rs_selfield-exit  = 'X'.
          it_filt-fieldname = 'CHECKBOX'.
          it_filt-tabname   = '1'.
          it_filt-valuf     = 'X'.
          it_filt-intlen    = '1'.
          it_filt-inttype   = 'C'.
          it_filt-datatype  = 'CHAR'.
          it_filt-valuf_int = 'X'.
          it_filt-sign0     = 'E'.
          it_filt-optio     = 'EQ'.
          if it_filt[] is initial.
            append it_filt.
          else.
            modify it_filt index 1.
          endif.
         perform display using i_object.
    PERForm  ALV_LIST_DISPLAY.
    WHEN 'SHOW_DEL'.
          rs_selfield-exit = 'X'.
          free it_filt.
    PERForm  ALV_LIST_DISPLAY.
    when 'SAVE1'.
           select * from zuser_secobjects where
                        appln = zuser_secobjects-appln
                  and   appln_partner = zuser_secobjects-appln_partner
                  and   partner_type = zuser_secobjects-partner_type
                  and   start_date = zuser_secobjects-start_date
                  and   end_date = zuser_secobjects-end_date.
          endselect.
          if sy-subrc eq 0.
            message e000(ZV) with 'Duplicate Entry'.
          endif.
      endcase.
    endform.
    *&      Form  delete
    form delete.
      data : begin of is_secobjects occurs 0.
              include structure zuser_secobjects.
      data : checkbox type c.
      data : end of is_secobjects.
      is_secobjects-checkbox = 'X'.
      modify is_secobjects
        from it_secobjects
        transporting checkbox
      where checkbox = 'X'.
    endform.
    *&      Form  get_data
    form get_data.
      select * from zuser_secobjects
      into table it_secobjects.
    endform.                    " get_data
    *&      Form  prepare_fieldcatalog
          text
    -->  p1        text
    <--  p2        text
    form prepare_fieldcatalog.
      clear: w_field,i_field.
      refresh:i_field.
      i_field-key = 'X'.
      i_field-col_pos = 1.
      i_field-ddictxt = 'S'.
      i_field-seltext_s = '@11@'.
      i_field-checkbox = 'X'.
      i_field-input = 'X'.
      i_field-fieldname = 'HEADER'.
      i_field-outputlen = 0.
      append i_field.
      clear i_field.
      w_field-fieldname = 'APPLN'.
      w_field-tabname = 'IT_SECOBJECTS'.
      w_field-seltext_l = text-m01.
      w_field-outputlen = '10'.
      w_field-col_pos = 1.
      append w_field to i_field.
      clear w_field.
      w_field-fieldname = 'APPLN_USER'.
      w_field-tabname = 'IT_SECOBJECTS'.
      w_field-just = 'C'.
      w_field-seltext_l = text-m02.
      w_field-outputlen = '7'.
      w_field-col_pos = 2.
      append w_field to i_field.
      clear w_field.
    endform.                    " prepare_fieldcatalog
    *&      Form  ALV_LIST_DISPLAY
          text
    -->  p1        text
    <--  p2        text
    form alv_list_display.
      i_repid = sy-repid.
      is_lout-box_fieldname = 'CHECKBOX'.
      it_filt-fieldname = 'CHECKBOX'.
      call function 'REUSE_ALV_LIST_DISPLAY'
           exporting
                i_callback_program       = i_repid
                i_callback_pf_status_set = 'PF_STATUS_SET'
                i_callback_user_command  = 'USER_COMMAND'
                is_layout                = is_lout
                it_fieldcat              = i_field[]
                it_filter                = it_filt[]
                 it_events                = it_evts[]
                i_default                = c_default_vari
                i_save                   = c_save_vari
                is_variant               = is_vari
           tables
                t_outtab                 = it_secobjects.
    endform.                    " ALV_LIST_DISPLAY
    *&      Form  display
          text
         -->P_I_OBJECT  text
    form display using    object.
      case object.
    ENDCASE.
    endform.                    " display
    thanks,
    maheedhar.t

    Hi,
    What do you mean by Hiding the records.
    Deleting completely from the screen.
    You can just delete the records from the internal table and pass to field catalog before displaying again.
    or serach in the slis structrue for hiding the contents of the output.
    reward if useful
    regards,
    Anji

  • Why are inserted rows not shown in order?

    Hi y'all,
    I'm doing some experimenting. I've set up a table with 3 columns: decimal digit, binary digit, and the difference in length between the former two. Then I wrote a small anonymous PL/SQL block with a single FOR loop. It takes in cycles every integer between 1 and 10000, and computes its binary value, the length difference, and then inserts the three (dec_num, bin_num, diff) into the table. However, the records are not in order! The first row after the run is number 1298! The number 1 is computed in the row number 303.
    When I change the code to only compute the numbers from 1 to 1000, everything is okay, but when I increase the upper border back to 10000, this weird ordering takes place. I understand there's some optimization and paralelism going on. But how do I steer it? It's really bothersome... TIA.
    code snippet:
    for dec_num in 1..10000 LOOP
    bin_num := dec2bin(dec_num);
    diff := length(bin_num) - length(to_char(dec_num));
    insert into correlation values (dec_num, bin_num, diff);
    end loop;

    Hello, thanks for the prompt answers, I don't request returning the rows in order, but would welcome having them inserted in order, in the first place! :) Of course, when I use ORDER BY to view the results, all is well. Is it really the only way?
    Edited by: user5539369 on Nov 12, 2009 12:57 PM

  • Portal report - If rows returned are 1 greater than max,last row not shown

    We are experiencing what appears to be a bug with reports developed from a locally built Provider in Portal...
    If my "maximum rows to return" is set to 20, and my search returns 21 rows/results, the "next" button to navigate to the last row does not appear. Therefore, the last row is not returned to the user....
    We have been able to duplicate this with any number... For example, if we set the "max rows to be returned" to 59, and our results come back with 60 rows, neither the "next" button or last row are returned...
    Bug by chance?
    Thanks in advance for any help offered....
    ~Chris

    Hi Varsha,
    Please pay attention when you are requesting motnly period for
    start date : 1st July 2008
    end date : 1st july 2008
    After saving the period is changed to
    Start Date : 7/1/2008
    End Date  : 7/31/2008
    When you are requesting weekly period for the same interval, after sving the dates are changed again, according
    you settings of first day of the week. It it is Monday it could be as following
    Start Date : 6/30/2008
    End Date  : 7/6/2008
    So you are asking data for not quite the same period.
    Do you have data for monthly period in that interval?
    Regards,
    Victoria Gur

  • Z10 - new contacts saved on smartphone​, but not shown in contact list

    Hello everybody,
    I have a problem with my Z10. It does not show me any new contacts in the contact app on the phone. After entering a new contact through the app (from HUB and directly) it won't be shown in my contact list. Not even the phone no in the HUB has been replaced by the name. Sending a new contact from BB9810 by Bluetooth does not even get the contact into the new contact list (even though it's been saved).
    Anyway, the contacts have been saved somewhere in the phone, since I can sync them with the BB link on my laptop. Also entering a contact in my windows contacts and syncing the other way around (from laptop to BB) does not get me the contacts into my BB contact list.
    Has anybody experienced the same issue, or can advise me where to change settings or do something that may get everything back to normal?
    Thanks a lot in advance
    mateng

    Do this for me.
    Do a simple reboot on the BlackBerry in this manner: Reboot: On the side edge volume keys, press and hold down both of the Up and Down volume keys for about 20 seconds, ignoring the initial screenshot message... the screen will go black and reboot.
    Now, after the reboot is complete, give it a couple minutes and check your Contacts app again for those missing contacts.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • New podcast episode downloads in subscription but not shown in episode list

    We are uploading podcasts under the name Rivendell Fellowship. (link is http://itunes.apple.com/us/podcast/rivendell-fellowship/id392550297)
    I subscribe and the most recent episode downloaded automatically and plays in I-tunes. But when I search through our episode list, it isn't shown. I wanted to post an online link to that particular episode but can't find it to do so.
    Any help would be appreciated.
    Thanks

    Your latest episode, 'Follow Me', posted 6 March, appears in the feed, when subscribing, and in the Store page. The only oddity is that the Store page is not showing the duration - this is a quirk which has affected a number of podcasts recently: but everything otherwise is quite normal.
    If you want to post a link to the actual media file, it's at
    http://recordings.talkshoe.com/TC-87855/TS-461055.mp3
    Otherwise I'm not entirely clear whether you still have a problem - please do post back if you have, but it would be helpful if you could provide exact details of what you are expecting to see but aren't.

  • PSE 8 catalog in custom location not shown in catalog list

    I am trying to help a client recover from a computer problem. She was having several types of problems with her PC a couple of months ago. PSE 8 seemed to be working ok at the time, and my memory tells me I Reconnected all missing files (if there were any), Repaired and Optimized, as is my usual practice. I then did a full backup to an external drive. She then had her son fix her computer in some way shape or form. He lives out of state. I got a call and she said she was ready for me to get her PSE 8 back up and running.
    When I got there, we discovered she did not have the PSE 8 CDs. She he bought it online from Adobe but never copied it to a CD etc. We decided she would buy PSE 10 and download it. I had never downloaded any from the Adobe Store and was totally shocked to discover it was a three hour download. Other equally large files I have downloaded from Adobe would have taken 20-30 min. While it was downloading I even went hoe and started the download on my internet connection. It would have taken an equal amount of time. Sorry, I strayed.
    After we installed PSE 10, I did a Restore from the PSE 8 backup I made a couple of months ago. I have done this many times over the years with very good results. We got a message saying the catalog was successfully restored. But when I went to convert it to PSE 10, an error appeared saying the conversion failed and we shoulf try restoring it on to PSE 8 and try abother Backup.
    That's the background. I do still have PSE 8 on a PC at home. I restored the Catalog to a custonm location (a second internal drive). All of the 5300 pictures or visible, tags appear to be in order etc.
    But before trying a Back-up I wanted to Repair and Opimize the Catalog (named my Catalog). But with the catalog visible, the area where I expected to see [Current] is blank, and the Repair etc buttons are grayed out. I'm stumped. The only think I can think to do is to back another backup and try to restore that one on her PSE 10 after I dry run it at home.
    I'f attached a screen shot showing the dialog box in quesation. I now see where it is quite small, you should be able to see the areas of the screen I'm referring to.
    I'm stumped. Any suggestions will be very much appreciated.
    TIA

    Brett,
    Thanks for the quick reply. It seemed like a simple solution, but it did not work. Going up one level did not change anything. The area is still blank and the choices are still grayed out.
    Can you think of anything else?

  • My half downloaded file is not shown in the list of downloads

    my half downloaded file is not seen the download box for further downloads but its half part is still in the folder of download.

    Is your portlet a mobile portlet ?
    if yes you can specify that it is not a "mobile only" portlet.

  • Missing part list is incomplete while creating Production Order and 2 components are not shown in the list.

    Hi Team,
    We are facing issue for availability check. During creation of Production order, the missing part list is not complete and it should show componenet A in the Missing part list. Below is the details:
    Production Order quantity: 100 kg
    Componenet A required quantity: 100 kg
    MMBE Unrestricted qty: 1000 kg
    MMBE Reserved Quantity: 2000 kg
    So as per above figures component A should come as missing part during availability check. But it is not coming as missing part. Please check and give your inputs.

    Hello
    The results of availability check should NEVER be compared with MMBE. As already mentioned, transaction CO09 is more appropriate.
    Also, this issue has been already discussed on hundreds of threads in the past. See some examples below:
    Problem with missing parts list during production order creation
    issue in committing material for production order
    Material Availibility check in Production orders
    availability check
    order is not released
    As it is stated on the The SCN Rules of Engagement you should do some research before opening a thread. Therefore, please use the search tool or even google to search for similar problems before opening a thread.
    BR
    Caetano

  • Video camera not shown on buddy list even though she has a camera on her im

    Why can't I start a video connection to a leopard ichat computer?
    I can receive a video connection. What's screwed up???

    Hi,
    I am fairly sure I can turn off all Alerts sounds in the iChat Preferences.
    I have not tried it without any.
    I am playing Civ III in Bootcamp and not able to test Bonjour separately at the moment.
    It may pay to add a Sound file with no sound in it and place it in Your Home Folder/Library/Sounds and select that as the Alert sound.
    3:09 PM Friday; March 6, 2009

Maybe you are looking for

  • How to update csv file dynamically  from Catalog manager

    HI - In OBIEE we used to generate report statistics into csv files from Catalog manager.But this task should be automatic or dynamic process.So it means that each and every when catalog get changes that information will be captured into CSV file by d

  • Increase the hard disk drive capacity on a MacBook Air

    is it possible to increase the hard disk drive capacity from 64 to 128 G? How do I do it?

  • Finder not opening automatically

    Have just taken delivery of a brand new iMac and was excited at seeing Mountain Lion in action.  However, after just a few short days, am noticing that Finder isn't opening/launching automatically on startup, although the 'light' is on in the Dock. 

  • Failed to deploy OC4J by opmn.

    Hi all, I only can deploy sample ejb to stand alone oc4j except those oc4j managed by opmn. Could any experts please show me how to handle the IIOP sample code deployment ?

  • Vi or any function that closes the VI abruptly

    Hi,        Is there any vi or function that stops running the main vi abruptly upon true.(inside the main vi there may be a subvi that has a while loop meaning it runs indefinitely)                        only the main vi should be closed not the Lab