PNP LDB Problem

Hi Gurus,
I have a problem. I have created an HR report with PNP logical database. I created my own report category for the purpose. In the <b>Selection</b> option I have given
two select options. One is personnel number and the other is company code.
If I execute the program without entering anything in the selection screen the report
is selecting some values. In that the personnel number 2 is not present. My guess
is that the position of employee number 2 is wrong and becoz of this LDB is not selecting 2.
But if I fill company code with the value from personnel number 2, the employee 2
is getting selected. Why is this happening? Any pointers will be rewarded.
Regards,
Aravind

Hi April,
The program is very simple and is as follows.
report  zar_pnp.
nodes pernr.
infotypes: 0000, 0001,1000.
start-of-selection.
get pernr.
  read table p0000 index 1.
  if sy-subrc eq 0.
    write / p0000-pernr.
  endif.
  read table p0001 index 1.
  if sy-subrc eq 0.
    write p0001-bukrs.
  endif.
end-of-selection.
The personnel numbers which are not selected if you leave all fields on the selection screen blank have some defects like. 1)They have wrong position(position which does not exist in T528B). 2) They donot have organizational management infotype. 3) They donot have 0003 infotype.
I would like to know if a personnel number data has any such defect whether those
personnel number would not be selected?
But if an employee say 2 has no 0003 infotype, but has 0001 infotype. If we try to
select the records of 2 only giving personnel number nothing will be selected.
But if we provide company code employee 2 is selected.
Any explanation to the above behaviour?
Regards,
Aravind

Similar Messages

  • RE:pnp LDB selection screen problem

    hi,
    hi friends iam facing one problem regarding hr ABAP selection screen ,in my program iam using PNP LDB for bonus details report
    i have using selection screen declaration present for single selection.
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-006.
    SELECT-OPTIONS: S_ABKRS FOR P0001-ABKRS NO INTERVALS NO-EXTENSION,
    S_WERKS FOR P0001-WERKS NO INTERVALS NO-EXTENSION,
    S_BTRTL FOR P0001-BTRTL NO INTERVALS NO-EXTENSION,
    S_PERSG FOR P0001-PERSG NO INTERVALS NO-EXTENSION,
    S_PERSK FOR P0001-PERSK NO INTERVALS NO-EXTENSION.
    SELECTION-SCREEN END OF BLOCK B3.
    based on this selection iam fetching the information from infotypes using macros.
    now my requirement is iam fetch the information for multiple selections means like payroll areas z1,z2 and z3 payroll informations
    should be fetching once. pls any body knows solution please give me reply.
    thanks & regards,
    mgrao.

    hi jain thanks for your reply, iam already created report category and assigned my report. here iam giving my report selection
    declerations fully   below.
          S E L E C T I O N       S C R E E N                           *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001. " DECLEARED REPORT CODE LEVEL
    SELECT-OPTIONS: S_DATE   FOR SY-DATUM NO-EXTENSION.    "Bonus for Financial Year
    PARAMETERS:     P_BDATE  TYPE SY-DATUM OBLIGATORY,     "Bous payed as on
                    P_WKDAYS TYPE CHAR6.                                            "No.of Working Days     
    SELECTION-SCREEN END OF BLOCK B1.
    *SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-006.    " COMMENTED report level TAKING FROM LDB PNP    
    *SELECT-OPTIONS: S_ABKRS FOR P0001-ABKRS NO INTERVALS NO-EXTENSION,     "  Payroll area
                   S_WERKS FOR P0001-WERKS NO INTERVALS NO-EXTENSION,                       Personnel area   
                   S_BTRTL FOR P0001-BTRTL NO INTERVALS NO-EXTENSION,                          Personnel  sub area        
                   S_PERSG FOR P0001-PERSG NO INTERVALS NO-EXTENSION,
                   S_PERSK FOR P0001-PERSK NO INTERVALS NO-EXTENSION.   
    *SELECTION-SCREEN END OF BLOCK B3.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002. "REPORT CODE LEVEL SELECTION
    PARAMETERS: P_FORMCP TYPE PIN_RATE, " char6,    "Form C %    
                P_FORMEP TYPE PIN_RATE, " char6,                 "Exgratia %
                P_FORMBP TYPE PIN_RATE. " char6 .               "Bonus %   
    SELECTION-SCREEN END OF BLOCK B2.
    SELECTION-SCREEN BEGIN OF BLOCK B4 WITH FRAME TITLE TEXT-004.
    PARAMETERS: L_REPORT TYPE ZHRD_FORMC AS LISTBOX VISIBLE LENGTH 40 OBLIGATORY . Report for list box   1 form c
    SELECTION-SCREEN END OF BLOCK B4.                                                                                2 exgratia
    the above selection is iam used first, now iam commented BLOCK B3 SELECTION  PARAMETERS  and taking the parameters from REPORT CATEGORY  ASSINGN MENT.
    MY PROBLEM  is if i select one payroll area example z1 it showing all pay roll employees bonus details it is not filter the remaining payroll areas my requirement is what are the payrolls iam  selecting  those pay roll area details only displaying.
    data fetching from  INFOTYPES 0001,0002,0021 AND 9150 FOR BONUS DETAILS and out put is classical report format.
    please kindly give the reply if you knows the solution.
    thanks & regards ,
    mgr.

  • Set variant for PNP LDB select option of pernr

    Hi All,
    I want to set variant for PERNR of PNP LDB in one of the program through other program using RS_CREATE_VARIANT FM.
    Please help to solve this problem.
    Thanks,
    Shailesh S. Malkar.

    REPORT  ZTEST.                   .
    tables: pa0003.
    ranges pernr for pa0003-pernr.
    * Fill neccesary PERNRs
    pernr-low = 1000.
    pernr-sign = 'I'.
    pernr-option = 'EQ'.
    append pernr.
    pernr-low = 1112.
    pernr-sign = 'I'.
    pernr-option = 'EQ'.
    append pernr.
    SUBMIT RHINTE00 WITH PNPPERNR IN PERNR.

  • HR-ABAP: Defaulting Radio Button on Selection Screen of PNP LDB

    Hi all,
    I am using PNP LDB (Logical Database) for program which is used for Payroll Results.
    Now I have a requirement wherein it is necessary to select 'Up to today' as default on the selection screen.
    We are having 4.7C version of SAP. I tried following code in INITIALIZATION event:
    Initializing Selection Screen Data Selection Option to 'Up To Today'
    INITIALIZATION:
      MOVE:  'X'    TO    pnptimr4, " This is the option which I want as Default selection.
             space  TO    pnptimr1,
             space  TO    pnptimr2,
             space  TO    pnptimr3,
             space  TO    pnptimr5,
             space  TO    pnptimr6.
    But still I dont see this Radiobutton getting selected as Default selection while running the program.
    By Default it selects Option : 'Other Period' (pnptimr6).
    Any Idea how to resolve this ??
    Regards,
    Avinash

    hi...
    When the INITIALIZATION event occurs, you can set default values for the selection screen.
    The fields for the data selection are defined in structure QPPNP.
    Possible values for field PNPTIMED are:
    D     =      Today (key date)
    M     =     Current month
    Y     =     Current year
    P     =     To current date
    F     =     From today (from current date)
    The person selection fields are defined in include program DBPNPSEL. They are internal tables that must be filled using APPEND.
    so in intialization you have to write code as
    PNPTIMED : P.
    so up date will be defaulted in selection screen.
    award points if helpful.

  • How to avoid default selection screen in HR interfaces(using pnp ldbs)

    How to avoid default selection screen in HR interfaces(using pnp ldbs)

    Dear Rakesh,
    The report category is used to change the selection screen of programs that use the 'PNP' logical database.
    See links bellow:
    http://www.sapdevelopment.co.uk/hr/hr_repcat.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/15/229357553611d3967f00a0c9306433/frameset.htm
    Report categories for selection screen in HR programming
    Also visit the following blog:
    /people/alvaro.tejadagalindo/blog/2006/02/19/how-to-deal-with-hr-payroll-reports
    Regards,
    Naveen.

  • Create a screen by  teh help of pnp  ldb

    hi  expert ,
                           i   have   a file ( new hire file )
    New Hire file:  This interface program will be scheduled to run in the background and all the mandatory fields will be defaulted as shown below. End date will be defaulted with system current date and Begin date will be defaulted with CURRENT DATE – 7 DAYS. The selection criteria can be changed for testing purposes and can be further be extended by using the logical database PNP. A report category should be created for LDB PNP.  but  i  don't   find  MOLGA  in pa0001 , so  please  give the code for this screen.
      Screen Field       Description
                 TYPE      Reference Field     Comments
       S_MOLGA     Country key       Select option     PA0001-MOLGA     Mandatory. Default with ‘10’
       S_PERSG      Employee group       Select option     PA0001-PERSG     Mandatory. Default with ‘1’
       S_PERNR     Employee       Select option     PA0001-PERNR     Optional
        P_BEGDA     Begin date       Parameter      SY-DATUM     Mandatory. Default with SY-DATUM – 7
       P_ENDDA     End date       Parameter     SY-DATUM     Mandatory. Default with SY-DATUM
    thanks.

    Hi
    You have to create a separate HR report Category in the report of PNP LDB and use
    From the program attributes after assigning the LDB PNP you will get the Report Category in the down.
    click on it
    and check for the related fields
    and you can modify the report category by making some fields disable so that you will get the required fields on the selection screen.
    MOLGA is not there in PA0001
    it is there in T500L,T500T, T500P and HRP1005  tables
    take from it
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • URGENT( PNP LDB SELECTION SCREEN )

    hiiiii,
    can anyone tell about the field PNPDISBD of pnp LDB in sap-hr , and why it is used. Is There any field on selection screen related to this when we use pnp LDB.

    Hi,
    PNPDISBD is nothing but a date.
    Go to SE38 and open the report SAPDBPNP.
    And search for the field PNPDISBD then you will come to know its functionality.

  • Pnp ldb selection screen

    Hi ,
    How to omit few fields in data selection period of pnp selection screen.

    You can disable the selection screen element in at selection screen output event.
    Ex: The following code has been written for one of the FI related ldb.
    Check the field names of pnp ldb in debugging mode and use it.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF SCREEN-GROUP3 = 'IXS'.
          SCREEN-ACTIVE = '0'.
          SCREEN-INVISIBLE = 1.
          MODIFY SCREEN.
          CONTINUE.
        ELSEIF SCREEN-GROUP4 = '023'.
          SCREEN-ACTIVE = '0'.
          SCREEN-INVISIBLE = 1.
          MODIFY SCREEN.
          CONTINUE.
        ELSEIF SCREEN-NAME = 'DD_BUKRS-LOW'.
          SCREEN-REQUIRED = '1'.
          MODIFY SCREEN.
          CONTINUE.
        ELSEIF SCREEN-NAME = 'DD_BUKRS-HIGH'.
          SCREEN-ACTIVE = '0'.
          SCREEN-INVISIBLE = 1.
          MODIFY SCREEN.
          CONTINUE.
        ELSEIF ( SCREEN-GROUP3 = 'VPU'
            AND SCREEN-GROUP4 = '007' ).
          SCREEN-ACTIVE = '0'.
          SCREEN-INVISIBLE = 1.
          MODIFY SCREEN.
          CONTINUE.
        ELSEIF SCREEN-NAME = 'DUEDATE1'.
          SCREEN-INPUT = 0.
          MODIFY SCREEN.
          CONTINUE.
        ENDIF.
      ENDLOOP.

  • Reg:Modification of HR Report Category in PNP LDB.

    Hi All,
    My requirement is to modify the selection screen of  PNP LDB, in the report category we used to give the required selection screen.suppose i want to use the Report category as HRIN0000 and want to hide payroll area.
    please help me about this.
    Thanks in Advance
    Regards
    Srinivas

    Hi,
    Go to Tcode SE36 -->LDB PNP >Extras>Select view
    Dispaly the function group.If it does not exit create a new function group and assign the fields need to be displayed
    Field that have no fuction can be suppresed in the output.
    I hope this may helpfull.
    Thanks,
    AMS

  • PNP LDB

    Hi Abapers,
    I have used Standard PNP LDB in selection screen of my report, there is one button called 'org. structure' in standard Screen if u observe.. now my requirement is to create a new button 'SBU' just like the existing one.  by clicking on this button i should get modal dialog box where hierarchy should be displayed which is similar to org. structure...
    kindly help me... its urgent.....

    Hi Premraj ,
       Open the program in SE80 and there you can see the screen no 1000 , this is your selection screen.
    Go to this screen and add the new button you want to add , and in the PAI of the screen add a new module where you can do your processing and display the resulting screen.
    Regards
    Arun

  • Which include i can use instead of PNP LDB

    Hi Friends -
    Which standard include i can use for PNP  LDB  ?
    am working in abap webdynpro and need to use some macro like rp_provide_from_last  but for them we have to use pnp ldb and in abap webdynpro we can't define  LDBs    so  i need the standard Include prog which can fulfill my requirment ..
    Pls share your inputs on this.
    Regards
    Meeta

    Hi Txs for your quick turn,
    could you pls tell me what is wrong in my this code ,
    include DBPNPMAC .
    INFOTYPES 0000.
    DATA: pnp-sw-found,
    pnp-sy-tabix like sy-tabix.
    parameters :  p_begda like pa0001-begda,
                  p_endda like pa0001-endda.
    START-OF-SELECTION.
    RP_PROVIDE_FROM_LAST p0000 space p_begda p_endda .
    if PNP-SW-FOUND = 1 .
    write : / p0000-pernr,p0000-begda,p0000-endda.
    endif.
    end-of-selection.
    am not getting any output  but if  i use  LDB pnp and  get pernr i will get  ..
    but i cant use LDB  pls  suggest me what i shd do ?
    Regards
    Meeta

  • Custom infotype will also come in PNP Ldb

    Hi Friends-
    If we create a custom infotype which is starting from 9  eg  9001 , then  if we use PNP LDB   would this Ldb  provide me data for thsi custom infotype also apart from all PA standard infotype ?
    Regards
    Meeta

    Hello Meeta,
    It will not be a part of PA Info types.
    Yes, you will be able to get values of the custom info type in the GET PERNR and END-OF-SELECTION loop as you get values for other standard info types. For this you need to declare the custom info type same as you declare info types for which you want data in your program.
    Hope it helps.
    Thanks,
    Jayant

  • Hidden fields on PNP LDB

    Hi guys,
    Is that possible to show hidden fields from PNP LDB, before user have to make any interference? I mean, when I execute program related to PNP,  on selection screen at first time I get, for example, werks that is not on standard showing. I have tried "modify screen" strategy but it did not work.
    Thanks anyway.

    Hi.
    Try using a variant.
    First create the layout you want to display, the variant.
    Then save it.
    Call the variant in the source code.
    Don't forget to create the variant all over again, when you migrate from one enviroment to another. The variants are not transportable.
    after creating the variant, in the selection screen, paste this code in your report,
    and replace /GERAL with your variant name.
    DATA gs_variant LIKE disvariant.
    clear gs_variant  .
    gs_variant-report = sy-repid.
    gs_variant-variant = '/GERAL1'.  "the name of the variant must begin with /
    hope it solves it.
    Filipe Guerra

  • How to control PNP LDB using personnel are alone

    Hi all!
    Any body can tell me, how control the pnp ldb using personnel area and employee group. bcaz in the standard selection screen it is given as
    <u>selection.</u>
    Pers.area/subarea/cost cente :
    Employee group/subgroup
    Thx,
    palani

    Hi Palani,
    Open the ABAP report in change mode
         Select GOTO from Menu Bar
            Choose ATTRIBUTES from dropdown list
               New Window will pop-up
                   Click on button "HR REPORT CATEGORY"
                      New Popup will apeear
                         Report selects using:                                              
                         Master data
                         YOU will find lots of "rep.class" to choose here...
    Hope this will serve your requirement...
    Best Regards,
    Aslam Riaz

  • How to use PNP LDB

    Hi,
    can anybody provide me demo code for using PNP ldb?
    abc

    tables pernr.
    infotypes 0002.
    data: begin of itab occurs 0,
          vorna like pa0002-vorna,
          end of itab.
    data wa like line of itab.
    *write 'abc'.
    get pernr.
    provide * from p0002
               BETWEEN PNPbegda AND PNPENDDA.
    move p0002-vorna to itab-vorna.
    append itab.
    clear itab.
    endprovide.
    end-of-selection.
    loop at itab.
    write:/ itab-vorna.
    endloop.

Maybe you are looking for

  • FF does not load, I get failure code: 0x8000ffff

    upon trying to run new installed FireFox I get a window showing next message Error on switching in renew: NS_ERROR_UNEXPECTED, Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIPrefBranch.getCharPref] on my new Laptop running 7 (I

  • SUBMIT RSBDCSUB

    if i use this command SUBMIT RSBDCSUB WHAT WILL ACTUALLY HAPPEN. Generally When I run the pgm the s/m will ask in which mode to run the program either BIM or Call Transation Method. In case If I select BIM IT WILL ASK FOR SESSION NAME.When I give the

  • Which MacBook Pro with retina do I need?

    So basically I'm going off the college next year. I'm going to be majoring in petroleum engineering. And in engineering we have to run lots of programs on the computer and most are windows based programs which means I'm going to have to run boot camp

  • Image Capture problems with my MacBook

    When i plug in my camera macbook three different icons show up with it in finder and two different icons show up with it in image capture. my problem is that none of my pictures will show in my image capture. ive never had a problem with this before.

  • Apache and JRun

    From the documentation it would appear that only Apache 1.3.9 and JRun 2.3.3 are certified to work with iFS. However, after reading a few messages posted here it would seem that some people have tried running iFS with JRun 3.0. Has anyone managed to