Enhancement To The Attendance List Report

Hello Gurus,
I wonder if you can help me with something that seems quite simple to do. I have to modify a SAP standard report (an attendance report) to include an e-mail on the display u2013 Iu2019ve managed to do the header u2013 whoo hoo!!
The report in question is RHXTEILA accessed via SAP transaction S_PH9_46000433.
I know where to put my code but just wanted some advice
Bacically the report goes off to a procedure get_data within program RHTEILN0 which in turn calls a function module
'RH_GET_PARTICIPANTS' this returns me the data (excluding the e-mail) in the participant table.
My question is ?
1) Should I hack the standard 'RH_GET_PARTICIPANTS' function module
2) the table that it returns is defined as
DATA: BEGIN OF participant OCCURS 20.
        INCLUDE STRUCTURE hrvpartic.
DATA:  local_price LIKE pad25-kkost.
DATA:  no_rate(1).
DATA: END OF participant.
And structure hrvpartic doesnu2019t have an e-mail in its structure but there is a CI_PAD25 include in there u2013 not sure how to use this u2013 do I just add the e-mail field under this?
Any help appreciated
Many thanks in advance
Raj

Hi Pooja,
Use Report RPLMIT00.
Choose Org structure on it.
Let me know.
Arti

Similar Messages

  • Attendance list for courses, report RHXTEILA_LSO not correct.

    The attendance list of courses report (RHXTEILA_LSO) is not displaying people if they were in a  department/service/team that his since been delimited.
    Has anyone else come across this problem?.
    Jason

    Jason,
    If Org. Unit was delimited, you should see the "Org. Assignment" field blank.
    Please check your filters, be carefull with dates, and also check using standard report by checking "standard selection screen" (RHTEILN0_LSO report).
    Tell us the results. Regards!

  • Sapscript attendance list

    Hello,
    In trainig management, we want to create a new "Attendance list" report instead of the standard one. Can we do it using sapscript?
    KR
    Karim
    Edited by: karim karim on Dec 14, 2011 10:35 AM

    Hi kareem,
    If you know the table names ,fields names and link between the tables you can develop the script.First ask your functional consultant about lay out design , Tables ,fields details and start develop script .
    with regards
    Naresh Bammidi

  • How to add a new tables in the existing Pricing Report

    Hi,
    I have created Z2 list report in the pricing report (V/LD) with some tables and field names.
    Now I got one requirement that i have to Add some more tables and filed names in the List Report Z2 in the pricing report.
    Could anyone helpme out how can i add tables and fileds names to the existing list report in the Pricing report
    Thanks for your support
    Best Regards
    Amjathpasha

    hi, Pasha:
    May i know how to solve this problem? as i also met this kind of problem.
    and i tried V/lb, do not find the place to add the table.
    Thanks,
    Linda

  • How to download the vendor list in Excel?

    Hi,
    How the vendor list (report RFKKVZ00) be easily downloaded in Excel?
    Thank you.
    Kind regards,
    Linda

    hi Linda,
    execute, and when the list is displayed, in the menu:
    System / List / Save / Local file
    Then select 'Table format' (or something like that)
    Now enter file name with '.xls' at the end
    the downloaded list won't be perfect, but more than nothing
    hope this helps
    ec

  • Covert the Simple list program into ALV

    Hi Guy's,
    Please help me present requirement like convert the simple list report to ALV format.
    I worked to convert the simple to ALV but i struck up at : in selection screen contain 2 radio buttons
    1.Detailed 2. summary.
    when select the Detailed it displays the 8 fields information.
    when select the Summary it displays the 3 fields information.
    how to work this senario.
    Thanks,
    Sai.

    Hello Sai
    Assuming that both lists - detailed and summary - have the same fieldcatalog but should display different numbers of columns the correct approach is as following:
    FORM build_fieldcatalog.
    * define local data
      data: ls_fcat    TYPE lvc_s_fcat.
    " NOTE: GT_FCAT contains the columns of your ALV list.
    " User chooses detailed list (p_opt1 = 'X') -> display all columns
    " User chooses summary list (p_opt2 = 'X') -> display only three columns
      CHECK  ( p_opt2 = 'X' ).
      LOOP AT gt_fcat INTO ls_fcat
                                WHERE ( fieldname = 'COLUMN4'   or
                                               fieldname = 'COLUMN5'   or
                                              ... ).  " list columns to be hidden
        ls_fcat-tech = 'X'.  " completely hide from user
        MODIFY gt_fcat FORM ls_fcat INDEX syst-tabix.
      ENDLOOP.
    ENDFORM.
    Regards
      Uwe

  • SAP Note 2111087 - enhancement to PM/QM list edit reports

    Hi,
    Has anyone experience of implementing the following SAP notes which appear to give enhanced functionality within commonly used PM/QM reports:-
    2111087 - Display of row count in list edit reports
    2079317 - Preparatory note for display of row count in list edit reports
    2079318 - Display of row count in PM list reports (SAP_APPL)
    2079384 - Display of row count in PM list reports (EA_APPL)
    2079386 - Display of row count in QM list reports (SAP_APPL)
    2079387 - Display of row count in QM list reports (EA_APPL)
    The above notes appear to enhance over 90 list edit reports within PM & QM and have been created from an improvement request within the EAM Customer Connect Cycle 3.
    No business functions need to be activated to use this function.
    Regards
    Gary B

    Hi Gary,
    I have implemented the note 2111087 and its related notes
      2079317
      2079318
      2079384
      2079386
      2079387
    as per the above notes the counter field is appearing in most of the transaction, which are listed in the Note 2079318 given by SAP.
    But still, the counter field does not appear in some of the transactions like IA08,IA09,IH06,IL05,IP15,IP16 and IP17.
    I have checked the dependent notes and searched for correction notes, but couldnt find any.
    Let me know if anyone has faced similar problem.
    Thanks in advance.
    Regards. Pavan

  • How to list the documents in the Portal Activity Report?

    Hello,
    In the Portal Activity Report I would like to see the documents list with number of uploads, number of downloads and the username who have accessed the documents for monthly. Can any one help me where to mention all the details regarding this one. I didn't found anything regarding this in the Portal Activity Report.
    Thnx in advance.
    cheers,
    Murali

    Hello,
    Can anyone help me solving this problem.
    Thnx in advance
    cheers
    Murali

  • Report title displaying for the secondary list

    Hi All,
    I have done a report interactive.The basic list is ALV and the secondary list is normal report.The problem in secondary list is it is diplaying the title "Dynamic list display" I am not getting from where this text is picking up and displaying .The code is as shown below.
    LEAVE TO LIST-PROCESSING.
    write:/ 'converting spool to pdf'.
    The output is displaying as shown below.
    dynamic list display.
    converting spool to pdf.
    I dont want to display dynamic list display in the output.How to suppress this?I even observed in debug mode after leave to list-prcoessing it is going to next line converting spool to pdf.
    Regards
    Mahesh

    use
    TOP-OF-PAGE DURING LINE-SELECTION.
    when ur SY-LSIND
    trigger this event with whtever heading u want in secondary list

  • Way to allow the user access to the saved lists of this Z report

    We have a Z report that we want to run at midnight each Sunday and then view the output/layout first thing Monday morning. We can schedule the report to run but it appears that the only way we can save the output as a 'file' for later viewing is by using the "Save with ID" option, which puts the output into a SAP 'saved list'.
    The problem with this is that it doesn't appear to be possible to access that list from the Z-report - it would appear that you have to go into SQ01 and use the 'saved list' button. This means giving the Z- report user access to SQ01 as well as Z-report, which, for security (SOD) reasons we don't want to do.
    We can run the report in foreground with the output option "File store" and save the output as a file to a specified location,. But this option doesn't appear to be available when the report is scheduled as a background job. If this is done, the background job runs but there's no output anywhere, as far as we can tell.
    So what want is to run the report in background but with the output option 'File store' or equivalent (i.e. an output stored somewhere that the report user can view). Is this not possible, or have we missed something in setting up the report run?
    Or is there a way to allow the user access to the saved lists of this Z report without giving them T-code SQ01?
    Thanks

    Hi !
    I just wonder if the answer from Varishtb below did solve your propblem.
    I have exactly the same problem as you. I also want to be able to look at the saved list without using the sq01.
    If you solved it I will be grateful to get the solution.
    regards Lars
    answer:
    You can call the infoset query directly from a transaction code. There's
    no need to copy it as a 'Z-report' (or as a custom report). In fact,
    everytime you're copying an infoset query to a report, you're calling
    for problems the next time you face an upgrade. (That is because SAP
    changes the internal logic used to handle the infosets queries from
    version to version)
    We're using some infoset queries and they work fine this way.

  • How to skip the alv list when submit a report by SUBMIT statement?

    Dear Experts,
    I  have  to submit a report(RMVKON00) for a special request in my  add-on program,  I use the following statment:
    SUBMIT RMVKON00
    AND RETURN EXPORTING LIST TO MEMORY.
    CALL FUNCTION 'LIST_FROM_MEMORY'
      TABLES
        LISTOBJECT = ABAPLIST_TAB
      EXCEPTIONS
        NOT_FOUND  = 1
        OTHERS     = 2.
    CALL FUNCTION 'LIST_TO_ASCI'
    * EXPORTING
    *   LIST_INDEX               = -1
    *   WITH_LINE_BREAK          = ' '
      TABLES
        LISTASCI                 = LISTASCI_TAB[]
       LISTOBJECT                = ABAPLIST_TAB
    EXCEPTIONS
       EMPTY_LIST               = 1
       LIST_INDEX_INVALID       = 2
       OTHERS                   = 3
    But  it still display the alv list , and I must click  button 'BACK' ,then it return my add on program.
    I hope to skip the alv list  (does not display the alv list ) .
    Would you like to help me?
    Thanks and Best Regards,
    Colin.
    Edited by: Colin on Jan 8, 2010 10:09 AM

    Hi Colin,
    I dont think you would be able to skip the ALV output using SUBMIT. However try changing the value of sy-lsind after the submit statement.
    SUBMIT RMVKON00
    AND RETURN EXPORTING LIST TO MEMORY.
    sy-lsind = sy-lsind - 1.
    If that doesnt work then try using JOB_START JOB_SUBMIT, JOB_CLOSE...
    Thanks,
    Best regards,
    Prashant

  • How to get the material list displayed in CU50 transaction into ABAP report

    How to get the 'KMAT" type material list displayed in CU50 transaction into ABAP report?
    I am getting the entire BOM when i am using the FM CS_BOM_EXPL_MAT_V2 in to the table in the report.
    But I want only the material list displayed in CU50.

    Hi,
    Could you please tell us how you found a solution to your problem?
    Thanks & regards
    Hassan

  • Web part created on a subsite for a sharepoint list in another site using sharepoint designer, to show only the subsite's reports. Connection dropping off and showing all the reports

    I crated web parts in the sub-sites (we have about 10 subsites) using sharepoint designer from a main list in another site.  Then used web part to show only the  ubsite's reports - using connection to the main list.  Problem is, the connection
    is dropping off and showing all the reports on the main list that are confidential.  this has happened 3 time lately.  Could someone explain why it happens some times?  I had to fix it by adding the web part again and connecting it
    Thanks, Subathy.

    Hi George,
    If you want to use a top level site "department" list column in all sub-sites, you can go to top level site and create a
    lookup type "Site column" to look up the value from the department list, then all sub-sites can use this lookup type site column created in top level site.
    Thanks 
    Daniel Yang
    TechNet Community Support

  • Reporting on the Attachment List

    Hi,
    I would like to know how we could access and report details about the attachment list in IQ03 transaction.
    Regards,
    RK

    Welcome to SCN.
    Use SO_DOCUMENT_READ_API1 and pass with DOCUMENT_ID value from SRGBTBREL-INSTID_B
    Please check the table SRGBTBREL and field INSTID_A you can find your IQ03 document number .
    make a search on this field and get INSTID_B and call function module above said.

  • How to get - List of all the ad hoc reports in BO 5.1?

    Hi All,
    I want list of all the ad hoc reports in BO 5.1.
    Name of ad hoc report and user would be ideal.
    How can i get? Does anybody know how to get the list?
    Please help me.
    Thanks in advance!
    Amol Mali

    Wrong forum. Please mnove or reporst to Legacy forum:
    SAP BusinessObjects BI Legacy Products
    Ludek

Maybe you are looking for

  • Ihave synced my IPAD to my IMAC and the password on my IPAD no longer works.  Can anybody help?

    I synced my IPAD 2 to my IMAC and my password on my IPAD no longer works.  My IPAD is disabled for longer and longer after each password I try.  I have tried my IMAC password and also my APple ID password.  Can anybody help?

  • Can I open the (.squ) sequence files using NI test stand 4.0 version?

    I have the sequence files created using ATETool Kit test Executive. But I have NI 4.0 test stand. I want to open the sequence files using NI 4.0 test stand. Can i do that?

  • Dynamic Table setup (Infobus)

    Hi, I will first describe my environment application and then the problem. I want to create an Infobus GridControl, without using the designer. To setup the Rowsetinfo to which the GridControl will be bound, I perform a "select * from TABLE", using a

  • Windows 7 pro not seeing my network

    Ok so I'm actually not totally sure that the windows side is seeing my wireless adopter, but for whatever reason it won't connect to the internet. It doesn't even see my home network or the neighbors. I've installed this correctly and as far as I kno

  • How can I extract pages and maintain links.

    I have a catalog index several pages long and all links to various pages in rest of catalog. I want to extract those pages with the links to the pages intact and insert into a modified version of same catalog. Page numbers remain exactly the same. Wh