Code for hr report to display highest qualification based on sub type?

Hi experts,
I have a requirement to display highest qualification based on subtypes .
lets say
Z3-Graduation
Z5- Diploma
Z4- PG
Z7-Others
here  PG ( subtype - z4) is the highest qualification for some employee, for some "Graduation (z3) is highest qualification.
could anybody give me some idea to write the logic.
i'm having the data in internal table.
Thanks in Advance.
Regards
satish

Hi satish,
Check this code,
data: BEGIN OF itab OCCURS 0,
       name(30) TYPE c,
       id(02)   TYPE c,
       des(30)  TYPE c,
       Ini(01)  TYPE c,
      END OF itab,
      wa LIKE LINE OF itab.
START-OF-SELECTION.
wa-name = 'Ram'.
wa-id   = 'z7'.
wa-des = 'Others'.
APPEND wa to itab. CLEAR wa.
wa-name = 'Ram'.
wa-id   = 'z2'.
wa-des = 'Diploma'.
APPEND wa to itab. CLEAR wa.
wa-name = 'Ram'.
wa-id   = 'z4'.
wa-des = 'PG'.
APPEND wa to itab. CLEAR wa.
wa-name = 'Ram'.
wa-id   = 'z8'.
wa-des = 'Graduation'.
APPEND wa to itab. CLEAR wa.
loop at itab INTO wa.
wa-ini = wa-des(01).
if wa-ini EQ 'O'.
wa-ini = 'A'.
ENDIF.
MODIFY itab FROM wa.
ENDLOOP.
sort itab by name ini DESCENDING.
READ TABLE itab INTO wa INDEX 1.
   write:/ wa-name,
           wa-des.
Regards,
Venkat.

Similar Messages

  • T codes for production reports in REM

    Dear All,
    What are the std. t code for production reports in REM like daily production report,monthly production reports,shift wise production,bom reports etc.
    Thanx in advance
    rg
    Tushar

    Hi Tushar,
    Following are the standard reporting T-Codes REM
    MCP9 - SFIS: Select Run Schedule
    MCRM - Reporting Point Statistics: Selection
    MCRP - Material Consumption Analysis: Repetitive Manufacturing
    MCRK - Product Cost Analysis: Repetitive Manufacturing
    MCP6 - Goods Receipt Analysis: Repetitive Manufacturing
    MF26 - Display Reporting Point Quantity
    MF51 - Print Production Schedule
    MF52 - Display Master Production Schedule
    MF57 - Coll. Display of Planning Screens
    MF60 - Pull List 4.5
    LAS3 - Display Sequence Schedule
    If you won't find your requirement in these,you need to develop new one accordingly taking the technical consultants help.
    Regards.

  • Transaction code for Depricitation Report

    Hi,
    we have asset accouting with WDV Method & maintaing our books as per F.Y. April to March
    But, due to foreign investor's investment, we have need to closed our books, twicely, i.e.  IFRS - F.Y.-Jan to Dec / ( US gap ) & Indian gap, FY. April to March.
    Currently, We are using, AR03 trasaction to view the Depriciation Report (Asset Register)
    My problem is, when we run the Deprication report for IFRS Books closing, we could't get report, properly, because of our F.Y. maintan April to March.
    in that case we have need to maintain Manually on XLS.
    Please tell me any transaction code for depriciation report for IFRS  Books closing as well as Indian Gap.
    Thanks
    Regards
    Jitendra

    dont you have an option in there to run based on your depreciation area? Select your depreciation area and the report date based on your fiscal year variant. Optionally, you can also try reports like S_ALR_87012006 - Ordinary Depreciation, and S_P99_41000192 - Posted depreciation by asset and posting period with depreciation area selection.

  • Transaction code for Custom report

    Hi,
    How to create transaction code for Custom report ?
    the custom report is a drilldown report of COPA, which can seen in tcode  FDI3.
    then how to add this new transaction to the menu path Easy assess->FI->AR->Information system->Reports->customers:items.
    Thanks,
    Swetha

    Hi Swetha,
    There is a special way to assign tcodes to such reports. Normally you create the report via report painter/writer. These reports are part of library and report group.
    Create the tcode in SE93. Then at the bottom of the screen you would find option to specify report group, report name, variant to lauch with. Don't have system to specify the exact way of specifying, if you need I can provide on monday. You can take some existing COPA standard report and check from SE93.
    --Ram

  • Create a Transaction code for a Report

    Hi
    I have created a report through report painter. How can i create a transaction code for the report.
    Thanks
    J

    Hi,
    T.Code: SE93 - Maintain Transaction
    Transaction Code = Zxxxxxx
    Click on Create.
    Short Text = Name of Report
    Click on the radio button for 'Transaction with Parameters'
    Press Enter.
    Transaction = GR55
    Parameters Window...
    Screen Field : Screen field can be viewed in technical information screen of the report group to which report belongs for which t.code is to created.
    Value: Report Group
    Click on Save.
    Now you have a custom transaction for the report(s) in a report group.
    Hope this helps.
    Please assign points to say thanks.

  • Create transaction code for CJE0  report

    Dear friend:
        Who's know  how to create transaction code for CJE0  report.

    Hi,
    Alternatively, you can try adding anew entry to your menu area in development (SE43N), creating a subnode, selecting the report as your option and provide the information. Do not forget to give your own transaction name. I'm quite sure, that in this case (if you will transport this together with the report), it should work.
    Regards,
    Eli
    P.S. I know that program names changes when it's about a writer/painter report. Is it really the same thing with CJE0 reports?

  • Creating transaction code for CJE0 reports

    Hi,
    Can anyone let me know a step by step precess for creating Transaction Code for CJE0 reports?
    Thanks in Advance.

    Hi,
    There's just one proper solution:
    Via trx SE43N. Steps:
    1. I suggest you choose area menu PS01
    2. Choose extend to create a new Z-folder (or select 'change' to add to an existing (standard SAP) folder)
    3. Create extension , ehancement ID: f.e.: ZPS01
    4. Select the new folder in the tree
    5. Click 5th button: 'add entry as a subnode'
    6. In pop-up 'Add new entries' click button 'Report'
    7. Select radio button at 'Drilldown'
    8. A pop up appears to select the application class
    9. I guess you'll no what to do from here... it speaks for itself.
    enjoy, Kind regards,
    Gerjan

  • Code For a Report

    Dear Friends,
    I have been asked to write a report to display all the purchase orders which are made without purchase requisition number. Please help me in this.
    If anybody can forward me some code or give me some example I will be very thankful to him/her.
    Thanks,
    Suruchi

    Hi ,
    Purchase requisition number reference you can find in field EKPO-BANFN. If you want to select all POs without Pur Req. reference you can put EKPO-BANFN EQ SPACE in your select condition apart from other conditions.
    EKPO-BANFN will be blank for POs created without Pur Req reference.
    Cheers.

  • How to create 2 transaction codes for same report program with diff title

    Hi All -
      I have created report program and create 2 transaction codes with different short description. I want to display the Tcodes decriptions instead of program attributes title.
    Can anyone pls tell me how to do this?
    Thanks,
    Kannan

    Hi Kannan,
    define 2 titlebars t1 and t2 for the report. In report initialization,
    IF sy-tcode = 't1'
      SET TITLE t1.
    ELSE.
      SET TITLE t2.
    ENDIF.
    Regards,
    Clemens

  • Authorization-check in company code for GR55 reports

    Hi to all!
    Created User: ZTESTUSER
    The scenario is this.
    We created a report in GR55(Report Painter) and we want users (ex. ZTESTUSER) to access only company codes 7000 to 7999. How will I be able to do that?
    I am thinking of creating a role or profile then assign it to the user, but I was not be able to locate an authorization object for GR55 reports.
    The authorization object in GR51 is not doing what we want. It only control the create/change/display and execution transactions.
    I tried using validation in GGB0 but I can't find a parameters where the GR55 reports will be checked so the users will be limited by company code.
    Can somebody help me?
    Thanks a lot.

    I programmed a company code check for a report like this.
    ===========================================================
    data: lv_text(4) type c.
      if p_bukrs is not initial.
        select single * from T001
                      where bukrs = p_bukrs.
        if sy-subrc <> 0.
          message e321(FR) with p_bukrs.
        endif.
        AUTHORITY-CHECK OBJECT 'F_SKA1_BUK'
        ID 'BUKRS' field T001-BUKRS
        ID 'ACTVT' field '03'.
        if sy-subrc <> 0.
          clear lv_text.
          lv_text = p_bukrs.
          message e800(FR) with p_bukrs.
        endif.
      endif.
    ============================================================
    but I was not able to do that in GR55 reports because the program is automatically generated by SAP named GPXXXXXXXXXXXXXXXXXXXXXXXXXXXX.

  • How to Create Transaction code for a Report

    Hi Gurus,
    I created some reports and I wants those reports
    should be placed in the SAP Menu(initial screen) not
    in the User menu in the form of Transaction codes.
    I would really appreciate if any one can please send the process to create transaction codes for the User reports/Report groups in R/3 and how to add those created Transaction codes to the SAP MENU.
    Thanks in Advance
    Danial

    Try to insert it into the main menu if you must change S000 (there is a function module for everything)? Perhaps SAP protects their menu trees from foreign subnodes in SE43?
    Also note that for report transactions you do not need to give the user transaction code start_report. If you do, then they could enter it directly and potentially start many other reports too. The system will call start_report for submitting the report internally without authorizations for it required (unless start_report is maintained in SE97).
    Regarding DE, this also confuses me sometimes and I noticed that it generally indicates that I am doing something which has an implication for a SAP standard object. Try either hitting the enter button to see what the next screen is, or, choose original language in the previous screen, or, logon in sy-langu = DE and (remember the path if you dont speak German) change it, or, follow JCs advice to create your own menu.

  • T-code for HR report category

    What is the t-code to view all the HR report categories?

    Hi,
    go to tcode SM30  >> mention table T599W ( HR Report Categories ) >> Display/Maintain
    Hope this helps.
    regd,
    abhee.
    Edited by: abheesawant on Jun 15, 2010 9:31 AM

  • T code for ER1 report

    Hello CIN experts ,
    Pls tell me the T code for SAp ER1 report . Also if there are any other Excise reports available with SAP
    Regards

    hi
    for ER1 use J2IER1
    refer following page no 22
    http://www.scribd.com/doc/6778035/J94BPPENIN
    FOR EXCISE REPORT u have to create a Z report
    for excise check table J_1IEXCHDR for header
    J_1IEXCDTL for item excise
    The Table name used to find the Tax Values are
    KOMV: Pricing Communications-Condition Record
    KONV: Conditions (Transaction Data)
    From the above tables you can refer the fields below.
    KAWRT
    KBETR
    Fetch the corresponding records based on the field
    KNTYP

  • Create transaction code for abap report

    Hello,
    don't know if this is the correct subforum (sorry in advance).
    I have created a ABAP Report in SE38 having a SELECTION-SCREEN.
    Now I would like to have a Transaction code to refer to the report. So that I can call the Transaction and then get the selection screen to use the abap report.
    How can I do this the simplest way? I can't find anything in google, can you give me some hints?

    hi
    goto se93
    give transaction code and click create
    select the second radio button(transaction code for reports)
    give short description and press enter
    after that give your program name
    and select the gui check boxes as required for html ,java,
    and save it
    you can use the transaction code
    REGARDS
    PRASANTH

  • How to create a Transaction code for a Report Painter Report

    Hi All,
    Can any one let me know the procedure as to how to create a t-code for a user defined PCA report. I have created a PCA report (copied the existing report (8a26-001) and named it as zpca and assigned the same in a new Report Group ZPCA (the group is created by copying 8a26 group) and assigned it under the library 8a2. We have added few fields required by the user to the Z report.
    Now i need to create a transaction code for that zpca report. can anyone suggest how to go about it.
    Useful answers will be appropirately rewarded.
    regards,
    radhika

    Go to transaction SE93, enter a transaction code that you want and click on "create". Enter a text and select the "Transaction with Parameters" button. In the Default Values section, enter START_REPORT in the transaction field. Check the "skip initial screen" box. In the Name of Screen field section enter the following lines:
    Name of screen field:                               Value
    D_SREPOVARI-REPORTTYPE                RW
    D_SREPOVARI-REPORT                        ZPCA
    Save and transport accordingly.

Maybe you are looking for

  • RequestTimeoutException error while invoking a BPEL process using RMI

    Hi, I am getting RequestTimeoutException error while invoking a BPEL process using this code: Locator locator = LocatorFactory.createLocator(jndiProps); String compositeDN = "default/"+processName+"!1.0"; Composite composite = locator.lookupComposite

  • Z10 BBM Failure

    I have had my Z10 since it was first lanunched last winter. A week ago the BBM failed. I can see BBMs come into my hub. To the to the sender it appears as though the message has been delivered but not read. When I try to open the message I am told I

  • Generating Stub's n  Skeleton

    HI floks, I am very new to RMI, plz tel me how to generat Stub and Skeleton of implimation classes. Advanced thanx to all Sussec

  • My iPhone 3GS battery goes from 65% to nothing and crashes. What cani I do?

    AFter my battery gets to around 65% it just shuts down. What can I do to fix this problem?

  • Sharing Photos between two Mac's

    Hello, I do have two MBP at home both with SL. How can I share the iphoto library in one Mac, in order to save disk space in the second Mac. If I share the pictures folder and connect from the second Mac, I can see the Iphoto Library file but, cannot