Abap-hr : error in retrieving employee's family dependent details

Hi all,
        while retreiving family dependent details of employee of subtype de01 its throwing up a dump
       <REMOVED BY MODERATOR>
*& Report  ZABAP_HR                                                    *
REPORT  ZABAP_HR                                .
TABLES : PERNR.
INFOTYPES : 0000, 0001, 0002, 0006, 0105, 0021.
*         STRUCTURES
TYPES : BEGIN OF TY_EMP,
        PERNR(20)   TYPE  C,        "PERSONNEL NO
        NACHN   TYPE  NACHN,        "FIRST NAME
        VORNA   TYPE  VORNA,        "LAST NAME
*        ANSSA   TYPE  ANSSA,        "ADDRESS TYPE
        STRAS   TYPE  STRAS,        "STREET
        PSTLZ   TYPE  PSTLZ,        "POSTAL CODE
        ORT01   TYPE  ORT01,        "CITY
        LAND1   TYPE  LAND1,        "COUNTRY
        STRAS1   TYPE  STRAS,        "STREET
        PSTLZ1   TYPE  PSTLZ,        "POSTAL CODE
        ORT011   TYPE  ORT01,        "CITY
        LAND11   TYPE  LAND1,        "COUNTRY
        PLANS   TYPE  PLANS,        "POSITION
        EMAILID TYPE  COMM_ID_LONG, "EMAIL ID
        FAMSA   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR   TYPE  FAVOR,        "FIRST NAME
        FANAM   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA1   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR1   TYPE  FAVOR,        "FIRST NAME
        FANAM1   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA2   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR2   TYPE  FAVOR,        "FIRST NAME
        FANAM2   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA3   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR3   TYPE  FAVOR,        "FIRST NAME
        FANAM3   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA4   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR4   TYPE  FAVOR,        "FIRST NAME
        FANAM4   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA5   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR5   TYPE  FAVOR,        "FIRST NAME
        FANAM5   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA6   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR6   TYPE  FAVOR,        "FIRST NAME
        FANAM6   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA7   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR7   TYPE  FAVOR,        "FIRST NAME
        FANAM7   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA8   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR8   TYPE  FAVOR,        "FIRST NAME
        FANAM8   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA9   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR9   TYPE  FAVOR,        "FIRST NAME
        FANAM9   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA10   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR10   TYPE  FAVOR,        "FIRST NAME
        FANAM10   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA11   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR11   TYPE  FAVOR,        "FIRST NAME
        FANAM11   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA12   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR12   TYPE  FAVOR,        "FIRST NAME
        FANAM12   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA13   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR13   TYPE  FAVOR,        "FIRST NAME
        FANAM13   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA14   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR14   TYPE  FAVOR,        "FIRST NAME
        FANAM14   TYPE  PAD_NACHN,    "LAST NAME
        END OF TY_EMP.
*        INTERNAL TABLES
DATA  :  IT_EMP  TYPE STANDARD TABLE OF TY_EMP.
*        WORK AREAS
DATA : WA_EMP  TYPE  TY_EMP.
DATA : N TYPE I.
*       START-OF-SELECTION
START-OF-SELECTION.
GET PERNR.
*     SUBROUTINE TO FETCH DATA FROM INFOTYPES
  PERFORM FETCH_DATA_INFTY.
END-OF-SELECTION.
*    SUBROUTINE TO DISPLAY DATA
  PERFORM DISPLAY_DATA.
*&      Form  FETCH_DATA_INFTY
*       text
*  -->  p1        text
*  <--  p2        text
*PERSONAL DETAILS
  RP_PROVIDE_FROM_LAST P0002 SPACE  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-PERNR = P0002-PERNR.
    WA_EMP-NACHN = P0002-NACHN.
    WA_EMP-VORNA = P0002-VORNA.
  ENDIF.
*ORGANIZATIONAL DETAILS
  RP_PROVIDE_FROM_LAST P0001 SPACE  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-PLANS = P0001-PLANS.
  ENDIF.
*PERMANENT ADDRESS DETAILS
  RP_PROVIDE_FROM_LAST P0006 0001  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-STRAS = P0006-STRAS.
    WA_EMP-PSTLZ = P0006-PSTLZ.
    WA_EMP-ORT01 = P0006-ORT01.
    WA_EMP-LAND1 = P0006-LAND1.
  ENDIF.
*TEMPORARY ADDRESS DETAILS
  RP_PROVIDE_FROM_LAST P0006 0002  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-STRAS1 = P0006-STRAS.
    WA_EMP-PSTLZ1 = P0006-PSTLZ.
    WA_EMP-ORT011 = P0006-ORT01.
    WA_EMP-LAND11 = P0006-LAND1.
  ENDIF.
*COMMUNICATION DETAILS
  RP_PROVIDE_FROM_LAST P0105 0010  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-EMAILID = P0105-USRID_LONG.
  ENDIF.
*DEPENDANT DETAILS
FORM FETCH_DATA_INFTY .
  DATA : ITAB1  TYPE  P0021-FAMSA VALUE 'DE01'.
  DATA : ITAB  TYPE  I.
  MOVE ITAB1 TO ITAB.
  RP_PROVIDE_FROM_LAST P0021 0001  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA = P0021-FAMSA.
    WA_EMP-FAVOR = P0021-FAVOR.
    WA_EMP-FANAM = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0002  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA1 = P0021-FAMSA.
    WA_EMP-FAVOR1 = P0021-FAVOR.
    WA_EMP-FANAM1 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0003  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA2 = P0021-FAMSA.
    WA_EMP-FAVOR2 = P0021-FAVOR.
    WA_EMP-FANAM2 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0004  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA3 = P0021-FAMSA.
    WA_EMP-FAVOR3 = P0021-FAVOR.
    WA_EMP-FANAM3 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0005  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA4 = P0021-FAMSA.
    WA_EMP-FAVOR4 = P0021-FAVOR.
    WA_EMP-FANAM4 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0006  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA5 = P0021-FAMSA.
    WA_EMP-FAVOR5 = P0021-FAVOR.
    WA_EMP-FANAM5 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0007  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA6 = P0021-FAMSA.
    WA_EMP-FAVOR6 = P0021-FAVOR.
    WA_EMP-FANAM6 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0008  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA7 = P0021-FAMSA.
    WA_EMP-FAVOR7 = P0021-FAVOR.
    WA_EMP-FANAM7 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0009  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA8 = P0021-FAMSA.
    WA_EMP-FAVOR8 = P0021-FAVOR.
    WA_EMP-FANAM8 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0010  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA9 = P0021-FAMSA.
    WA_EMP-FAVOR9 = P0021-FAVOR.
    WA_EMP-FANAM9 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0011  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA10 = P0021-FAMSA.
    WA_EMP-FAVOR10 = P0021-FAVOR.
    WA_EMP-FANAM10 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0012  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA11 = P0021-FAMSA.
    WA_EMP-FAVOR11 = P0021-FAVOR.
    WA_EMP-FANAM11 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0013  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA12 = P0021-FAMSA.
    WA_EMP-FAVOR12 = P0021-FAVOR.
    WA_EMP-FANAM12 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0014  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA13 = P0021-FAMSA.
    WA_EMP-FAVOR13 = P0021-FAVOR.
    WA_EMP-FANAM13 = P0021-FANAM.
  ENDIF.
*DATA : DE01  LIKE P0021-FAMSA.
*DATA : ITAB  TYPE  I.
*DATA : DE01(4)  TYPE  C.
  RP_PROVIDE_FROM_LAST P0021 ITAB  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA14 = P0021-FAMSA.
    WA_EMP-FAVOR14 = P0021-FAVOR.
    WA_EMP-FANAM14 = P0021-FANAM.
  ENDIF.
  APPEND WA_EMP TO IT_EMP.
  CLEAR WA_EMP.
ENDFORM.                    " FETCH_DATA_INFTY
*&      Form  DISPLAY_DATA
*       text
*  -->  p1        text
*  <--  p2        text
FORM DISPLAY_DATA .
  LOOP AT IT_EMP INTO WA_EMP.
    AT FIRST.
      WRITE : /02 'PERSONNELNO',
               15 'FIRSTNAME',
               25 'LASTNAME',
               35 'POSITION',
               45 'PERMANENT ADDRESS : ',
               65 'STREET',
               80 'POSTALCODE',
               93 'CITY',
              100 'COUNTRY',
              110 'EMAILID',
              130 'DEP TYPE : ',
              147 'DEP FIRSTNAME',
              160 'DEP LASTNAME'.
      ULINE.
    ENDAT.
    WRITE : /02  WA_EMP-PERNR,
             15  WA_EMP-NACHN,
             25  WA_EMP-VORNA,
             35  WA_EMP-PLANS,
             65  WA_EMP-STRAS,
             80  WA_EMP-PSTLZ,
             90  WA_EMP-ORT01,
            100  WA_EMP-LAND1,
            110  WA_EMP-EMAILID,
            137  WA_EMP-FAMSA,
            147  WA_EMP-FAVOR,
            160  WA_EMP-FANAM.
    WRITE :  /137  WA_EMP-FAMSA1,
              147  WA_EMP-FAVOR1,
              160  WA_EMP-FANAM1.
    WRITE :  /137  WA_EMP-FAMSA2,
              147  WA_EMP-FAVOR2,
              160  WA_EMP-FANAM2.
    WRITE :  /137  WA_EMP-FAMSA3,
              147  WA_EMP-FAVOR3,
              160  WA_EMP-FANAM3.
    WRITE :  /137  WA_EMP-FAMSA4,
              147  WA_EMP-FAVOR4,
              160  WA_EMP-FANAM4.
    WRITE :  /137  WA_EMP-FAMSA5,
              147  WA_EMP-FAVOR5,
              160  WA_EMP-FANAM5.
    WRITE :  /137  WA_EMP-FAMSA6,
              147  WA_EMP-FAVOR6,
              160  WA_EMP-FANAM6.
    WRITE :  /137  WA_EMP-FAMSA7,
              147  WA_EMP-FAVOR7,
              160  WA_EMP-FANAM7.
    WRITE :  /137  WA_EMP-FAMSA8,
              147  WA_EMP-FAVOR8,
              160  WA_EMP-FANAM8.
    WRITE :  /137  WA_EMP-FAMSA9,
              147  WA_EMP-FAVOR9,
              160  WA_EMP-FANAM9.
    WRITE :  /137  WA_EMP-FAMSA10,
              147  WA_EMP-FAVOR10,
              160  WA_EMP-FANAM10.
    WRITE :  /137  WA_EMP-FAMSA11,
              147  WA_EMP-FAVOR11,
              160  WA_EMP-FANAM11.
    WRITE :  /137  WA_EMP-FAMSA12,
              147  WA_EMP-FAVOR12,
              160  WA_EMP-FANAM12.
    WRITE :  /137  WA_EMP-FAMSA13,
              147  WA_EMP-FAVOR13,
              160  WA_EMP-FANAM13.
    WRITE :  /137  WA_EMP-FAMSA14,
              147  WA_EMP-FAVOR14,
              160  WA_EMP-FANAM14.
    ULINE.
    AT FIRST.
      WRITE : /45 'TEMPORARY ADDRESS : ',
               65 'STREET',
               87 'POSTALCODE',
              100 'CITY',
              120 'COUNTRY'.
      ULINE.
    ENDAT.
    WRITE : /65 WA_EMP-STRAS1,
             87 WA_EMP-PSTLZ1,
            100 WA_EMP-ORT011,
            120 WA_EMP-LAND11.
  ENDLOOP.
ENDFORM.                    " DISPLAY_DATA
Thanks & Regards
Jerry
Code Formatted by: Alvaro Tejada Galindo on Jun 5, 2008 11:36 AM

Hi Ira , thanks for your help.......... I checked it but still getting the same error as unable to interpret de04 as number....see the below code..........this I am executing for all active employees.....
regards
John
*& Report  ZABAP_HR                                                    *
REPORT  ZABAP_HR                                .
TABLES : PERNR.
INFOTYPES : 0000, 0001, 0002, 0006, 0105, 0021.
        STRUCTURES
TYPES : BEGIN OF TY_EMP,
        PERNR(20)   TYPE  C,        "PERSONNEL NO
        NACHN   TYPE  NACHN,        "FIRST NAME
        VORNA   TYPE  VORNA,        "LAST NAME
       ANSSA   TYPE  ANSSA,        "ADDRESS TYPE
        STRAS   TYPE  STRAS,        "STREET
        PSTLZ   TYPE  PSTLZ,        "POSTAL CODE
        ORT01   TYPE  ORT01,        "CITY
        LAND1   TYPE  LAND1,        "COUNTRY
        STRAS1   TYPE  STRAS,        "STREET
        PSTLZ1   TYPE  PSTLZ,        "POSTAL CODE
        ORT011   TYPE  ORT01,        "CITY
        LAND11   TYPE  LAND1,        "COUNTRY
        PLANS   TYPE  PLANS,        "POSITION
        EMAILID TYPE  COMM_ID_LONG, "EMAIL ID
        FAMSA   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR   TYPE  FAVOR,        "FIRST NAME
        FANAM   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA1   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR1   TYPE  FAVOR,        "FIRST NAME
        FANAM1   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA2   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR2   TYPE  FAVOR,        "FIRST NAME
        FANAM2   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA3   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR3   TYPE  FAVOR,        "FIRST NAME
        FANAM3   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA4   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR4   TYPE  FAVOR,        "FIRST NAME
        FANAM4   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA5   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR5   TYPE  FAVOR,        "FIRST NAME
        FANAM5   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA6   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR6   TYPE  FAVOR,        "FIRST NAME
        FANAM6   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA7   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR7   TYPE  FAVOR,        "FIRST NAME
        FANAM7   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA8   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR8   TYPE  FAVOR,        "FIRST NAME
        FANAM8   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA9   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR9   TYPE  FAVOR,        "FIRST NAME
        FANAM9   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA10   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR10   TYPE  FAVOR,        "FIRST NAME
        FANAM10   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA11   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR11   TYPE  FAVOR,        "FIRST NAME
        FANAM11   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA12   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR12   TYPE  FAVOR,        "FIRST NAME
        FANAM12   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA13   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR13   TYPE  FAVOR,        "FIRST NAME
        FANAM13   TYPE  PAD_NACHN,    "LAST NAME
        FAMSA14   TYPE  FAMSA,        "DEPENDENT TYPE
        FAVOR14   TYPE  FAVOR,        "FIRST NAME
        FANAM14   TYPE  PAD_NACHN,    "LAST NAME
        END OF TY_EMP.
       INTERNAL TABLES
DATA  :  IT_EMP  TYPE STANDARD TABLE OF TY_EMP.
       WORK AREAS
DATA : WA_EMP  TYPE  TY_EMP.
DATA : N TYPE I.
      START-OF-SELECTION
START-OF-SELECTION.
GET PERNR.
    SUBROUTINE TO FETCH DATA FROM INFOTYPES
  PERFORM FETCH_DATA_INFTY.
END-OF-SELECTION.
   SUBROUTINE TO DISPLAY DATA
  PERFORM DISPLAY_DATA.
*&      Form  FETCH_DATA_INFTY
      text
-->  p1        text
<--  p2        text
FORM FETCH_DATA_INFTY .
*PERSONAL DETAILS
  RP_PROVIDE_FROM_LAST P0002 SPACE  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-PERNR = P0002-PERNR.
    WA_EMP-VORNA = P0002-VORNA.
    WA_EMP-NACHN = P0002-NACHN.
  ENDIF.
*ORGANIZATIONAL DETAILS
  RP_PROVIDE_FROM_LAST P0001 SPACE  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-PLANS = P0001-PLANS.
  ENDIF.
*PERMANENT ADDRESS DETAILS
  RP_PROVIDE_FROM_LAST P0006 0001  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-STRAS = P0006-STRAS.
    WA_EMP-PSTLZ = P0006-PSTLZ.
    WA_EMP-ORT01 = P0006-ORT01.
    WA_EMP-LAND1 = P0006-LAND1.
  ENDIF.
*TEMPORARY ADDRESS DETAILS
  RP_PROVIDE_FROM_LAST P0006 0002  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-STRAS1 = P0006-STRAS.
    WA_EMP-PSTLZ1 = P0006-PSTLZ.
    WA_EMP-ORT011 = P0006-ORT01.
    WA_EMP-LAND11 = P0006-LAND1.
  ENDIF.
*COMMUNICATION DETAILS
  RP_PROVIDE_FROM_LAST P0105 0010  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-EMAILID = P0105-USRID_LONG.
  ENDIF.
*DEPENDANT DETAILS
DATA : ITAB1  TYPE  P0021-FAMSA VALUE 'DE01'.
  DATA : ITAB(4)  TYPE  C .
MOVE ITAB1 TO ITAB.
  RP_PROVIDE_FROM_LAST P0021 0001  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA = P0021-FAMSA.
    WA_EMP-FAVOR = P0021-FAVOR.
    WA_EMP-FANAM = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0002  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA1 = P0021-FAMSA.
    WA_EMP-FAVOR1 = P0021-FAVOR.
    WA_EMP-FANAM1 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0003  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA2 = P0021-FAMSA.
    WA_EMP-FAVOR2 = P0021-FAVOR.
    WA_EMP-FANAM2 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0004  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA3 = P0021-FAMSA.
    WA_EMP-FAVOR3 = P0021-FAVOR.
    WA_EMP-FANAM3 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0005  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA4 = P0021-FAMSA.
    WA_EMP-FAVOR4 = P0021-FAVOR.
    WA_EMP-FANAM4 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0006  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA5 = P0021-FAMSA.
    WA_EMP-FAVOR5 = P0021-FAVOR.
    WA_EMP-FANAM5 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0007  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA6 = P0021-FAMSA.
    WA_EMP-FAVOR6 = P0021-FAVOR.
    WA_EMP-FANAM6 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0008  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA7 = P0021-FAMSA.
    WA_EMP-FAVOR7 = P0021-FAVOR.
    WA_EMP-FANAM7 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0009  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA8 = P0021-FAMSA.
    WA_EMP-FAVOR8 = P0021-FAVOR.
    WA_EMP-FANAM8 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0010  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA9 = P0021-FAMSA.
    WA_EMP-FAVOR9 = P0021-FAVOR.
    WA_EMP-FANAM9 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0011  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA10 = P0021-FAMSA.
    WA_EMP-FAVOR10 = P0021-FAVOR.
    WA_EMP-FANAM10 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0012  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA11 = P0021-FAMSA.
    WA_EMP-FAVOR11 = P0021-FAVOR.
    WA_EMP-FANAM11 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0013  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA12 = P0021-FAMSA.
    WA_EMP-FAVOR12 = P0021-FAVOR.
    WA_EMP-FANAM12 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 0014  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA13 = P0021-FAMSA.
    WA_EMP-FAVOR13 = P0021-FAVOR.
    WA_EMP-FANAM13 = P0021-FANAM.
  ENDIF.
  RP_PROVIDE_FROM_LAST P0021 ITAB  PN-BEGDA  PN-ENDDA.
  IF PNP-SW-FOUND = 1.
    WA_EMP-FAMSA14 = P0021-FAMSA.
    WA_EMP-FAVOR14 = P0021-FAVOR.
    WA_EMP-FANAM14 = P0021-FANAM.
  ENDIF.
  APPEND WA_EMP TO IT_EMP.
  CLEAR WA_EMP.
ENDFORM.                    " FETCH_DATA_INFTY
*&      Form  DISPLAY_DATA
      text
-->  p1        text
<--  p2        text
FORM DISPLAY_DATA .
  LOOP AT IT_EMP INTO WA_EMP.
    AT FIRST.
      WRITE : /02 'PERSONNELNO',
               15 'FIRSTNAME',
               25 'LASTNAME',
               35 'POSITION',
               45 'PERMANENT ADDRESS : ',
               65 'STREET',
               80 'POSTALCODE',
               93 'CITY',
              100 'COUNTRY',
              110 'EMAILID',
              130 'DEP TYPE : ',
              147 'DEP FIRSTNAME',
              160 'DEP LASTNAME'.
      ULINE.
    ENDAT.
    WRITE : /02  WA_EMP-PERNR,
             15  WA_EMP-NACHN,
             25  WA_EMP-VORNA,
             35  WA_EMP-PLANS,
             65  WA_EMP-STRAS,
             80  WA_EMP-PSTLZ,
             90  WA_EMP-ORT01,
            100  WA_EMP-LAND1,
            110  WA_EMP-EMAILID,
            137  WA_EMP-FAMSA,
            147  WA_EMP-FAVOR,
            160  WA_EMP-FANAM.
    WRITE :  /137  WA_EMP-FAMSA1,
              147  WA_EMP-FAVOR1,
              160  WA_EMP-FANAM1.
    WRITE :  /137  WA_EMP-FAMSA2,
              147  WA_EMP-FAVOR2,
              160  WA_EMP-FANAM2.
    WRITE :  /137  WA_EMP-FAMSA3,
              147  WA_EMP-FAVOR3,
              160  WA_EMP-FANAM3.
    WRITE :  /137  WA_EMP-FAMSA4,
              147  WA_EMP-FAVOR4,
              160  WA_EMP-FANAM4.
    WRITE :  /137  WA_EMP-FAMSA5,
              147  WA_EMP-FAVOR5,
              160  WA_EMP-FANAM5.
    WRITE :  /137  WA_EMP-FAMSA6,
              147  WA_EMP-FAVOR6,
              160  WA_EMP-FANAM6.
    WRITE :  /137  WA_EMP-FAMSA7,
              147  WA_EMP-FAVOR7,
              160  WA_EMP-FANAM7.
    WRITE :  /137  WA_EMP-FAMSA8,
              147  WA_EMP-FAVOR8,
              160  WA_EMP-FANAM8.
    WRITE :  /137  WA_EMP-FAMSA9,
              147  WA_EMP-FAVOR9,
              160  WA_EMP-FANAM9.
    WRITE :  /137  WA_EMP-FAMSA10,
              147  WA_EMP-FAVOR10,
              160  WA_EMP-FANAM10.
    WRITE :  /137  WA_EMP-FAMSA11,
              147  WA_EMP-FAVOR11,
              160  WA_EMP-FANAM11.
    WRITE :  /137  WA_EMP-FAMSA12,
              147  WA_EMP-FAVOR12,
              160  WA_EMP-FANAM12.
    WRITE :  /137  WA_EMP-FAMSA13,
              147  WA_EMP-FAVOR13,
              160  WA_EMP-FANAM13.
    WRITE :  /137  WA_EMP-FAMSA14,
              147  WA_EMP-FAVOR14,
              160  WA_EMP-FANAM14.
    ULINE.
    AT FIRST.
      WRITE : /45 'TEMPORARY ADDRESS : ',
               65 'STREET',
               87 'POSTALCODE',
              100 'CITY',
              120 'COUNTRY'.
      ULINE.
    ENDAT.
    WRITE : /65 WA_EMP-STRAS1,
             87 WA_EMP-PSTLZ1,
            100 WA_EMP-ORT011,
            120 WA_EMP-LAND11.
  ENDLOOP.
ENDFORM.                    " DISPLAY_DATA

Similar Messages

  • ABAP HR- How to retrieve employees in past and future date

    I have a requirement in which i have to retrieve employees as mentioned below:
    User provides value for KEY DATE on selection screen ( I am using PNPCE selection screen).
    Now, i have to retrieve employees between date range (KEY DATE- 30 days ) and ( KEY DATE + 30 days) .
    example : user provides 31.10.2009 as KEY DATE on selection screen . Therefore, i have to process all employees within date range 01.10.2009 and 30.11.2009.
    I am using PNPCE logical database, Can anyone tell me how to achieve this by using GET PERAS event.
    Thanks in advance!
    Regards,
    Aleria

    PN-BEGDA and PN-ENDDA will initially be the same date, if this is a custom program then before you do the GET PERAS statement you can make PN-ENDDA = PN-BEGDA + 30.

  • Product Instance Registration Error Message: "System Failure: Error while retrieving xml file from database"

    Hi Planning installation Gurus,
    Did u get any luck to resolve this problem as i am also facing same problem "Error creating instance" during install of Planning 9.3.1. i tried 30-50 times reconfiguration every time same problem..
    OS: Vista Premium
    SQL Server 2005
    Essbase:9.3.1
    Error Message: "System Failure: Error while retrieving xml file from database"
    Details of error:::::::::::::::::::::::::
    at com.hyperion.planning.event.HspSysExtChangeHandler.run(Unknown Source
    Can not get JDBC connection for SYS external changed actions.
    Can not get JDBC connection.
    java.lang.NullPointerException
    at com.hyperion.planning.sql.HspSQLImpl.getConnection(Unknown Source)
    at com.hyperion.planning.event.HspSysExtChangeHandler.actionPoller(Unkno
    wn Source)
    at com.hyperion.planning.event.HspSysExtChangeHandler.run(Unknown Source
    Can not get JDBC connection for SYS external changed actions.
    Can not get JDBC connection.
    java.lang.NullPointerException
    at com.hyperion.planning.sql.HspSQLImpl.getConnection(Unknown Source)
    at com.hyperion.planning.event.HspSysExtChangeHandler.actionPoller(Unkno
    wn Source)
    at com.hyperion.planning.event.HspSysExtChangeHandler.run(Unknown Source
    Can not get JDBC connection for SYS external changed actions.
    Can not get JDBC connection.
    Pls provide Solution

    Hi John,
    though i am trying with SQl server authentication with different user but still status is same of planningSystemDB.properties
    SYSTEM_DB_DRIVER=hyperion.jdbc.sqlserver.SQLServerDriver
    SYSTEM_DB_URL=jdbc:hyperion:sqlserver://neeraj-PC:1433
    SYSTEM_DB_USER=windowsAuthentication
    SYSTEM_DB_PASSWORD=CAFBAEFNBGEAABHEDOADFKADACBGBIFHBLCDFBAFFH
    SYSTEM_DB_CATALOG=plandb
    SYSTEM_DB_TYPE=SQL
    INSTANCE=
    my steps:
    Using SQL Server Management Studio
    Changed Widows authentication to SQL server authentication mode
    In SQL Server Management Studio Object Explorer, right-click the server, and then click Properties.
    On the Security page, under Server authentication, select the new server authentication mode, and then click OK.
    In the SQL Server Management Studio dialog box, click OK to acknowledge the requirement to restart SQL Server.
    In SQL Server Management Studio Object Explorer, right-click the server, and then click Properties.
    On the Security page, under Server authentication, select the new server authentication mode, and then click OK.
    In the SQL Server Management Studio dialog box, click OK to acknowledge the requirement to restart SQL Server.
    To restart SQL Server from SQL Server Management Studio
    To enable the sa login by using Management Studio
    In Object Explorer, expand Security, expand Logins, right-click sa, and then click Properties.
    On the General page, you might have to create and confirm a password for the sa login.
    On the Status page, in the Login section, click Enabled, and then click OK.
    In Object Explorer, expand Security, expand Logins, right-click sa, and then click Properties.
    On the General page, you might have to create and confirm a password for the sa login.
    On the Status page, in the Login section, click Enabled, and then click OK.}}}
    anything else should i change.................

  • Product Instance Registration Error: "System Failure: Error while retrieving xml file from database"

    Hi S9 installation Gurus,
    Please try to resolve this long awaited issue with Planning installation as this is purely configuration related issue.
    Detail of Problem:-
    After Susessful configuration of
    1) Foundation Services (Hyperion Shared Services)
    2) Essbase administration services
    3) Essbase Server
    4) Hyperion reporting and analysis
    5) Planning -----> Product options, Register with shared services, configure database, deploy to application server (Appache)
    Error Point: when i tick ckeck box in front of Product instance registration
    click next
    create instance
    click next
    instance name-Plan1
    Web tier host name: my machine name (neeraj-pc, as i installed locally all component of hyperion)
    server port: 8300 (system suggesting)
    tick on active instance
    click next
    Error Pop Up "System Failure: Error while retrieving xml file from database"
    Details of PlanningSystemDB (file :- \Hyperion\common\config\PlanningSystemDB.properties)
    SYSTEM_DB_DRIVER=hyperion.jdbc.sqlserver.SQLServerDriver
    SYSTEM_DB_URL=jdbc:hyperion:sqlserver://neeraj-PC:1433
    SYSTEM_DB_USER=puser
    SYSTEM_DB_PASSWORD=GGAKFJ
    SYSTEM_DB_CATALOG=p1db
    SYSTEM_DB_TYPE=SQL
    INSTANCE=
    Note: puser (SQL Authenticated user)
    Thanks
    Kumar
    Edited by: user10385300 on Dec 4, 2008 5:44 AM

    This has been resolved at :- Product Instance Registration Error Message: "System Failure: Error while retrieving xml file from database"
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error while retrieving bulk data from mdm in staging server

    I am getting an error while retrieving bulk data from MDM. The error goes like this "NiRawReadError: An error occured when reading data from socket.".
    Could anyone please suggest me about the possible cause of this error. Please reply soon.
    Moderator message: network error, relation to ABAP development unclear, please search for available answers, check with system administrators, consult SAP service marketplace.
    Edited by: Thomas Zloch on Nov 22, 2010 5:16 PM

    Can you elaborate the thing... I don't think  /*+ APPEND */ this is working for me ,still I am getting same error.
    If you have any other suggestion,I would like to hear.
    Should i not put commit after some 500 records inserted ? As i am putting commit once after whole data gets inserted.

  • LSO_PSV2 - Create /w Resources freezing, ABAP runtime error, TIME_OUT

    Hello Experts,
    I have an individual user that is a part of a team that manages our LSO environment. He is experiencing a problem when performing a "Create with resources" on an instructor-led course.
    After choosing this option his session just spins but never enters the course details screen as expected.
    After anywhere from 15 - 30min the session returns an ABAP runtime error of "TIME_OUT". The error details state that the time out for ABAP programs is set to 3000sec (50min). The odd thing is that the program never reaches the 50 min marks but still throws the error.
    The user is able to select the "create w/o resources" option and get to the next screen as expected.
    I have run security traces (ST01) on his account and all looks fine (rc=0)
    He is one of several people that executes this transaction but is the only user that is receiving this issue. The team is assigned to the same position and shares the same PD profile. They share the same security roles and the same ABAP program is being run.These users are a third party vendor that remote in via citrix desktop.
    I have had our Basis team exam the ABAP runtime error and what is happening behind the scenes as this runs and they see no indication that the program is retrieving data even though it processes for a long time.
    Obviously this is a complex issue, I have searched for two weeks with no success. Any thoughts, suggestions are more than welcome at this point as the user is unable to perform needed work functions.

    Any solution on this one? I have the same problem with LSO_PSV2 :/

  • Getting error in 0001- Abap Runtime error

    Hi
    While doing the hiring action, when I save the details in Organizational Assignment (0001), I am getting an ABAP runtime error. I am working on IDES system ECC 6.0.
    (Runtime Errors  -- MOVE_TO_LIT_NOTALLOWED_NODATA)
    Regards,
    Chinmay

    Hi,
    First try to check the input data is correct.
    If this the first hiring - New employee or Org. Transfer. If org. transfer, need to check thoroughly the dates before the org. transfer. If it is a new hiring, then whether any of the employees hired preivously with the same hiring action, if so, then some data with the current one is improper. Please check and get back on the same.
    Regards
    Team Member.

  • Error while creating money market transaction - payment details not retrieving from BP master data.

    Hello friends
                      I have error while creating financial transaction. Payment details are not retrieving from BP master data to creating financial transaction screen.
    No payment details entered for transaction
    Message no. FTR0030
    Please advise to set off this.
    Thanks & Regards
    Swami

    Dear Swami,
    Please select one payment details in Business partner and use assigned tab from top selection parameter from standing instruction to assigned bank details to product type.
    It will open other window like above example for each product of treasury, then assign bank details to product. Once assigned and save.
    System will pick payment details in deal automatically based on business partner.
    Hope this solve your issue.
    Regards,
    Jain
    Message was edited by: Jain Varghese

  • ABAP Runtime Error while executing planning folder

    Hi experts.
    We have a situation where I can access our planning folders but that's not the case for one of our user. She encountered with an ABAP Runtime Error as follow:
    Appreciate if anyone can help me out with this.
    Runtime Error          RAISE_EXCEPTION
    Date and Time          20.04.2007 16:50:23
    ShrtText
    Exception condition "X_MESSAGE" raised.
    What happened?
    The current ABAP/4 program encountered an unexpected
    situation.
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Error analysis
    A RAISE statement in the program "SAPLRSSBR" raised the exception
    condition "X_MESSAGE".
    Since the exception was not intercepted by a superior program
    in the hierarchy, processing was terminated.
    Short description of exception condition:
    Cancel
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    function module from the display of active calls.
    How to correct the error
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "RAISE_EXCEPTION" C
    "SAPLRSSBR" or "LRSSBRU03"
    "RSSB_AUTHORITY_IOBJVL_CHECK"
    or
    "SAPLRSSBR" "X_MESSAGE"
    or
    "UPB_PM_CUST_START " "X_MESSAGE"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    System environment
    SAP Release.............. "640"
    Application server....... "S53KJ165"
    Network address.......... "10.1.53.165"
    Operating system......... "AIX"
    Release.................. "5.3"
    Hardware type............ "00C3A11F4C00"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 3
    Short dump setting....... "full"
    Database server.......... "S53KJ170"
    Database type............ "ORACLE"
    Database name............ "BWP"
    Database owner........... "SAPBWP"
    Character set............ "en_US.ISO8859-1"
    SAP kernel............... "640"
    Created on............... "Oct 29 2006 20:42:11"
    Created in............... "AIX 1 5 00538A4A4C00"
    Database version......... "OCI_920 "
    Patch level.............. "155"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
    10.2.0.."
    SAP database version..... "640"
    Operating system......... "AIX 1 5, AIX 2 5, AIX 3 5"
    Memory usage.............
    Roll..................... 16128
    EM....................... 16759712
    Heap..................... 0
    Page..................... 57344
    MM Used.................. 10079624
    MM Free.................. 2487240
    SAP Release.............. "640"
    User and Transaction
    Client.............. 350
    User................ "S51643"
    Language key........ "E"
    Transaction......... "UPSPL "
    Program............. "SAPLRSSBR"
    Screen.............. "SAPLUPB_PM_ALV 1000"
    Screen line......... 2
    Information on where terminated
    The termination occurred in the ABAP program "SAPLRSSBR" in
    "RSSB_AUTHORITY_IOBJVL_CHECK".
    The main program was "UPB_PM_CUST_START ".
    The termination occurred in line 416 of the source code of the (Include)
    program "LRSSBRU03"
    of the source code of program "LRSSBRU03" (when calling the editor 4160).
    Source Code Extract
    Line
    SourceCde
    386
    l_s_range-low  = l_activity.
    387
    APPEND l_s_range TO l_sx_auth_check_detail-range.
    388
    INSERT l_sx_auth_check_detail INTO TABLE <l_sx_auth_check>-auth_check_detail.
    389
    390
    CALL FUNCTION 'RSSB_AUTHORITY_IOBJVL_REDUCED'
    391
    EXPORTING
    392
    i_infocube              = g_sx_iobjvl_check-infocube
    393
    i_uname                 = l_uname
    394
    i_th_hierarchy          = g_sx_iobjvl_check-hierarchy
    395
    i_message               = i_message
    396
    i_activity_force_check  = i_activity_force_check
    397
    CHANGING
    398
    c_tsx_auth_check_detail = <l_sx_auth_check>-auth_check_detail
    399
    c_tx_no_auth            = l_tx_no_auth
    400
    c_ts_auth_tlevel        = e_ts_auth_tlevel
    401
    EXCEPTIONS
    402
    user_not_authorized     = 1
    403
    auth_check_failure      = 2
    404
    auth_check_error        = 3
    405
    inherited_error         = 4
    406
    x_message               = 5.
    407
    IF sy-subrc = 0.
    408
    REFRESH l_tx_no_auth.
    409
      CR 20050826 HW873685 SP29 Part 2/3 begin
    410
      SY-SUBRC = 2 means Auth-Obj missing in users profiles, we need this later
    411
    ELSEIF sy-subrc = 2.
    412
    ao_missing = rs_c_true.
    413
    e_subrc = 2.
    414
      CR 20050826 HW873685 SP29 Part 2/3 end
    415
    ELSEIF sy-subrc = 5.
    >>>>>
    RAISE x_message.
    417
    ELSE.
    418
    e_subrc = 2.
    419
    ENDIF.
    420
    421
      correct the kid now
    422
    LOOP AT l_tx_no_auth INTO l_sx_no_auth.
    423
    l_sx_no_auth-kid = <l_sx_auth_check>-kid.
    424
    APPEND l_sx_no_auth TO  e_tx_no_auth.
    425
    ENDLOOP.
    426
    427
    ENDLOOP.
    428
    429
    End LOOP: Check all SUBNR (FEMS)
    430
    431
    432
    CR 20050826 HW873685 SP29 Part 3/3 begin
    433
    If an Auth-Obj. is missing, no SUBNR can be authorized. Due to OLAP-logic
    434
    this means empty no_auth table
    435
    IF ao_missing = rs_c_true.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    5
    SY-INDEX
    1
    SY-TABIX
    0
    SY-DBCNT
    0
    SY-FDPOS
    1
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    210
    SY-UCOMM
    SELECT
    SY-TITLE
    Execute All Cost Element
    SY-MSGTY
    E
    SY-MSGID
    R7
    SY-MSGNO
    057
    SY-MSGV1
    0CO_AREA
    SY-MSGV2
    A
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    40 FUNCTION     SAPLRSSBR                           LRSSBRU03                             416
    RSSB_AUTHORITY_IOBJVL_CHECK
    39 FORM         SAPLRSDRC                           LRSDRCF15                             113
    AUTHORITY_CHECK
    38 FORM         SAPLRSDRC                           LRSDRCF27                              57
    BASIC_QUERY_DATA_GET_ROLAP
    37 FUNCTION     SAPLRSDRC                           LRSDRCU05                              44
    RSDRC_BASIC_QUERY_DATA_GET
    36 FUNCTION     SAPLRSDRC                           LRSDRCU15                             189
    RSDRC_BASIC_CUBE_DATA_GET
    35 FORM         SAPLRSDRC                           LRSDRCF25                             373
    DATA_GET
    34 FUNCTION     SAPLRSDRC                           LRSDRCU02                             249
    RSDRC_CUBE_DATA_GET
    33 FUNCTION     SAPLRSDRI                           LRSDRIU01                             352
    RSDRI_INFOPROV_READ
    32 FORM         /1SEM/UPCBW_350TMWPA01              UPC_BWINTERFC__FIX                    174
    DATA_READ
    31 FUNCTION     SAPLUPCBW                           LUPCBWU06                              56
    UPC_BW_DATA_READ
    30 FUNCTION     SAPLUPC1                            LUPC1U06                               67
    UPC_DATA_READ
    29 METHOD       /1SEM/CL_DATA_350TMWPA01======CP    UPC_DATA_READ_DB                       25
    /1SEM/CL_DATA_350TMWPA01=>IF_SEM_DATA_INTERNAL~READ_DB
    28 METHOD       /1SEM/CL_BUFFER_350TMWPA01====CP    UPC_BUFFER_GET                        167
    /1SEM/CL_BUFFER_350TMWPA01=>IF_SEM_BUFFER~GET
    27 METHOD       /1SEM/CL_BUFFER_350TMWPA01====CP    UPC_BUFFER_READ                         5
    /1SEM/CL_BUFFER_350TMWPA01=>IF_SEM_BUFFER~READ
    26 METHOD       /1SEM/CL_DATA_350TMWPA01======CP    UPC_DATA_READ                          46
    /1SEM/CL_DATA_350TMWPA01=>IF_SEM_DATA~READ
    25 FORM         45AJEHYBGH37F61DTX80Q9ZFP           UPP_PLAN                              395
    READ_TRANSACTION_DATA
    24 FORM         45AJEHYBGH37F61DTX80Q9ZFP           UPP_PLAN                              561
    GET_DATA
    23 FORM         45AJEHYBGH37F61DTX80Q9ZFP           UPP_PLAN                              800
    EC500_SELECT_DATABASE
    22 FORM         SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELF97                     575
    SELECT_DATABASE
    21 FORM         SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELF97                     464
    SELECT_AND_FIND_HEADER_COMBI
    20 FORM         SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELF97                     217
    LOGICAL_SCREEN_FILL_HEADER
    19 FORM         SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELF97                      60
    LOGICAL_SCREEN_FILL
    18 FUNCTION     SAPLUPP_PP_KERNEL                   LUPP_PP_KERNELU01                     114
    UPP_PP_KERNEL_CONSTRUCTOR
    17 METHOD       CL_UPB_PL_ALV=================CP    CL_UPB_PL_ALV=================CM01E   176
    CL_UPB_PL_ALV=>CONSTRUCTOR
    16 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF01                        623
    OUTPUT_CREATE
    15 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF01                        202
    OUTPUT_INIT
    14 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF01                       1062
    OUTPUT_PROCESS
    13 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF01                       1225
    OUTPUT_SWITCH_TO_LAYOUT
    12 FORM         SAPLUPB_PM_ALV                      LUPB_PM_ALVF05                        748
    INIT_CONTROLS
    11 MODULE (PBO) SAPLUPB_PM_ALV                      LUPB_PM_ALVO01                         13
    STATUS
    10 FUNCTION     SAPLUPB_PM_ALV                      LUPB_PM_ALVU01                         24
    UPB_PM_ALV_START
    9 METHOD       CL_UPB_PM_APPLC===============CP    CL_UPB_PM_APPLC===============CM00A    88
    CL_UPB_PM_APPLC=>EXECUTE_PM
    8 METHOD       CL_UPB_PM_ADMIN===============CP    CL_UPB_PM_ADMIN===============CM00L    76
    CL_UPB_PM_ADMIN=>PAI_ONE_NODE
    7 METHOD       CL_UPB_PM_ADMIN===============CP    CL_UPB_PM_ADMIN===============CM00L    23
    CL_UPB_PM_ADMIN=>PAI_ONE_NODE
    6 METHOD       CL_UPB_PM_ADMIN===============CP    CL_UPB_PM_ADMIN===============CM003   121
    CL_UPB_PM_ADMIN=>PAI
    5 FORM         SAPLUPB_PM                          LUPB_PMF04                             80
    USER_COMMAND_0210
    4 MODULE (PAI) SAPLUPB_PM                          LUPB_PMI04                             11
    USER_COMMAND_0210
    3 FUNCTION     SAPLUPB_PM                          LUPB_PMU22                             86
    UPB_PM_MAIN
    2 FORM         UPB_PM_CUST_START                   UPB_PM_START_ADMIN                    251
    PM_START
    1 EVENT        UPB_PM_CUST_START                   UPB_PM_START_ADMIN                     14
    START-OF-SELECTION
    Chosen variables
    Name
    Val.
    No.      40 Ty.          FUNCTION
    Name  RSSB_AUTHORITY_IOBJVL_CHECK
    I_ACTIVITY
    03
    33
    03
    I_ACTIVITY_FORCE_CHECK
    2
    0
    I_MESSAGE
    X
    5
    8
    I_SX_IOBJVL_CHECK
    ZCTMWMA05                                                                                ####
    5454544332222222222222222222222222222222222222222222222222222222222222222222222222222222220000
    A34D7D1050000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    I_UNAME
    S51643
    533333222222
    351643000000
    E_SUBRC
    0
    0000
    0000
    E_TS_AUTH_TLEVEL
    Table[initial]
    E_TX_NO_AUTH
    Table[initial]
    RSSB_C_AUTH_KEYFIGURE
    1KYFNM
    3454442222
    1B96ED0000
    SY-REPID
    SAPLRSSBR
    5454555452222222222222222222222222222222
    310C233220000000000000000000000000000000
    SYST-REPID
    SAPLRSSBR
    5454555452222222222222222222222222222222
    310C233220000000000000000000000000000000
    %_SPACE
    2
    0
    RS_C_RANGE_SIGN
    IE
    44
    95
    SY-SUBRC
    5
    0000
    0005
    L_TX_NO_AUTH
    Table[initial]
    SY-XFORM
    CONVERSION_EXIT
    444545544454545222222222222222
    3FE65239FEF5894000000000000000
    SYST
    0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.1. ###################################################à##############
    0000000000000000000000000002000000000000000000000000000000000000000000000000000E00000000000000
    0001000000000000000000000000000000000000000000010001000000010000000000000000000000000000000000
    L_SX_NO_AUTH
    ############ÿÿÿÿ
    000000000000FFFF
    000000000000FFFF
    L_SX_NO_AUTH-KID
    Table[initial]
    <L_SX_AUTH_CHECK>-KID
    Table IT_33029[1x4]
    FUNCTION-POOL=RSSBRDATA=G_SX_IOBJVL_CHECK-AUTH_CHECK[1]-KID
    Table reference: 2052
    TABH+  0(20) = 07000000908D2FD0000000000000000000000000
    TABH+ 20(20) = 00000804000081050000000100000004FFFFFFFF
    TABH+ 40(16) = 040002F1000003480001432821000000
    store        = 0x07000000908D2FD0
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 2052  (0x00000804)
    label        = 33029 (0x00008105)
    fill         = 1     (0x00000001)
    leng         = 4     (0x00000004)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000003
    occu         = 1     (0x00000001)
    access       = 2     (ItAccessSorted)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 2     (table_line)
    cmpMode      = 5     (cmpSingle)
    occu0        = 0
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x07000000908E0CC8
    pghook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    refCount     = 1     (0x00000001)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 1     (0x00000001)
    lineAlloc    = 1     (0x00000001)
    store_id     = 6998  (0x00001B56)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    No.      39 Ty.          FORM
    Name  AUTHORITY_CHECK
    I_TH_SFC
    Table IT_32090[14x128]
    FUNCTION=RSDRC_BASIC_CUBE_DATA_GETDATA=L_TH_SFC
    Table reference: 1757
    TABH+  0(20) = 070000009052D8F8070000009081372800000000
    TABH+ 20(20) = 000006DD00007D5A0000000E00000080FFFFFFFF
    TABH+ 40(16) = 040002DB000017C80010839401000000
    store        = 0x070000009052D8F8
    ext1         = 0x0700000090813728
    shmId        = 0     (0x00000000)
    id           = 1757  (0x000006DD)
    label        = 32090 (0x00007D5A)
    fill         = 14    (0x0000000E)
    leng         = 128   (0x00000080)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000099
    occu         = 16    (0x00000010)
    access       = 4     (ItAccessHashed)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 3     (user defined)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x0700000090811F18
    pghook       = 0x0000000000000000
    idxPtr       = 0x070000009052D950
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    store_id     = 6872  (0x00001AD8)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0700000090813588
    hsdir        = 0x0000000000000000
    ext2         = 0x0000000000000000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    CL_RSO_REPOSITORY=>P_C_BAL_LOG_SUBOBJEC_INST
    SY-REPID
    SAPLRSDRC
    5454554542222222222222222222222222222222
    310C234230000000000000000000000000000000
    L_S_RANGE-LOW
    1ROWCOUNT
    354544545222222222222222222222222222222222222222222222222222
    12F73F5E4000000000000000000000000000000000000000000000000000
    <L_S_SFK>-KYFNM
    1ROWCOUNT
    354544545222222222222222222222
    12F73F5E4000000000000000000000
    RSDRC_C_QUERYMODE-CUMULATIVE
    C
    4
    3
    S_S_COB_PRO
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    L_SX_SELDR-RANGE+8(8)
    Table IT_32110[2x136]
    FUNCTION-POOL=RSDRCFORM=AUTHORITY_CHECKDATA=L_SX_SELDR
    Table reference: 1902
    TABH+  0(20) = 0700000090813D10000000000000000000000000
    TABH+ 20(20) = 0000076E00007D6E0000000200000088FFFFFFFF
    TABH+ 40(16) = 040002DB00001AA00010254421000000
    store        = 0x0700000090813D10
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 1902  (0x0000076E)
    label        = 32110 (0x00007D6E)
    fill         = 2     (0x00000002)
    leng         = 136   (0x00000088)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000112
    occu         = 16    (0x00000010)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 2     (table_line)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x07000000908800F8
    pghook       = 0x0000000000000000
    idxPtr       = 0x0000000000000000
    refCount     = 1     (0x00000001)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    store_id     = 6876  (0x00001ADC)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    L_S_RANGE
    IEQ1ROWCOUNT
    4453545445452222222222222222222222222222222222222222222222222222222222222222222222222222222222
    95112F73F5E40000000000000000000000000000000000000000000000000000000000000000000000000000000000
    L_TSX_SELDR
    Table IT_32094[13x120]
    FUNCTION-POOL=RSDRCFORM=AUTHORITY_CHECKDATA=L_TSX_SELDR
    Table reference: 1870
    TABH+  0(20) = 0700000090813AE007000000908DF36800000000
    TABH+ 20(20) = 0000074E00007D5E0000000D00000078FFFFFFFF
    TABH+ 40(16) = 040002DB000018A8000C4B9C01000000
    store        = 0x0700000090813AE0
    ext1         = 0x07000000908DF368
    shmId        = 0     (0x00000000)
    id           = 1870  (0x0000074E)
    label        = 32094 (0x00007D5E)
    fill         = 13    (0x0000000D)
    leng         = 120   (0x00000078)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000103
    occu         = 12    (0x0000000C)
    access       = 2     (ItAccessSorted)
    idxKind      = 1     (ItIndexLinear)
    uniKind      = 1     (ItUnique)
    keyKind      = 3     (user defined)
    cmpMode      = 3     (cmpSingleMcmpU)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x070000009087FB40
    pghook       = 0x0700000090813D68
    idxPtr       = 0x0700000090813DA0
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 36    (0x00000024)
    lineAlloc    = 36    (0x00000024)
    store_id     = 6875  (0x00001ADB)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x07000000908DED00
    hsdir        = 0x0000000000000000
    ext2         = 0x0000000000000000
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    L_SX_SELDR
    00001KYFNM                          ########300   0     ####ÿÿÿÿ####  0 ########        ####ÿÿ
    333334544422222222222222222222222222000000003332223222220000FFFF0000223200000000222222220000FF
    00001B96ED00000000000000000000000000000000003000000000000000FFFF0000000000000000000000000000FF
    G_RUNNING
    0
    0000
    0000
    L_BASICCUBE
    ZCTMWMA05
    545454433222222222222222222222
    A34D7D105000000000000000000000
    L_TH_FREE
    Table IT_32093[6x30]
    FUNCTION-POOL=RSDRCFORM=AUTHORITY_CHECKDATA=L_TH_FREE
    Table reference: 1763
    TABH+  0(20) = 0700000090813760000000000000000000000000
    TABH+ 20(20) = 000006E300007D5D000000060000001EFFFFFFFF
    TABH+ 40(16) = 040002DB00001B800010831401000000
    store        = 0x0700000090813760
    ext1         = 0x0000000000000000
    shmId        = 0     (0x00000000)
    id           = 1763  (0x000006E3)
    label        = 32093 (0x00007D5D)
    fill         = 6     (0x00000006)
    leng         = 30    (0x0000001E)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000116
    occu         = 16    (0x00000010)
    access       = 4     (ItAccessHashed)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 2     (table_line)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x07000000908137B8
    pghook       = 0x0000000000000000
    idxPtr       = 0x07000000908139B0
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    store_id     = 6874  (0x00001ADA)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    SYST-REPID
    SAPLRSDRC
    5454554542222222222222222222222222222222
    310C234230000000000000000000000000000000
    L_SX_IOBJVL_CHECK
    ZCTMWMA05                                                                                ####
    5454544332222222222222222222222222222222222222222222222222222222222222222222222222222222220000
    A34D7D1050000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    L_ACTIVITY
    03
    33
    03
    SY-UNAME
    S51643
    533333222222
    351643000000
    S_MULTICUBE
    222222222222222222222222222222
    000000000000000000000000000000
    E_SUBRC
    0
    0000
    0000
    %_VIASELSCR
    0
    4
    S_CHANM
    222222222222222222222222222222
    000000000000000000000000000000
    I_RAISE_EXCEPTION
    X
    5
    8
    RS_C_TRUE
    X
    5
    8
    SCREEN
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    No.      38 Ty.          FORM
    Name  BASIC_QUERY_DATA_GET_ROLAP
    E_T_DATA
    Table[initial]
    E_END_OF_DATA
    2
    0
    C_FIRST_CALL
    X
    5
    8
    S_S_QPARAM
    XX 0 ##ÿÿÿÿ####DB-VIEW                                               R ###dABAP-TABLE
    25523200FFFF0000442544522222222222222222222222222222222222222222222222520006444525444422222222
    08800000FFFF000042D6957000000000000000000000000000000000000000000000002000041210D412C500000000
    C_S_QPARAM-AUTHORITY_CHECK
    R
    5
    2
    RSDRC_C_AUTHCHK-NONE
    2
    0
    RSJOBINFO
    00000000000000                                  ####
    222222222222222222222222222222223333333333333322222222222222222222222222222222220000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RSD_C_DPANM
    0REQUID                       0CHNGID                       0RECORDTP                     0IOB
    3545544222222222222222222222223444444222222222222222222222223544454552222222222222222222223444
    025159400000000000000000000000038E794000000000000000000000000253F244000000000000000000000009F2
    SPACE
    2
    0
    I_BASICCUBE
    ZCTMWMA05
    545454433222222222222222222222
    A34D7D105000000000000000000000
    I_TH_SFC
    Table IT_32090[14x128]
    I_TH_SFK
    Table IT_32091[2x128]
    FUNCTION=RSDRC_BASIC_CUBE_DATA_GETDATA=L_TH_SFK
    Table reference: 1767
    TABH+  0(20) = 0700000090887AC00700000090813CD800000000
    TABH+ 20(20) = 000006E700007D5B0000000200000080FFFFFFFF
    TABH+ 40(16) = 040002DB000018380010839421000000
    store        = 0x0700000090887AC0
    ext1         = 0x0700000090813CD8
    shmId        = 0     (0x00000000)
    id           = 1767  (0x000006E7)
    label        = 32091 (0x00007D5B)
    fill         = 2     (0x00000002)
    leng         = 128   (0x00000080)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000101
    occu         = 16    (0x00000010)
    access       = 4     (ItAccessHashed)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 1     (ItUnique)
    keyKind      = 3     (user defined)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x0700000090884C90
    pghook       = 0x0000000000000000
    idxPtr       = 0x0700000090827A98
    refCount     = 1     (0x00000001)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x00000010)
    lineAlloc    = 16    (0x00000010)
    store_id     = 6857  (0x00001AC9)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x0700000090813B38
    hsdir        = 0x0000000000000000

    Have you check or trace Authorization??
    In DUMP:
    Information on where terminated
    The termination occurred in the ABAP program "SAPLRSSBR" in
    "RSSB_AUTHORITY_IOBJVL_CHECK".
    The main program was "UPB_PM_CUST_START ".

  • ABAP Runtime error while activating Update rules.

    Hi Gurus,
    Actually we are in NW 2004's SP9.
    While activating the update rules of cube "0PY_PPC01" it is going to ABAP runtime error. It is giving the key words like "MESSAGE_TYPE_X"
    "%_T005K2" or "INSTANTIATE". And i apply NOTEs also i am unable to fix it.
    Can any one give  correct NOTE number that can fix it or any suggestions.
    Thanks in advance.
    Thanks
    Raju.k

    Hi Sven,
    Now we are also in SP11, But the thing is all the other UR are working fine Except
    this UR. Even there is no perticular NOTE number for this.
    Thanks
    Raju.k

  • ABAP Runtime error in FM BBP_VENDOR_GET_DATA2  in R/3

    Hi Gurus
    We are receiving nearly 1000 ABAP runtime error in the Functional Module BBP_VENDOR_GET_DATA2  in the user ID as RFCPROD in the ST22 and in the dump details as soon below.
       Possible error causes:
        o The maximum size of an SQL statement was exceeded.
        o The statement contains too many input variables.
        o The input data requires more space than is available.
    And this is happening in this place.
    48|            IF NOT LRT_ADDRNR[] IS INITIAL.                                                           |
    |>>>>>|    SELECT * APPENDING TABLE ITAB_ADRC FROM ADRC .
    We enter the T-code XK01, XK02 and XK03 , then enter the details of vendor , press enter immediately one count is increasing in the ST22.
    Please any one can suggest .
    Thanks & Regards
    Sada

    Hi Sadasivam Soliyappan,
    Could you please share the SAP Note number with us urgently?
    We have been encountered with the same problem unfortunately.
    Thanks in advance.
    Dolunay.

  • Abap runtime error CL_AI_CRM_OBJECT_LMDB============CP

    Dear All,
    We are setting up Solman 7.1 sp08 for VAR scenario.
    As we faced some issues with duplicated ibase components SAP suggested us to implement note 2012029.
    After following step by step and running the reporrts mentioned in above note like report AI_CRM_PRODUCT_DELETE we started getting an abap runtime error.
    SAP is telling us to re implement the note but it does not resolve our issue.
    Now we are unable to create incidents, or to run trx ib_gen.
    Because of this, job refresh_admin_data_from_support is getting cancelled.
    find attached screenshot showing dump.
    all suggestions or comments are welcome!
    regards,
    German

    Hi German,
    Looks like your report CL_AI_CRM_OBJECT_LMDB============CP is corrupted. Can you try restoring this program to original version by going to Version management in SE38?
    Regards,
    Vivek

  • Retropay by element run Errors for one employee

    When i am running retropay for 3711 employees one of them errors out and the retropay by element process ends as Incomplete.
    The following is the error for the assignment:
    Error ORA-01427: single-row subquery returns more than one row has occurred in table pay_element_entries_f at location 4502
    Cause: an oracle error has occurred. The failure was reported on table pay_element_entries_f at location
    The log file for that it appears as follows:
    Payroll: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    RETROELE module: RetroPay By Element
    Current system time is 15-APR-2010 16:26:51
    ===============================================================================
    Oracle Human Resources Generic Process
    Started at : 15-APR-2010 16:26:51
    Chunk Size : 20
    Threads : 1
    Logging Category :
    User Messaging : N
    Interlock : N
    Trace : N
    RR Buffer Size : 500
    RRV Buffer Size : 500
    Bal Buffer Size : 500
    EE Buffer Size : 500
    Logging Area :
    Assignment ID for Start:
    Assignment ID for End o:
    HR_6881_HRPROC_ORA_ERR
    SQLERRMC ORA-01427: single-row subquery returns more than one row
    SQL_NO 4502
    TABLE_NAME pay_element_entries_f
    APP-PAY-06881: Error ORA-01427: single-row subquery returns more than one row
    has occurred in table pay_element_entries_f at location 4502
    Cause: an oracle error has occurred. The failure was reported on table pay_element_entries_f at location 4502 with the error text ORA-01427: single-row subquery returns more than one row
    Action: Please contact your support representative.
    Ended processing at : 15-APR-2010 21:50:07
    Total Assignment count : 3711
    Total Action count : 3711
    Successfully processed : 3710
    Skipped : 0
    Unprocessed : 0
    Errored : 1
    ===============================================================================
    PL/SQL Output
    PL/SQL Output
    Executing request completion options...
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 595012      
    Number of copies : 1      
    Printer : noprint
    APP-FND-00092: Routine PRINT_OUTPUT cannot find the file /data/oracle/PRD/inst/apps/PRD_hrmsprod/logs/appl/conc/out/o595012.out to print.
    Check if the file exists. Check if the person who started the concurrent manager has read privileges on the directory and on the file. Contact your system administrator to assign read privileges.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 15-APR-2010 21:50:08
    Please can some one help me to troubleshoot so that i can rectify this error for 1 employee?
    Edited by: 594647 on Apr 16, 2010 10:46 AM

    you can delete the retro assignment action for the moment, so you can launch the run for all employees.
    As such, you have some more time to debug the issue.
    I would activate some payroll tracing, so you know which fast formula throws this error. And then you should dig further, so you can identify the sql retruning multiple rows.
    Or you do a sql*trace. That one will also point you to the offensive sql.

  • ABAP runtime error while doing ME21N, ME22N, ME23N, ME51N,ME52N, ME53N

    Dear All Expert,
    I am facing problem while doing ME21N, ME22N, ME23N, ME51N,ME52N, ME53N,
    Please find the below ABAP Runtime Error.
    Runtime Errors         LOAD_TYPE_VERSION_MISMATCH
    Date and Time          10.02.2011 11:13:07
    Short text
         Change of a Dictionary structure at runtime of a program.
    What happened?
         Runtime error
         The current ABAP program "CL_IM_WRF_MM_PROC_PO==========CP" had to be
          terminated because one
         of the statements could not be executed at runtime.
    What can you do?
         Restart the program.
         If the error persists, contact your SAP administrator.
         You can use the ABAP dump analysis transaction ST22 to view and manage
         termination messages, in particular for long term reference.
    Error analysis
         The ABAP runtime system detected that the Dictionary-type "WRF_POHF_KOMP_STY"
          changed
         during the flow of the transaction.
         As the type was already used in the old version
         and in the new type should be used in the same transaction in the new
          version, the transaction had to be cancelled to avoid inconsistencies.
    How to correct the error
        Try to restart the program.
    System environment
        SAP-Release 700
        Application server... "iqe"
        Network address...... "172.25.0.85"
        Operating system..... "Linux"
        Release.............. "2.6.9-55.ELsmp"
        Hardware type........ "x86_64"
        Character length.... 16 Bits
        Pointer length....... 64 Bits
        Work process number.. 0
        Shortdump setting.... "full"
        Database server... "iqe"
        Database type..... "ORACLE"
        Database name..... "IQE"
        Database user ID.. "SAPSR3"
        Terminal................. "MUMJML5727"
        Char.set.... "C"
        SAP kernel....... 700
        created (date)... "Dec 26 2010 20:17:07"
        create on........ "Linux GNU SLES-9 x86_64 cc3.3.3"
        Database version. "OCI_102 (10.2.0.2.0) "
    Patch level. 285
    Patch text.. " "
    Database............. "ORACLE 10.1.0.., ORACLE 10.2.0.., ORACLE 11.2...*"
    SAP database version. 700
    Operating system..... "Linux 2.6"
    Memory consumption
    Roll.... 16192
    EM...... 25139088
    Heap.... 0
    Page.... 40960
    MM Used. 8038136
    MM Free. 4528408
    User and Transaction
    Client.............. 600
    User................ "JKMM"
    Language key........ "E"
    Transaction......... " "
    Transactions ID..... "4D524AD1FD7A42F9E1000000AC190055"
    Program............. "CL_IM_WRF_MM_PROC_PO==========CP"
    Screen.............. " "
    Screen line......... " "
    Information on where terminated
        The termination occurred during generation of the ABAP/4 program
         "CL_IM_WRF_MM_PROC_PO==========CP".
        The termination occurred in line 213
        of the source code of program "CL_IM_WRF_MM_PROC_PO==========CM007" (when
         calling the editor 2130).
    Source Code Extract
    Line  SourceCde
      183   DATA: l_flag TYPE wrf_pbas_boolean.
      184
      185   CALL FUNCTION 'WRF_POHF_MSG_READ_PREVIEW_FLAG'
      186     IMPORTING
      187       e_preview_flag = l_flag.
      188
      189   IF NOT l_flag IS INITIAL.
      190
      191     DATA: l_header TYPE REF TO cl_po_header_handle_mm.
      192
      193     MOVE im_header ?TO l_header.
      194
      195     CALL METHOD l_header->if_output_mm~preview( ).
      196
      197     CALL FUNCTION 'WRF_POHF_MSG_RESET_PREV_FLAG'.
      198
      199 ***$ Widening Cast for printing information.
      200 **    CALL FUNCTION 'WRF_POHF_STORE_PRINT_INFO_SET'
      201 **      EXPORTING
      202 **        im_header = l_header.
      203
      204 * Printing Preview
      205 * IF NOT gv_preview IS INITIAL.
      206 *    CALL METHOD l_header->if_output_mm~overview( ).
      207 *    CALL METHOD l_header->if_output_mm~preview( ).
      208 * clear gv_preview.
      209   ENDIF.
      210
      211 *  ENDIF.
      212
    >>>>> ENDMETHOD.
    Internal notes
        The termination was triggered in function "ab_RxDdicStruShareFailed"
        of the SAP kernel, in line 2539 of the module
         "//bas/700_REL/src/krn/runt/abtypload.c#11".
        The internal operation just processed is " ".
        Internal mode was started at 20110210111306.
        Name of the changed type......: "WRF_POHF_KOMP_STY"
        New version of the type.......: 20070508193207
        Old version of the type.......: 20070508193207
        New user......................: "Type" "WRF_POHF_KOMP_STY"
        Version of the new user.......: 20070508193207
        Old user......................: "???" "???"
        Version of the old user.......: "???"
    Active Calls in SAP Kernel
    Lines of C Stack in Kernel (Structure Differs on Each Platform)
    (CTrcStack2+0x78)[0x6cbb78]
    (CTrcStack+0xb)[0x6cc17b]
    (ab_rabax+0x3be5)[0xb8d985]
    (_Z24ab_RxDdicStruShareFailedPKtm4RUDIS0_S1_S0_+0x163)[0xb16823]
    (_Z19ab_GetDdicTypeIndexPKtm4RUDI+0x1f6)[0xb0dbb6]
    (_Z11ab_LoadViewPtjPKtPK11PROGRAMHEADPj+0x27e)[0xb16ede]
    (_Z18ab_GetDdicTypeLoad4RUDI+0x6e)[0xb1705e]
    (ab_GetView+0xc1d)[0xb0ee1d]
    (_Z20CompressInitRcByDatajPK6CG_DIRjjS1_jj4RUDIPKhj+0x60d)[0xe32b2d]
    (_Z21cg_CompressStackFrameP4TRIGjj+0x169)[0xe33399]
    (_Z8cg_blkleP3ENV+0x75f)[0xe4779f]
    (_Z9sc_cblklePKt8ENV_KINDP7SC_INFO+0x394)[0xe90024]
    (sc_blkle+0xdd)[0xec6e4d]
    (rs_oper_abap1729+0x37)[0x10eb237]
    (rs_expan_abap+0xa1996)[0xfd7a2a]
    (_Z8sc_expanj+0x76d)[0xe1d55d]
    (_Z5parsejPi+0x258)[0xe19998]
    (sc_check+0xb9c)[0xe1857c]
    (sc_inclu+0x5fa)[0xe0d50a]
    (rs_oper_abap2160+0x3a)[0x1115d6a]
    (rs_expan_abap+0xcd41d)[0x10034b1]
    (_Z8sc_expanj+0x76d)[0xe1d55d]
    (_Z5parsejPi+0x258)[0xe19998]
    (sc_check+0xb9c)[0xe1857c]
    (sc_checkStart+0x41)[0xe1ac51]
    (cg_generate+0xb65)[0xe57755]
    (ab_gabap+0x14a)[0xb01a5a]
    (dy_gen_abap+0x63c)[0x74428c]
    (ab_genprog+0x13d3)[0xb03d13]
    (_Z17ab_LoadProgOrTrfoPKtjPj+0xb56)[0x8f9ab6]
    (_Z11ab_LoadProgPKtj+0x11)[0x8f9ca1]
    (_Z15LoadGlobalClassPKtjjj9ClasState+0x24c)[0x958c2c]
    (_Z11FillCfixIntPK4CREFP4CFIXjj9ClasState+0x214)[0x957404]
    (_Z11ab_FillCfixtj+0x65)[0x957ae5]
    (_Z26ab_CrefToCladId_ActivateOKtPh+0x7d)[0x957b6d]
    (_Z8ab_jaboov+0x623)[0x959793]
    (_Z8ab_extriv+0x607)[0x8ba9c7]
    (_Z9ab_xeventPKt+0x1c1)[0xa1c021]
    (_Z8ab_triggv+0x9c)[0xa1c77c]
    (ab_run+0x97)[0xbde5c7]
    (N_ab_run+0x9)[0x736359]
    (dynpmcal+0x669)[0x7333b9]
    (dynppai0+0x8eb)[0x734d9b]
    (dynprctl+0x3e9)[0x733db9]
    (dynpen00+0x4a5)[0x726eb5]
    (Thdynpen00+0x359)[0x541bd9]
    (TskhLoop+0xc49)[0x54d999]
    (ThStart+0x20f)[0x55b29f]
    (DpMain+0x2da)[0x4bd49a]
    (nlsui_main+0x9)[0x4910c9]
    (main+0x33)[0x491103]
    /lib64/tls/libc.so.6(__libc_start_main+0xdb)[0x3cde51c3fb]
    Please help me to resolve the issue.
    Thanks & Regards
    SKK

    read this part again:  The ABAP runtime system detected that the Dictionary-type "WRF_POHF_KOMP_STY" changed during the flow of the transaction. As the type was already used in the old version and in the new type should be used in the same transaction in the new version, the transaction had to be cancelled to avoid inconsistencies. How to correct the error Try to restart the program
    how often had you restarted ME21N before you posted this message?
    In best case this message appears only once, because the program / or dictionary was changed while you executed ME21N
    If many times, then contact your ABAPer, because then he probably did not transport all objects that were changed, or the objects have to be regenerated in your system.

  • Error while retrieving a password for credential

    Hi All,
    I am getting following error while deploying ADS application.
    Please help me to resolve it.
    NWDS 04s.
    Adobe Version 7.02
    error:
      com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntimeException: ADS Render Exception occured. Append "sap-wd-errorPdf=true" to the URL and access the application once again. This time you will get an error PDF. Save the error PDF on the file system. This is a helpful attachment in case of an OSS message. com.adobe.ProcessingError: Error while retrieving a password for credential: ReaderRights: java.lang.Exception: Could not retrieve a password for credential: ReaderRights Exception Stack Trace: com.adobe.ProcessingError: Error while retrieving a password for credential: ReaderRights: java.lang.Exception: Could not retrieve a password for credential: ReaderRights at com.adobe.ads.request.UsageRights.execute(UsageRights.java:202) at com.adobe.BaseADSRequest.doWork(BaseADSRequest.java:111) at com.adobe.AdobeDocumentServicesWorker.execute(AdobeDocumentServicesWorker.java:758) at com.adobe.AdobeDocumentServicesEJB.processRequest(AdobeDocumentServicesEJB.java:130) at com.adobe.AdobeDocumentServicesEJB.rpData(AdobeDocumentServicesEJB.java:108) at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157) at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79) at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92) at SoapServlet.doPost(SoapServlet.java:51) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at

    Hi,
    did you provide your credential during the Adobe installation process (as far as I know, you have to install the Adobe Document and not only deploy these).
    You have to provide the credential and enter a password during the process, or it does not work.
    The last info I have is that you get credentials by entering a customer request at SAP, component BC-SRV-FP, but that might have changed...
    Kind regards,
    Carl

Maybe you are looking for

  • Very poor wifi

    Got this yoga tab 2 1050f for my wife for Christmas  Shes been having WiFi problems with it for awhile now so over the last couple weeks I've been using it I run a speed check on it and its good but opening webpages is very slow over 10seconds a lot

  • Cd-rom burner not working after update

    did a -Syu and installed the most current kernel 2.6.16.1-8, rebooted and now my cd burner isnt recognized. the window that opens when you put a cd in that asks what you want to do doesnt open and k3b no longer sees the drive. did i miss something on

  • Create DLL from labview and calling it from other application

    I have an application built using Labview. I wanted to create DLL out of it. The application has two String inputs start and stop buttons and two status indicators. 1. How to itegrate start and stop buttons from function prototype? 2. Does Labview cr

  • In InDesign CS5 Vector Drop Shadows Flattening at 150dpi

    If I have an InDesign Vector Element (Box or Type) with a drop shadow effect, that is not interacting with an image, I am getting 150dpi or under image created for the shadow when flattened (I am exporting a PDF1.3 out of InDesign for the flattening)

  • Get Time only

    I want to get time only out Timestamp. but no i getting the date and Time. i only want to get e.g 22:34.00 Here are my source code <code> Date mydate; String myString; TimestampmyTime = new Timestamp(mydate.getTime()); myString = DateFormat.getDateTi