Infotype Overview

We are using report RPLINFC0 to display all the infotypes maintained against an employee. Client wants this report for a range of Personnel numbers. Is there any standard report which displays all the infotypes maintained against a range of Personnel numbers ??

I think help you.
Please, try using this report. OBS--> this report have use logical database PNP.
this program displays information in different levels of various standard infotypes, Here we use it to hold conference of load.
Good luck!
Best regards!
Marcello!
*& Report  ZHRR0059
REPORT  zhrr0059.
   Nodes
NODES: pernr.
   Infotypes
INFOTYPES: 0000,"Medidas
           0001,"Atribuição organizacional
           0002,"Dados pessoais
           0003,"Status cálculo FP
           0004,"Deficiências
           0006,"Endereços
           0007,"Tempo de trabalho teórico
           0050,"Informação de registro de tempos
           0008,"Remuneração base
           0009,"Dados bancários
           0014,"Remunerações/deduções periódicas
           0015,"Pagamento complementar
           0016,"Elementos do contrato
           0021,"Família/pessoa de referência
           0041,"Especificações da data
           0057,"Afiliações
           0167,"Planos do seguro saúde
           0168,"Planos de seguro
           0171,"Área de Benefícios
           0377,"Outros planos
           0410,"Vale transporte,"BR
           0465,"Carga de Documentos,"PIS
           0736,"Pensão alimentícia,"Brasil
           0737."Pensão alimentícia,"Brasil
   ALV Work area
TYPE-POOLS: kkblo, slis.
DATA: gh_listheader TYPE slis_t_listheader,
      gh_fieldcat   TYPE slis_t_fieldcat_alv WITH HEADER LINE,
      gh_sort       TYPE slis_t_sortinfo_alv WITH HEADER LINE,
      gh_events     TYPE slis_t_event.
DATA: gw_listheader TYPE slis_listheader.
DATA: gw_layout     TYPE slis_layout_alv.
DATA: gc_save          TYPE c.
DATA: t_header         TYPE kkblo_t_listheader,
      v_repid          LIKE sy-repid,
      w_print          TYPE slis_print_alv,
      t_layout_alv     TYPE slis_layout_alv,
      w_layout_alv     LIKE t_layout_alv,
      t_fieldcat_alv   TYPE slis_t_fieldcat_alv,
      w_fieldcat_alv   TYPE slis_fieldcat_alv,
      t_special_groups TYPE slis_t_sp_group_alv,
      w_grid_settings  TYPE lvc_s_glay,
      t_events         TYPE slis_t_event,
      w_variant        TYPE disvariant,
      v_save(1)        TYPE c.
TYPES: BEGIN OF y_table,
        pernr LIKE pskey-pernr,
        infty LIKE pskey-infty,
        subty LIKE pskey-subty,
        endda LIKE pskey-endda,
        begda LIKE pskey-begda,
        message LIKE bapireturn1-message,
       END OF y_table.
To store information to be displayed
DATA: it_geninfo TYPE y_table OCCURS 0 WITH HEADER LINE.
   Global variables
DATA: w_textc(15) TYPE c," TYPE slis_fieldname,
      w_textl(30) TYPE c." LIKE dd03p-reptext.
  Get PERNR
GET pernr.
  PERFORM z_mainline.
End-of-selection
END-OF-SELECTION.
Build ALV Grid
  PERFORM z_build_alv_grid.
*&      Form  z_build_alv_grid
FORM z_build_alv_grid .
Final check
  PERFORM z_check_data_found.
Build header
  PERFORM build_header.
Build colls
  PERFORM build_colls.
Start ALV BAPI
  PERFORM start_bapi_alv.
ENDFORM.                    " z_build_alv_grid
*&      Form  z_check_data_found
FORM z_check_data_found .
  IF it_geninfo[] IS INITIAL.
    MESSAGE s016(pg) WITH text-002."No data found for the values entered
    STOP.
  ENDIF.
ENDFORM.                    " z_check_data_found
*&      Form  start_bapi_alv
FORM start_bapi_alv .
  PERFORM z_group_fields.
  CALL FUNCTION 'K_KKB_SAVE_MODE_GET'
    IMPORTING
      e_save = gc_save.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      i_callback_program       = sy-repid
      i_callback_top_of_page   = 'TOP_OF_PAGE'
      it_fieldcat              = gh_fieldcat[]
      it_sort                  = gh_sort[]
      i_default                = sy-abcde+23(1)
      i_save                   = gc_save
      it_events                = gh_events[]
      i_callback_user_command  = 'AT_USER_COMMAND'
      is_layout                = gw_layout
      i_callback_pf_status_set = 'ZF_STATUS'
    TABLES
      t_outtab                 = it_geninfo
    EXCEPTIONS
      program_error            = 1
      OTHERS                   = 2.
ENDFORM.                    " start_bapi_alv
*&      Form top_of_page
FORM top_of_page .                                          "#EC CALLED
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      it_list_commentary = gh_listheader.
ENDFORM.          "z_top_of_page
*&      Form  build_colls
FORM build_colls .
  CLEAR gh_fieldcat.
  gh_fieldcat-fieldname    = 'PERNR'.
  gh_fieldcat-reptext_ddic = 'Nro Pessoal'.
  gh_fieldcat-tabname      = 'IT_GENINFO'.
  gh_fieldcat-inttype      = 'N'. "
  gh_fieldcat-outputlen    = 10.
  APPEND gh_fieldcat.
  CLEAR gh_fieldcat.
  gh_fieldcat-fieldname    = 'INFTY'.
  gh_fieldcat-reptext_ddic = 'Infotipo'.
  gh_fieldcat-tabname      = 'IT_GENINFO'.
  gh_fieldcat-inttype      = 'C'. "
  gh_fieldcat-outputlen    = 8.
  APPEND gh_fieldcat.
  CLEAR gh_fieldcat.
  gh_fieldcat-fieldname    = 'SUBTY'.
  gh_fieldcat-reptext_ddic = 'Subinfotipo'.
  gh_fieldcat-tabname      = 'IT_GENINFO'.
  gh_fieldcat-inttype      = 'C'. "
  gh_fieldcat-outputlen    = 8.
  APPEND gh_fieldcat.
  CLEAR gh_fieldcat.
  gh_fieldcat-fieldname    = 'ENDDA'.
  gh_fieldcat-reptext_ddic = 'Fim da validade'.
  gh_fieldcat-tabname      = 'IT_GENINFO'.
  gh_fieldcat-inttype      = 'D'. "
  gh_fieldcat-outputlen    = 12.
  APPEND gh_fieldcat.
  CLEAR gh_fieldcat.
  gh_fieldcat-fieldname    = 'BEGDA'.
  gh_fieldcat-reptext_ddic = 'Início da validade'.
  gh_fieldcat-tabname      = 'IT_GENINFO'.
  gh_fieldcat-inttype      = 'D'. "
  gh_fieldcat-outputlen    = 12.
  APPEND gh_fieldcat.
  CLEAR gh_fieldcat.
  gh_fieldcat-fieldname    = 'MESSAGE'.
  gh_fieldcat-reptext_ddic = 'Mensagem'.
  gh_fieldcat-tabname      = 'IT_GENINFO'.
  gh_fieldcat-inttype      = 'C'. "
  gh_fieldcat-outputlen    = 50.
  APPEND gh_fieldcat.
ENDFORM.                    " build_colls
*&      Form  build_header
FORM build_header .
  REFRESH gh_listheader.
  CLEAR gw_listheader.
  gw_listheader-typ  = 'S'.
  WRITE sy-datum TO gw_listheader-key.
  APPEND gw_listheader TO gh_listheader.
  CLEAR gw_listheader.
Get message description
  gw_listheader-typ  = 'S'.
  gw_listheader-key  = sy-cprog.
  gw_listheader-info = text-004.
  APPEND gw_listheader TO gh_listheader.
  CLEAR gw_listheader.
ENDFORM.                    " build_header
*&      Form  z_group_fields
FORM z_group_fields .
  CLEAR: gh_sort, gh_sort[].
  MOVE 1         TO gh_sort-spos.
  MOVE 'PERNR'  TO gh_sort-fieldname.
  MOVE 'X'      TO gh_sort-group.
  MOVE 'X'      TO gh_sort-up.
  APPEND gh_sort.
  MOVE 2         TO gh_sort-spos.
  MOVE 'INFTY' TO gh_sort-fieldname.
  MOVE 'X'      TO gh_sort-group.
  MOVE 'X'      TO gh_sort-up.
  APPEND gh_sort.
  MOVE 3         TO gh_sort-spos.
  MOVE 'SUBTY' TO gh_sort-fieldname.
  MOVE 'X'      TO gh_sort-group.
  MOVE 'X'      TO gh_sort-up.
  APPEND gh_sort.
ENDFORM.                    " z_group_fields
*&      Form  Z_MAINLINE
      MainLine
FORM z_mainline .
  CLEAR: p0000, it_geninfo.
  rp-provide-from-last p0000 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0000 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0000'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0001, it_geninfo.
  rp-provide-from-last p0001 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0001 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0001'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0002, it_geninfo.
  rp-provide-from-last p0002 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0002 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0002'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0003, it_geninfo.
  rp-provide-from-last p0003 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0003 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0003'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0004, it_geninfo.
  rp-provide-from-last p0004 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0004 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0004'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0006, it_geninfo.
  rp-provide-from-last p0006 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0006 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0006'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0007, it_geninfo.
  rp-provide-from-last p0007 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0007 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0007'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0050, it_geninfo.
  rp-provide-from-last p0050 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0050 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0050'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0008, it_geninfo.
  rp-provide-from-last p0008 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0008 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0008'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0009, it_geninfo.
  rp-provide-from-last p0009 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0009 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0009'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0014, it_geninfo.
  rp-provide-from-last p0014 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0014 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0014'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0015, it_geninfo.
  rp-provide-from-last p0015 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0015 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0015'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0016, it_geninfo.
  rp-provide-from-last p0016 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0016 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0016'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0021, it_geninfo.
  rp-provide-from-last p0021 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0021 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0021'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0041, it_geninfo.
  rp-provide-from-last p0041 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0041 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0041'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0057, it_geninfo.
  rp-provide-from-last p0057 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0057 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0057'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0000, it_geninfo.
  rp-provide-from-last p0167 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0167 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0167'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0168, it_geninfo.
  rp-provide-from-last p0168 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0168 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0168'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0171, it_geninfo.
  rp-provide-from-last p0171 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0171 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0171'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0377, it_geninfo.
  rp-provide-from-last p0377 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0377 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0377'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0410, it_geninfo.
  rp-provide-from-last p0410 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0410 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0410'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0465, it_geninfo.
  rp-provide-from-last p0465 '0001' pn-begda pn-endda.
  IF p0465-subty EQ '0001'.
    MOVE-CORRESPONDING p0465 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0465'.
    it_geninfo-subty = '0001'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0465, it_geninfo.
  rp-provide-from-last p0465 '0002' pn-begda pn-endda.
  IF p0465-subty EQ '0002'.
    MOVE-CORRESPONDING p0465 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0465'.
    it_geninfo-subty = '0002'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0465, it_geninfo.
  rp-provide-from-last p0465 '0003' pn-begda pn-endda.
  IF p0465-subty EQ '0003'.
    MOVE-CORRESPONDING p0465 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0465'.
    it_geninfo-subty = '0003'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0465, it_geninfo.
  rp-provide-from-last p0465 '0006' pn-begda pn-endda.
  IF p0465-subty EQ '0006'.
    MOVE-CORRESPONDING p0465 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0465'.
    it_geninfo-subty = '0006'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0736, it_geninfo.
  rp-provide-from-last p0736 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0736 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0736'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
  CLEAR: p0737, it_geninfo.
  rp-provide-from-last p0737 '    ' pn-begda pn-endda.
  IF sy-subrc EQ 0.
    MOVE-CORRESPONDING p0737 TO it_geninfo.
    MOVE 'Registro encontrado' TO it_geninfo-message.
  ELSE.
    MOVE-CORRESPONDING pernr TO it_geninfo.
    it_geninfo-infty = '0737'.
    MOVE 'Registro inexistente' TO it_geninfo-message.
  ENDIF.
  APPEND it_geninfo.
ENDFORM.                    " Z_MAINLINE
*&      Form  ZF_STATUS
FORM zf_status USING rt_extab TYPE slis_t_extab.
  DATA: wt_extab TYPE slis_extab.
  CONSTANTS cc_vexcel LIKE wt_extab-fcode VALUE '&VEXCEL'.
  CONSTANTS cc_sorta LIKE wt_extab-fcode VALUE '&OUP'.
  CONSTANTS cc_sortd LIKE wt_extab-fcode VALUE '&ODN'.
  CLEAR: wt_extab.
  wt_extab-fcode = cc_vexcel.
  APPEND wt_extab TO rt_extab.
  wt_extab-fcode = cc_sorta.
  APPEND wt_extab TO rt_extab.
  wt_extab-fcode = cc_sortd.
  APPEND wt_extab TO rt_extab.
  SET PF-STATUS 'STANDARD_FULLSCREEN' EXCLUDING rt_extab.
ENDFORM.                    "ZF_STATUS
*&      Form  AT_USER_COMMAND
FORM at_user_command USING ucomm LIKE sy-ucomm
                           selfield TYPE kkblo_selfield.
  CLEAR: it_geninfo.
  CASE ucomm.
    WHEN '&IC1'.
      CHECK selfield-tabindex NE 0.
      READ TABLE it_geninfo INDEX selfield-tabindex.
      CASE it_geninfo-infty.
        WHEN '0000'."Medidas
          CLEAR p0000.
          REFRESH p0000.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0000
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0000'
            TABLES
              t_outtab                 = p0000
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0001'."Atribuição organizacional
          CLEAR p0001.
          REFRESH p0001.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0001
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0001'
            TABLES
              t_outtab                 = p0001
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0002'."Dados pessoais
          CLEAR p0002.
          REFRESH p0002.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0002
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0002'
            TABLES
              t_outtab                 = p0002
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0003'."Status cálculo FP
          CLEAR p0003.
          REFRESH p0003.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0003
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0003'
            TABLES
              t_outtab                 = p0003
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0004'."Deficiências
          CLEAR p0004.
          REFRESH p0004.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0004
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0004'
            TABLES
              t_outtab                 = p0004
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0006'."Endereços
          CLEAR p0006.
          REFRESH p0006.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0006
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0006'
            TABLES
              t_outtab                 = p0006
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0007'."Tempo de trabalho teórico
          CLEAR p0007.
          REFRESH p0007.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0007
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0007'
            TABLES
              t_outtab                 = p0007
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0050'."Informação de registro de tempos
          CLEAR p0050.
          REFRESH p0050.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0050
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0050'
            TABLES
              t_outtab                 = p0050
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0008'."Remuneração base
          CLEAR p0008.
          REFRESH p0008.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0008
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0008'
            TABLES
              t_outtab                 = p0008
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0009'."Dados bancários
          CLEAR p0009.
          REFRESH p0009.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0009
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0009'
            TABLES
              t_outtab                 = p0009
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0014'."Remunerações/deduções periódicas
          CLEAR p0014.
          REFRESH p0014.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0014
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0014'
            TABLES
              t_outtab                 = p0014
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0015'."Pagamento complementar
          CLEAR p0015.
          REFRESH p0015.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0015
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0015'
            TABLES
              t_outtab                 = p0015
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0016'."Elementos do contrato
          CLEAR p0016.
          REFRESH p0016.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0016
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0016'
            TABLES
              t_outtab                 = p0016
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0021'."Família/pessoa de referência
          CLEAR p0021.
          REFRESH p0021.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0021
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0021'
            TABLES
              t_outtab                 = p0021
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0041'."Especificações da data
          CLEAR p0041.
          REFRESH p0041.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0041
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0041'
            TABLES
              t_outtab                 = p0041
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0057'."Afiliações
          CLEAR p0057.
          REFRESH p0057.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0057
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0057'
            TABLES
              t_outtab                 = p0057
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0167'."Planos do seguro saúde
          CLEAR p0167.
          REFRESH p0167.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0167
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0167'
            TABLES
              t_outtab                 = p0167
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0168'."Planos de seguro
          CLEAR p0168.
          REFRESH p0168.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0168
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0168'
            TABLES
              t_outtab                 = p0168
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0171'."Área de Benefícios
          CLEAR p0171.
          REFRESH p0171.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0171
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0171'
            TABLES
              t_outtab                 = p0171
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0377'."Outros planos
          CLEAR p0377.
          REFRESH p0377.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0377
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
            EXPORTING
              i_callback_top_of_page   = 'TOP_OF_PAGE'
              i_callback_program       = sy-repid
              i_callback_pf_status_set = 'ZF_STATUS'
              i_callback_user_command  = 'CALLBACK'
              i_structure_name         = 'P0377'
            TABLES
              t_outtab                 = p0377
            EXCEPTIONS
              program_error            = 1
              OTHERS                   = 2.
        WHEN '0410'."Vale transporte,"BR
          CLEAR p0410.
          REFRESH p0410.
          CALL FUNCTION 'HR_READ_INFOTYPE'
            EXPORTING
              pernr     = it_geninfo-pernr
              infty     = it_geninfo-infty
              begda     = it_geninfo-begda
              endda     = it_geninfo-endda
            TABLES
              infty_tab = p0410
            EXCEPTIONS
              OTHERS    = 2.
          CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'

Similar Messages

  • User Id long field not displayed in communication infotype overview screen

    System: SAP 4.7
    After HRSP upgrade, in communication infotype overview screen (Program MP010500 and Screen 3000), the user id long field (technical field USRID_LONG) is not displayed for email subtype 0010 and CELL.
    For subtype 0001, the field (USRID) is still is visible.
    Any help is appreciated.

    Hi,
    Please check OSS note 1561054.
    Hope this helps.
    Donnie

  • Infotype overview within personnel action

    Hi all,
    I would like to create an action for administrative changes which should also pop-up infotype 21. Instead of going through infotype 21 for spouse and respective children, I would like to have the overview of the infotype to make the selection of the person(s) affected by the action. Is this possible, and if yes, how can I integrate it this way in an action?
    Thanks in advance.
    Regards,
    Manu

    You may try by calling the sub-types of 21 one after the other through dynamic actions. Not sure of overview screen.
    Rewards will be appreciated.
    thanks
    narasimha

  • Custom Infotype - Overview Screen ( Screen 30000

    Hi All,
    I have developed a custom infotype. Need some inputs regarding the overview/List screen Please !
    the overview screen primarily is used to list the records for date ranges.i.e. every line / row will have a unique date range for which the record is valid.
    But is there a way in which we can get multiple rows for a date range in List Screen ??
    example.. If screen 2000(create/display screen) has 3 rows( Listed below) for a date range Date1 to Date2.
    (these records below are in the table control).
    Row 1. Name1 Age1 Dob1
    Row 2. Name2 Age2 Dob2
    Row 3. Name3 Age3 Dob3 ... and so on..
    Now the List Screen / Overview screen 3000 - This is how its needed to be seen...
    Row1 Date1 Date2 Name1 Age1 Dob1
    Row2 Date1 Date2 Name2 Age2 Dob2
    Row3 Date1 Date2 Name3 Age3 Dob3
    Instead of (This is what comes up on Screen 3000 now)
    Date1 Date2 Name1 Age1 Dob1 Name2 Age2 Dob2 Name3 Age3 Dob3
    ( The Screen Layout has been modified to add columns to accomodate Name2 Age2 ..... etc)
    Any suggestions/inputs will be highly appreciated !
    Regards,
    Mark

    HI
    I tried hiding it with the help of code.
    Still not able to achieve the result.
    THe below is the code what I am using.
    Please check it and suggest me.
    if psyst-ioper EQ 'LIS0' or
        psyst-ioper EQ 'LIS1' or
        psyst-ioper EQ 'LIS9' .
         loop at SCREEN.
      if screen-name EQ '*P9009-ZWCADM' or screen-name = 'P9009-ZWCADM'.
        screen-active = 0.
        endif.
        MODIFY SCREEN.
      endloop.
      endif.
    Still able to see the fields on the screen.Not being hidden.

  • Delete entries from custom infotype overview screen

    Hi
    I have the requirement to delete few fields from overview screen(Screen 3000) from my custom infotype.
    Can I go to screen 3000, and CUT (delete) the fields which are not required? or any other procedure?
    Did anyone get similar requirement?
    Please help me in this regard.
    Thanks in advance.

    HI
    I tried hiding it with the help of code.
    Still not able to achieve the result.
    THe below is the code what I am using.
    Please check it and suggest me.
    if psyst-ioper EQ 'LIS0' or
        psyst-ioper EQ 'LIS1' or
        psyst-ioper EQ 'LIS9' .
         loop at SCREEN.
      if screen-name EQ '*P9009-ZWCADM' or screen-name = 'P9009-ZWCADM'.
        screen-active = 0.
        endif.
        MODIFY SCREEN.
      endloop.
      endif.
    Still able to see the fields on the screen.Not being hidden.

  • Infotype s record for one employee

    Hi ALl,
    How we can find out all the infotypes maintained for one emplooyee in single screen,,(Not PA30)
    I mean a table / report
    SD

    Hi,
    Report RPLINFC0 (Infotype overview for employee) will help you in doing this. The report is most useful when you need a quick summary of an individual employee's master data. Also, the TCode PC00_M02_LINF0 may be useful.
    Best Regards,
    Venkat.

  • Error while creating infotype message no. pg293

    Hi guys,
    I am creating a new infotype after creating the PS structure when i click on generate objects i get an error saying "An internal error has occurred" message no. PG293.
    kindly provide a solution.
    points will be rewarded.
    thanks

    INFOTYPE CREATION WILL BE TAKEN CARE OF THE ABAPER AS RAO SAID
    AS THE OUT PUT WILL HAVE TO SEEN IN ALL THE SERVERS THIS IS A LITTLE BIT TECHNICAL WORK
    Start transaction PM01, Create Infotype, by entering the transaction code.
    You access the Create Infotype screen:
    2. In the Infotype no. field, enter the four-digit number of the infotype you want to create.
    When you specify the infotype number, please remember to enter any leading zeros.
    3. Choose IT characteristics.
    This accesses the Display View “Infotypes”: Overview screen.
    4. Choose Table view   Display   Change.
    This accesses the Change View “Infotypes”: Overview screen.
    5. Create a new entry for your infotype.
    You can create new entries by
    – choosing Edit   New entries or
    – copying an infotype entry with similar characteristics.
    If you want to copy an existing entry, select the entry you want to copy and choose
    Edit   Copy as.
    6. Check the entries in the individual fields.
    Result: You have maintained the characteristics of your infotype.
    Please check the above config for maintaining your infotype in PA30 and also check your entries in T582A & S.
    Edited by: Sikindar on Mar 9, 2008 8:23 PM

  • Custom infotype in recruitment

    hi experts
    as nobody answering my query about pb60 i want to create a custome infotype in recruitment to maintain following data for an applicant and to fetch this data in "invitation for interview" in applicant planned activity. 
    at least suggest me all steps very clearly to create an infotype with the following fields
    Date of Interview Scheduled
    Time of Interview Scheduled
    Place of Interview Scheduled Address line 1
                                              Address Line 2
    its urgent

    . Start transaction PM01, Create Infotype, by entering the transaction code.
    You access the Create Infotype screen:
    2. In the Infotype no. field, enter the four-digit number of the infotype you want to create.
    When you specify the infotype number, please remember to enter any leading zeros.
    3. Choose IT characteristics.
    This accesses the Display View “Infotypes”: Overview screen.
    4. Choose Table view   Display   Change.
    This accesses the Change View “Infotypes”: Overview screen.
    5. Create a new entry for your infotype.
    You can create new entries by
    – choosing Edit   New entries or
    – copying an infotype entry with similar characteristics.
    If you want to copy an existing entry, select the entry you want to copy and choose
    Edit   Copy as.
    6. Check the entries in the individual fields.
    Result: You have maintained the characteristics of your infotype.
    Please check the above config for maintaining your infotype in PA30 and also check your entries in T582A & S.
    and regarding the addition of the feild u need to take help from ur ABAPER

  • Generic Object Services (HR Master Overview Screen)

    Hi, i need to incorporate the Generic Object Services functionality to the HR Master Data linking it at three levels, namely,
    Scenarios
         1) GOS at Employee Level
         2) GOS at Employee-Infotype Level
         3) GOS at PD Object Level.
    I've managed to find the solution to Scenario's 1 and 3 while i'm still trying to incorporate scenario 2.
    Can someone let me know if there's any User-Exit that gets triggered at the Infotype Overview screen level from transaction PA30?
    I couldnt locate an exit that'd get triggered upon calling the overview screen in the HR Master Data transaction (PA30). So is the trouble.
    Helpful answers will be rewarded with points
    Cheers,
    Venkat

    Hi Venkat,
    Could you please share the steps on how you got the GOS at Employee Level to work?
    Thank you for your help.
    Aileen

  • Infotypes created for an employee

    Dear experts.
    Anyone know if SAP have a report or transaction for Know that infotype saved an employee?
    Thanks in advance
    Regards
    Carmen G

    Please use standard program below to see all infotype of employee in SAP system:
    S_AHR_61015785 - Infotype Overview for Employee
    Regards!
    Woody.

  • Employment status mismatches in loan report

    Hi,
    I have just joined in a support project. Need some guidance to solve a issue.
    The employee's loan report was taken from a Adhoc Query and it was found that the employment status is "Active" for the left employees. Pls let me know how to rectify this.
    Find below the Action Infotype overview for the employee.
    Find below the Query report  on loan details:
    Loan Infotype overview:
    I found that when the employees where entered for loan they were given entry date and system generated end date as 31.12.9999. When the same employee  left the Company, their action was changed to "Separation" and was given Employment status as"Withdrawn". Simultaneously the pending loans where also delimited with the same end date (date of leaving). Because of this the loan report entries for left employees showing Employment status "Active"
    How to rectify the entries of Employment Status to"Withdrawn" in the loan report
    Thanks

    Hi Savni,
    Empolyement status(STAT2) we have
    ACTIVE- it means employee withcompany  
    INACTIVE-it means employee not with the company
    as you said your client dose not have plans to implement PT and PY then it is okay you can use it.
    it wont impact any thing.
    but when you have scope of PT and PY then it impacts the PT and PY directly.
    as Remi corretly said  even if the employee is on LOA then there would be a record(s) in infotype 2001 for the duration of LOA.
    Regards,
    mohammed

  • What is the Transaction code for info structure s803

    Please provide me Transaction code for info structure s803

    hai
    try these tcodes
    PSO3   Infotype overview                        
    PSO4   Individual maintenance of infotypes      
    PA20 Display PA Infotypes
    PA30 Create/Change PA Infotypes

  • How could you map the Records of OM- PA

    Hello Experts,
    How could you map the Records of OM->PA ,if the designation of person changes from manager to supervisor from certain date.and how can we see the changed records??
    Solution :we can see the changes in the addition action infotype 302,personel hiring action(0000) delimit the record whenerver we changes the designation,and in the orgassingment infotype overview ,action infotype over view we can see the changes and PLOGI-ORGA IS the integration switch and position is the key for map the recoed from OM ->PA
    Post your comments if the solution is correct???
    Regards
    Chandra

    Thanks  a Lot!!!!
    Regards
    Chandra

  • How to Mapping  the records between OM-PA

    How could you map the Records of  OM->PA  ,if  the designation of  person changes from  manager to supervisor from certain date.and how can we see the changed records??
    Solution :we can see the changes  in the addition action infotype 302,personel hiring action(0000) delimit the record whenerver we changes the designation,and in  the orgassingment infotype overview ,action infotype over view we can see the changes and PLOGI-ORGA IS the integration switch and position is the key for map the recoed from OM ->PA
    Post your comments if the solution is correct???
    Regards
    Chandra

    hi,
    kindly go through the below message i hope it will help you.
    when the employee designation is changed the action of employee changed in infotype 0000 and previous record is delimited and that current recod automatically reflect on infotype 0001 and you find the position of employee here and esily identify.
    in this way when the position changes in OM it will reflect on PA.(in infotype0001).
    thanks and regards..
    Bibek

  • HR Tcodes?

    Hii All-
    I want to know all the tcodes in HR?? I am an ABAP HR guy in initial stages..
    I need urgently abt one tcode which is used to look OM infotypes. PA30 is for PA infotypes, likewise what tocde can be used to see infotypes 1000 to 1999?? pls send me imm.
    Tx

    Hi Shakir,
    Here are some Tcodes related to HR :-
    SAP HR Transaction Codes
    Code     Description
    P1B1      Transfer hiring data for applicant
    P1B2      Transfer hiring data for applicant
    P1B3      Transfer hiring data for applicant
    P1B4      Transfer table T588Z, infotype 4000
    P1B5      Transfer opt. archive for applicant
    P1B6      Transfer hiring data for applicant
    P1B7      Conversion T750B
    P1OA      Transfer Settings for Opt.Archiving
    P201      Transfer T514D/V from Client 000
    P2W1      Transfer Incentive Wage Accounting
    P2W2      Copy Incentive Wage Forms
    P4SW      Release notes BWP
    P5P1      Addition of IT0122 to T588B
    P5P2      Delete entries in T588B
    PA00      Initial PA Master Data Menu
    PA03      Maintain Personnel Control Record
    PA04      Maintain HR Number Ranges
    PA05      Number Range Maintenance: RP_COIFT
    PA06      Number Range Maintenance: PD_SEQ_NR
    PA07      Maintain Number Range: RP_GARNEM
    PA08      Maintain Number Range: RP_GARNSUB
    PA09      
    PA10      Personnel File
    PA20      Display HR Master Data
    PA30      Maintain HR Master Data
    PA40      Personnel Actions
    PA41      Correct Actions
    PA42      Fast Entry for Actions
    PA46      Import from Resumix
    PA47      Export to Resumix
    PA48      Hiring from non-SAP system
    PA51      Display Time Data
    PA53      Display Time Data
    PA61      Maintain Time Data
    PA62      List Entry of Additional Data
    PA63      Maintain Time Data
    PA64      Calendar Entry
    PA70      Fast Entry
    PA71      Fast Entry of Time Data
    PA88      Benefits
    PA97      Matrix Maintenance
    PA98      Compensation Administration
    PA99      Compensation Admin. - Release Report
    PAAH      Call Ad-Hoc Query
    PACA      HR-CH: PF administration
    PACB      HR-CH: PF account maintenance
    PACC      HR-CH: PF calculator
    PACE      HR-CH: Pension fund : Postings
    PACK      HR-CH: Pension fund
    PACN      Number range maint: HRCHPKONTO
    PACP      HR-CH: Pension fund, interface
    PACT      PC parameter maintenance
    PAJP      Call reporting tree - Japan
    PAL1      Create Sales Representative
    PAL2      Display Sales Representative
    PAL3      Maintain Sales Representative
    PAL4      Create Buyer
    PAL5      Maintain Buyer
    PAL6      Display Buyer
    PAR1      Flexible employee data
    PAR2      Employee list
    PAT1      Personnel Administration infosystem
    PAW1      Who is who
    PB00      Recruitment
    PB04      Number Range Maintenance: RP_PAPL
    PB10      Init.entry of applicant master data
    PB20      Display applicant master data
    PB30      Maintain applicant master data
    PB40      Applicant actions
    PB50      Display Applicant Activities
    PB60      Maintain Applicant Activities
    PB80     Evaluate vacancies
    PBA0      Evaluate advertisements
    PBA1      Applicant index
    PBA2      List of applications
    PBA3      Applicant vacancy assignment list
    PBA4      Receipt of application
    PBA5      Recurring tasks: Print letters
    PBA6      Recurring tasks: Print letters
    PBA7      Recurring tasks: Data transfer
    PBA8      Recurring tasks: Transfer data
    PBA9      List of planned actions
    PBAA      Evaluate recruitment instrument
    PBAB      Maintain vacancy assignments
    PBAC      Applicant statistics
    PBAD      Recurring tasks: Print letters
    PBAE      Applicant pool
    PBAF      Vacancy assignment list
    PBAG      Screening
    PBAH      Decision
    PBAI      All applicants via qualifications
    PBAJ      Recruitment info system
    PBAK      Recurring Tasks: Print Labels
    PBAL      Bulk processing
    PBAM      Variable Applicant List
    PBAN      Ad Hoc Query
    PBAO      ABAP Query
    PBAP      Internal Applicants Via Quals
    PBAQ      External Applicants Via Quals
    PBAT      Choose SAPscript or WinWord
    PBAU      Maintain T750C
    PBAV      Display T750C
    PBAW      Maintain T750B
    PBAX      Display T750B
    PBAY      Maintain T750X
    PBAZ      Display T750X
    PBCX      Cust. Account Assign. Reference (MM)
    PBCY      Cust. Account Assign. Reference (FX)
    PBCZ      Cust. Account Assign. Reference (DE)
    PBW1      Career Center
    PBW2      Career Center: Status tracking
    PBWW      Customizing standard text in WinWord
    PC00      Menu for HR Payroll
    PC01      Payroll Menu: Germany
    PC02      Payroll Menu: Switzerland
    PC03      Payroll Menu: Austria
    PC04      Payroll Menu: Spain
    PC05      Payroll Menu: Netherlands
    PC06      Payroll Menu: France
    PC07      Payroll menu Canada
    PC08      Payroll Menu: Great Britain
    PC09      Payroll Menu: Denmark
    PC10      Payroll Menu: USA
    PC12      Payroll Menu: Belgium
    PC14      Payroll Menu: USA
    PC16      Payroll Menu: South Africa
    PC1A      HR Menu: Payroll for Austria
    PC1B      Payroll Menu: Belgium
    PC1C      Menu for HR Payroll Switzerland
    PC1D      HR Menu: Payroll for Germany
    PC1E      HR Menu: Payroll for Spain
    PC1F      HR Menu: Payroll for France
    PC1G      HR Menu: Payroll for Great Britain
    PC1J      HR menu : Payroll for Japan
    PC1K      HR Payroll Menu for Canada
    PC1L      
    PC1M      HR payroll menu Denmark
    PC1N      HR NL: Payroll Menu
    PC1Q      HR Payroll Menu - Australia
    PC1R      HR-SG: Payroll Menu per periods
    PC1S      Menu for HR Payroll Sweden
    PC1T      HR Payroll Menu for Czech Republic
    PC1U      HR Payroll Menu for USA
    PC1W      Payroll Menu: South Africa
    PC1X      Payroll Menu: International Version
    PC22      Payroll Menu: Japan
    PC23      Payroll Menu: Sweden
    PC25      Payroll Menu: Singapore
    PC2A      New Payroll Menu
    PC2B      Payroll Menu Yearly
    PC2C      Menu for HR Payroll Annual Switz.
    PC2D      New Payroll Menu
    PC2E      New Payroll Menu
    PC2F      Annual Payroll Menu (F)
    PC2G      HR Menu: Payroll for Great Britain
    PC2J      HR menu : Payroll for Japan
    PC2K      New Payroll Menu (Canada)
    PC2L      
    PC2M      HR-DK: Annual payroll activities
    PC2N      HR NL: New Payroll Menu
    PC2R      HR-SG: Payroll Menu: Annual
    PC2S      Menu for HR Payroll Annual Sweden
    PC2T      HR Payroll Menu for Czech Republic
    PC2U      New Payroll Menu
    PC2W      New Payroll Menu
    PC32      Payroll Menu: Mexico
    PC34      Payroll Menu for Indonesia
    PC3A      Payroll Menu: Other Periods
    PC3B      Other periods
    PC3C      Menu for RP Payroll Other per Switz.
    PC3D      Payroll Menu: Other Periods
    PC3E      Payroll Menu: Other Periods
    PC3F      Payroll Menu (F): Other periods
    PC3G      HR Menu: Payroll for Great Britain
    PC3J      HR menu : Payroll for Japan
    PC3K      Payroll Menu: Other Periods (CA)
    PC3L      
    PC3M      Payroll Menu: Other Periods
    PC3N      Payroll Menu: Other Periods (NL)
    PC3Q      Pay Scale Reclassification Australia
    PC3R      Payroll Menu: Other Periods
    PC3S      Menu for RP Payroll Other per Sweden
    PC3T      HR Payroll Menu for Czech Republic
    PC3U      Payroll Menu: Other Periods
    PC3W      Payroll Menu: Other Periods
    PC4A      New Payroll Menu
    PC4B      Independent Period
    PC4C      Menu for RP Payroll Other Switz.
    PC4D      New Payroll Menu
    PC4E      New Payroll Menu
    PC4F      Payroll Menu (F): Period-unrelated
    PC4G      HR Menu: Payroll for Great Britain
    PC4J      HR menu : Payroll for Japan
    PC4K      New Payroll Menu (Canada)
    PC4L      
    PC4N      HR NL: New Payroll Menu
    PC4Q      Pay Scale Increase Australia
    PC4R      Payroll menue: Period-Independent
    PC4S      Menu for RP Payroll Other Sweden
    PC4T      HR Payroll Menu for Czech Republic
    PC4U      New Payroll Menu
    PC4W      New Payroll Menu
    PC5J      HR payroll menu (Japan) - SYOYO
    PC5Q      Pay Scale Inc. Extended Australia
    PC6J      HR payroll menu (Japan) year-end adj
    PC7J      HR payroll menu (Japan) - retirement
    PC8J      HR payroll menu Social Insurance JP
    PC99      International Payroll Menu
    PCC0      Maintnce fam.rltd.bonuses Switz.
    PCP0      Post accounting data
    PDA1      List of part-time work for pensioner
    PDA2      Construct transaction data list
    PDB1      Release Info 2.1A - Statements
    PDB2      Releaseinfo 2.2A Statements
    PDF0      Convert form for remun.statement
    PDF2      Form table CY 94/95
    PDF7      Delete form in customer client
    PDF8      Copy form from SAP client
    PDF9      Copy forms within customer client
    PDI1      Copy Wage Types from Standard Client
    PDJ1      HR Change of Year 93/94 (D)
    PDJ2      HR Fiscal year change 94/95 D Suppl.
    PDJ3      Bill of materials 3.0C
    PDJ6      Evaluation/statistic object list
    PDJ7      AV96/97 Continued Pay
    PDJ8      Part-time work by pensioners
    PDK1      Copy W.Types from Standard Clients
    PDLK      HR D(G4) Form Tables f. PayrollAcct
    PDP0      Table entries for loans
    PDS1      Health insurance funds
    PDSD      Object list DynMaßn tax D
    PDVA      Copy VAG Wage Types for IT 0093
    PE00      Starts Transactions PE01,PE02,PE03
    PE01      HR: Maintain Payroll Schemas
    PE02      HR: Maintain Calculation Rules
    PE03      HR: Features
    PE04      Creating Functions and Operations
    PE51      HR form editor
    PEPM      Profile Matchup
    PEPP      Profiles
    PF01      Test transact.
    PF02      Cust. test of value-based IM
    PF05      Number Range Maintenance: HRSOBJECT
    PFAC      Maintain standard role
    PFAL      HR ALE: Distr. infotypes completely
    PFCG      Activity Group Maintenance
    PFCP      Copy Workflow Tasks
    PFCT      Task Catalog
    PFCU      Task Customizing
    PFOM      Maintain Assignment to SAP Org.Objs
    PFOS      Display Assignment to SAP Org.Objs
    PFSE     Start PFS from R/3 System
    PFSO      User's Organizational Environment
    PFT      Maintain Customer Task
    PFTC      General Task Maintenance
    PFTR      Standard Task for Transaction
    PFTS      Standard Task
    PFUD      User Master Data Reconciliation
    PFWF      Maintain Workflow Task (customer)
    PFWS      Maintain workflow template
    PGOM      Graphical Structure Maintenance
    PI30      PP-PI Options for Release 3.0
    PI50      Transfer selected R/2 orders
    PI51      Transfer current R/2 orders
    PI60      Transfer confirmations to R/2
    PID1      HR-ID: Payroll Menu per periods
    PID2      HR-ID: Payroll Menu: Annual
    PID3      Payroll Menu: Other Periods
    PID4      Payroll menue: Period-Independent
    PIMN      Human resources information system
    PK00      Kanban
    PK01      Create control cycle
    PK02      Change control cycle
    PK03      Display control cycle
    PK99      Function Access via Transaction
    PKBC      Chnge Container Status with Bar Code
    PKC1      Process cost controlling
    PKG1      Copy entries for garnishment CA
    PKW1      Kanban board WWW
    PM00      Menu for HR Reports
    PM01      Enhance Infotypes
    PM03      Maintain Number Range Features
    PM10      Statements Selection
    PM11      Statements - Single Data Entry
    PM12      Statements - Fast Data Entry
    PM13      Statements - Print
    PMAR      Change plan for appropriation req.
    PMX1      
    PMX2      
    PMX3      
    PMX4      
    PO01      Maintain Work Center
    PO02      Maintain Training Program
    PO03      Maintain Job
    PO04      Maintain Business Event Type
    PO05      Maintain Business Event
    PO06      Maintain Location
    PO07      Maintain Resource
    PO08      Maintain External Person
    PO09      Maintain Business Event Group
    PO10      Maintain Organizational Unit
    PO11      Maintain Qualification
    PO12      Maintain Resource Type
    PO13      Maintain Position
    PO14      Maintain Task
    PO15      Maintain Company
    PO16      Maintain Services
    PO17      Maintain Requirements Profile
    PO18      Maintain Resource Room
    PO19      Maintain External Instructor
    POI1      Start Download of Master Data
    POIL      View Received Data Log
    POIM      Start Download of Master Data
    POIT      Start Download of Transaction Data
    POIU      Start Receiving Changes to Data
    POTB      Parameters for OTB
    PP01      Maintain Plan Data (menu-guided)
    PP02      Maintain Plan Data (Open)
    PP03      Maintain Plan Data (Action-Guided)
    PP05      Number Ranges
    PP06      Number Range Maintenance: HRADATA
    PP07      Tasks/Descriptions
    PP20      Career and Succession Planning
    PP23      PD Cost Planning: Reset Password
    PP26      Plan Scenario Administration
    PP27      Release of plan scenarios for CO
    PP28      PersCostPl: New Scenario
    PP29      PersCostPl: Resumption
    PP2B      PD CostPl.: Plan Basic Pay Direct
    PP2D      PD CostPl1: Delete Payroll Results
    PP2P      PD CPl: Plan Payroll Results Direct
    PP30      SAP Room Reservations Planning
    PP31      SAP Room Reservations Planning: Data
    PP32      SAP Room Reservations: Services
    PP40      Correspondence
    PP61      Shift Planning
    PP62      Shift Planning: Requirements Menu
    PP63      Requirements Processing
    PP64      Choose Plan Version
    PP65      Edit an Entry Object
    PP66      Shift Planning: Entry Profile
    PP68      Shift Planning: Current Settings
    PP69      Choose Text for Organizational Unit
    PP6A      Personal Shift Plan
    PP6B      Attendance List
    PP70      Organizational Management
    PP72      Shift Planning
    PP74      Personnel Cost Planning
    PP75      Assessment
    PP7S      Organizational Management
    PP90      Set Up Organization
    PPCI      Copy Infotype
    PPCO      Initial Screen: Organizational Plan
    PPCP      Career Planning
    PPCT      Task Catalog
    PPEM      PD: Display Organizational Structure
    PPI0      Transfer of Table Entries
    PPIS      Human Resources Information System
    PPLB      Evaluate Careers
    PPME      Change Matrix Organization
    PPMM      Personnel Planning
    PPMS      Display Matrix Organization
    PPO1      Change Cost Center Assignment
    PPO2      Display Cost Center Assignment
    PPO3      Change Reporting Structure
    PPO4      Display Reporting Structure
    PPO5      Change Object Indicators (O/S)
    PPO6      Change Object Indicators O/S
    PPOA      Display Menu Interface (with dyn.)
    PPOC      Create Organizational Unit
    PPOM      Maintain Organizational Plan
    PPOS      Display Organizational Plan
    PPPD      Display Profile
    PPPE      Area Menu: Personnel Development
    PPPM      Change Profile
    PPQ1      Find Objects for Qualifications
    PPQ2      Find Objects for Requirements
    PPQD      Display Qualifications Catalog
    PPRL      Change Material When Profile Deleted
    PPRP      Reporting: Personnel Development
    PPRV      Change Material When Profile Changed
    PPSC      Create Structure
    PPSM      Change Structure
    PPSP      Succession Planning
    PPSS      Display Structure
    PPST      Structure Evaluation
    PPUP      Settings: User Parameters
    PQ01      Actions for Work Center
    PQ02      Actions for Training Program
    PQ03      Actions for Job
    PQ04      Actions for Business Event Type
    PQ06      Location Actions
    PQ07      Resource Actions
    PQ08      Actions for External Person
    PQ09      Actions for Business Event Group
    PQ10      Actions for Organizational Unit
    PQ12      Actions for Resource Type
    PQ13      Actions for Position
    PQ14      Actions for Task
    PQ15      Actions for Company
    PQ17      Actions for Requirement Profiles
    PQ18      Actions for Resource Room
    PQ19      Actions for External Instructor
    PQAH      Transaction for Ad Hoc Query
    PQLV      Australian Leave Processing
    PQRD      Redundancies Australia
    PQTM      Terminations Australia
    PR00      Trip Costs
    PR01      Maintain International Travel Data
    PR02      Fast Entry: Inter.Trip Costs Data
    PR03      Edit Advances
    PR04      Edit Weekly Reports
    PR05      Receipt Entry
    PR10      Number Range Maint.: RP_REINR
    PR11      
    PR12      Number Range Maint. for Posting Runs
    PR71      Customizing Coding Block 1701
    PR72      Customizing Coding Block 1702
    PR73      Customizing Coding Block 1703
    PR90      Initial Screen: Public Sector
    PR91      Display: Trips with Periods
    PR92      Display: Trips with Periods
    PR93      Change: Trips with Periods
    PRAA      Automatic Vendor Maintenance
    PRAP     Approval of Trips
    PRC2      Customizing Coding Block 1200
    PRC7      Customizing Coding Block 1700
    PRCC      Credit Card Clearing
    PRCD      Delete/Copy Trip Countries
    PRCT      Current Settings
    PRCU      Check Printing USA
    PRD1      Create DME
    PRDE      Delete/Restore Trip Prov.Variant
    PRDH      Employees with Exceeded Trip Days
    PRDX      Call Country Version DME Pre.Program
    PREC      Trip Costs Accounting Program
    PRF0      Standard Form
    PRF1      Summarized Form 1
    PRF2      Summarized Form 2
    PRFI      Posting to Financial Accounting
    PRFW      Income-rel.Expenses Statement
    PRHD      Maximum Value Delimitation for Meals
    PRHH      Scale Maximum Amounts for Meals
    PRHP      Scale Per Diems for Meals
    PRIN      Index for Personnel Number in Vendor
    PRMC      Trip Costs: Feature TRVCT
    PRMD      Maintain HR Master Data
    PRMF      Trip Costs: Feature TRVFD
    PRML      Set Country Grouping via Dialog Box
    PRMM      Personnel Actions
    PRMS      Display HR Master Data
    PRMT      Update Matchcode T
    PROF      Profit Center Accounting
    PRPD      Delimitation of Per Diems for Meals
    PRPY      Transfer to Payroll Accounting
    PRRW      Post Accounting Data
    PRST      Period Statistics
    PRVT      VAT Recovery
    PS00      Basic data
    PS01      Project Information System
    PS02      Operative Structures
    PS03      Project Planning
    PS04      Project Approval
    PS05      Project Execution
    PS06      Project Cost Controlling
    PS81      Call Up Report Tree PS81 (Ind.Overv)
    PS90      Call Up Report Tree PS90 (Overview)
    PS91      Call Up Report Tree PS91 (Costs)
    PS92      Call Up Report Tree PS92 (Revenues)
    PS93      Call Up Report Tree PS93 (Finances)
    PS94      Call Up Report Tree PS94 (Line Itms)
    PS95      Call Up Report Tree PS95 (Sum.over.)
    PS96      Call Up Report Tree PS96 (Sum.costs)
    PS97      Call Up Report Tree PS97 (Sum.rev.s)
    PS98      Call Up Report Tree PS98 (Sum.fin.)
    PSC      PS Basic data: current settings
    PSC0      Set Plan Version Valid for Cost Plan
    PSC2      PS Op.structures: current settings
    PSC3      PS planning: Current settings
    PSC5      PS Implementation: Update Settings
    PSCP      Set plan version
    PSIC      Curr.settings HR information system
    PSJ1      Hokensya Santei Adjustment
    PSO0      Set Plan Version for OrgManagement
    PSO1      Set Aspect for OrgManagement
    PSO2      PS System/Database Tools
    PSO3      Infotype overview
    PSO4      Individual Infotype Maintenance
    PSO5      PD: Administration Tools
    PSOA      Work Center Reporting
    PSOC      Job Reporting
    PSOG      OrgManagement General Reporting
    PSOI      Tools Integration PA-PD
    PSOO      Organizational Unit Reporting
    PSOS      Position Reporting
    PSOT      Task Reporting
    PSSD      Check BNL flow types
    PSV0      Change / Display Resources
    PSV1      Dynamic Attendance Menu
    PSV2      Dynamic Business Event Menu
    PSV3      Dynamic Information Menu
    PSV4      Set Plan Version
    PSV5      Info: Attendances
    PSV6      Reporting: Business Events
    PSV7      Reporting: Resources
    PSV8      Create Attendee
    PSV9      Change / Display Attendee
    PSVA      Set Aspect
    PSVC      Training and Events:Current Settings
    PSVL      Set Business Event Language
    PSVO      Change / Display Organizer
    PSVP      Dynamic Planning Menu
    PSVR      Dynamic Resource Menu
    PSVT      Dynamic Tool Menu
    PT00      Time Management
    PT01      Create Work Schedule
    PT02      Change Work Schedule
    PT03      Display Work Schedule
    PT10      
    PT11      Number Range Maintenance: PTM_QUONR
    PT12      Number Range Maintenance: HRAA_PDOC
    PT40      PDC Error Transaction
    PT41      Communication Parameters
    PT42      Supply Personnel Data
    PT43      Supply Master Data
    PT44      Upload Request
    PT45      Post Person Time Events
    PT46      Post Working Time Events
    PT50      Leave Accrual
    PT60      Time Evaluation
    PT61      Time Statement
    PT62      Attendance List
    PT63      Personal Work Schedule
    PT64      Absence List
    PT65      Graphical Abs./Attendance Overview
    PT66      Display Cluster B2
    PT67      Third-Party Payroll Accounting
    PT68      Activity Allocation
    PT70      Time Management Info System
    PT71      Tool Selection for Time Management
    PT82      CC1: Download HR Mini Master Records
    PT83      CC1: Download Employee Time Balances
    PT84      Allowed Absence/Attendance Reasons
    PT85      Allowed External Wage Types
    PT86      Allowed Time Event Types
    PT87      Allowed Positions
    PTE1      Generate Batch Input Session
    PTE2      Process Batch Input Session
    PTE3      Reorganize Interface File
    PU00      Delete Personnel Data
    PU01      Delete current payroll result
    PU03      Change Payroll Status
    PU11      Supplementary CS Benefits (D)
    PU12      Connection to Third-Party Payroll
    PU13      Correction Checks
    PU14      On Demand Check for Regular Pay
    PU15      On Demand Checks (Bonus)
    PU20      Preperation for issuing of tax forms
    PU21      Issuing of tax forms
    PU22      HR Archiving
    PU23      SARA parameters set for PA_CALC
    PU24      SARA parameters set for PA_TIME
    PU25      SARA parameters set for PA-TRAVEL
    PU30      Wage Type Maintenance
    PU90      Delete applicant data
    PU95      HR: Maintain Log. Views & WT Groups
    PU96      HR: Maintain Wage Type Groups
    PU97      HR: Logical View Maintenance
    PU98      Assign Wage Types to Groups
    PUC0      HR-CH: Maintain MA attributes
    PUCA      HR-CH: PC admin. for PF
    PUCE      HR-CH: PC editor for PF
    PUCF      HR-CH: PC maintenance form PF
    PUCG      HR-CH: Funds-total copier
    PUCK      HR-CH: Entity copier for funds
    PUCP      HR-CH: PC parameter maint. for PF
    PUCV      HR-CH: Entity copier for PC obj.
    PUCW      HR-CH: Maint. of HSC outputs for PF
    PUG1      HR-GB: On-demand payroll
    PULT      Transport HR Tables for Logistics
    PUU1      BSI Test Tool
    PUUG      Change remittance due date
    PV00      Book Attendance
    PV01      Rebook Attendance
    PV02      Prebook Attendance
    PV03     Replace Attendance
    PV04      Cancel Attendance
    PV05      Book List: Attendees/Business Events
    PV06      Prebook List: Attendees
    PV07      Book List: Attendees
    PV08      Book List: Business Events
    PV09      Plan Business Events
    PV0I      Display Business Event Offer
    PV10      Create Business Event with Resources
    PV11      Create Business Event w/o Resources
    PV12      Firmly Book / Cancel Business Event
    PV14      Lock / Unlock Business Event
    PV15      Follow Up Business Event
    PV16      Prebooking List per Attendee
    PV17      Billing
    PV18      Cost Allocation
    PV1A      Change Business Event
    PV1B      Display Business Event
    PV1C      Cost Transfer
    PV1D      Price Proposal
    PV1I      Attendee Bookings (R/3 Users)
    PV26      Prebook List: Attendees/Event Types
    PV2I      Attendee Bookings (Web Users)
    PV32      Appraisals
    PV33      Business Event Appraisal
    PV34      Attendee Appraisal
    PV3I      Display Business Event Offer
    PV4I      Attendee Bookings (Web Users)
    PV5I      Attendee Bookings (R/3 Users)
    PV6I      Attendee Bookings (Web Users)
    PVB0      Business Event Budget
    PVB1      Create Business Event Budget
    PVB2      Display Business Event Budget
    PVB3      Change Business Event Budget
    PVBA      Training & Events: Budget Comparison
    PVBB      Create/Change Training Program
    PVCT      Master Data Catalog
    PVD0      Create/Change Business Event Type
    PVF0      Create/Change Location
    PVF1      Maintain Location
    PVG0      Create/Change Resource
    PVG1      Create/Change Room
    PVG2      Lock/Unlock Resource
    PVG3      Maintain Room
    PVH0      Create/Change External Instructor
    PVH1      Create/Change Instructor
    PVH2      Maintain External Person
    PVL0      Create/Change Business Event Group
    PVMN      Training & Event Management
    PVR0      Create/Change Resource Type
    PVR1      Maintain Room Equipment
    PVU0      Create/Change Company
    PVU1      Maintain Company
    PVV0      Create/Change Service
    PW00      Incentive Wages
    PW01      Maintain Incentive Wages Data
    PW02      Display Incentive Wages Data
    PW03      Enter Incentive Wages Data
    PW41      Generate Batch Input Session
    PW42      Process Batch Input Session
    PW43      Reorganize Interface File
    PW61      Time Leveling
    PW62      Employment Percentage
    PW63      Reassignment of Pay Scale Group
    PW70      Recalculate Indiv. Incentive Wages
    PW71      Recalculate Group Incentive Wages
    PW80      Incentive Wages: Current Settings
    PW91      Incentive Wages: Control Parameters
    PW92      Incentive Wages: User Exits
    PW93      Incentive Wages: Group Parameters
    PW94     Inc. Wages: Logistics Parameters
    PW95      Incentive Wages: PDC Parameters
    PX01      Planning area, external plan. tool
    PX02      Planning tool, physical system
    PX03      Planning Tool
    PX04      Ext.Planning Tool: StartParam. WinNT
    PY00      Maintenance T77PR for Rel.Notes 20.A
    PY01      Adopt T77R* from release note 20.A
    PY02      Adopt T77KL from release notes
    PYG1      HR-GB: Config. end of year filepaths
    PYG2      HR-GB: Generate EOY cluster
    Kindly reward in case useful.
    Regards,
    Darshan Mulmule

Maybe you are looking for