RSBBS: field symbol not yet assigned

Hello Gurus,
I have a RRI for a query jumping to another query.
But after doing some minor changes to the child and parent query, while executing the jump, an error message comes
' Fiel;d symbol not yet assigned'.
Its details mention '<internal error> Cannot determine text element for the current query;.
Please guide me as to what can be the issue and how to resolve it. I am new to RSBBS.
Regards,
NIKEKAB

Hello,
I have changed the assignment details as the type mentioned for a field was Table field (used for non BW jumps), to Generic.
This helped me see the receiver query name when I click on GOTO.
But even now I get the same error i.e. Field symbol not yet assigned.
I went through some other posts but did not find answer to my doubt.
Any other solution.
Regards,
NIKEKAB.

Similar Messages

  • GETWA_NOT_ ASSIGNED, Field symbol not yet assigned yet.

    Hi,
    I am working in an Upgrade project,, from 4.6 version to ECC version.
    A program is going into a short dump.
    On debugging th program, I identified that there is a problem with a function module which triggers a standard include and this is where i am getting the error. the function module is supposed to populate a internal table is not populating it. the dump shows that the error is there in the assign statement shown below.
    <fm03> type any.
    <field> type any.
    assign <fm03> to <field>.
    can anyone help me out with this?

    if the program is a custom one then after assignment pl. check sy-subrc value
    like:
    assign <fm03> to <field>.
    if sy-subrc = 0.
    Normal processing
    else.
    Error handling here*
    endif.
    And for std. program search for notes if u think it is a bug in the program.
    Regards,
    Joy.

  • Short dump  GETWA_NOT_ASSIGNED field symbol not been assigned

    Hi Gurus,
    I am calling a RFC  BAPI_PBSRVAPS_CHANGEKEYFIGVAL2 from R/3 sytem to SCM 5.0.
    Acutally this FM BAPI_PBSRVAPS_CHANGEKEYFIGVAL2 not available in R/3 system.
    So i am using scm destination and calling above FM directly from R/3 but i am getting the short dump
    in SCM system as GETWA_NOT_ASSIGNED field symbol not been assigned.
    Can you pls check and advise.
    Best Regards,
    Radhakrishna.

    Hi Radhakrishna,
            It looks like you have a discrepancy in the planning area with respect to keyfigure. Some thing like the key figure description is not synchronized between live cache and db.
    I suggest you log onto your SCM system, run the program /SAPAPO/TS_LCM_CONS_CHECK on your planning area with correct error option.
    Please let me know if this works.

  • Issue with field symbol not assigned in SMQ2

    We are facing an issue with an error in SMQ2.
    The error is "field symbol not assigned". There is also short dump in ST22.
    I have read the previous forum threads and it talks about going into the debugger mode.
    However, which is the program to be debugged ?
    How do I navigate from SMQ2 to the ABAP program.
    Kindly let me know.
    Regards,
    Sanjay

    Hi Sanjay,
    You need to debug program RSTRFCM3. This is the program which drives SMQ2.
    However just check if there are any support pack upgrades to the program recently since this is a standard program.
    Regards
    Abhii

  • Error in drill down of  RRI-  Field Symbol not assigned

    Dear all,
    I am trying to call a SAP transaction on click of the jump target. I have created the jump target in the following way ..let me know if I am wrong ..
    Goto RBBS transaction . Specifed the sender report as 0SD_C01/0SD_C01_Q025 (Sales Volume Analysis) and target as r/3 client 210 and specifed the transaction Va01 as target.
    But when I executed the report and did a right click ..on the context menu I coudl see the desription of the Jump target I have created and upon clicking I received a error ..field symbol not assigned ..
    Can any let me know the cause of the error ..and how to resolve.. do i need to give any extra parameters while creating jump target..
    Thanks,
    Gupta

    Hello Gayathri,
    One you got the dump you can select debugger button in top-left corner screen.
    That will take you to the execution snap shot where you can check all the field symbols and find out which one is not
    assigned. accordingly you can find out what is missing on input side to avoid this dump.
    Hope this helps!
    Thanks,
    Augustin.

  • Field symbol not assignned

    Hi,
       i have created my own field catalog and assign to
    reuse_alv_list_display fucntion module but i am getting execption 'field symbols not assigned' can any body help me in solving this problem
    pls give a simple alv program usign own field catlog and list display.

    Code for own catalog
    *& Report  ZMBKN_ALV_FIELDCATALOG
    REPORT  ZMBKN_ALV_FIELDCATALOG.
    TYPE-POOLS SLIS.
    DATA : BEGIN OF ITAB OCCURS 0,
           MATNR TYPE MARA-MATNR,
           MTART TYPE MARA-MTART,
           MATKL TYPE MARA-MATKL,
           TEST TYPE C,
           END OF ITAB.
    SELECTION-SCREEN BEGIN OF BLOCK B.
    PARAMETERS : VALUE TYPE I DEFAULT 20,
                 R_VALUE1 RADIOBUTTON GROUP G,
                 R_VALUE2 RADIOBUTTON GROUP G.
    SELECTION-SCREEN END OF BLOCK B.
    DATA : IT_FCAT TYPE SLIS_T_FIELDCAT_ALV,
           WA_FCAT TYPE SLIS_FIELDCAT_ALV,
           IT_HEAD TYPE SLIS_T_LISTHEADER,
           WA_HEAD TYPE SLIS_LISTHEADER,
           WA_LAYOUT TYPE SLIS_LAYOUT_ALV.
    START-OF-SELECTION.
           PERFORM FORM_LAYOUT.
           PERFORM FIELDCATALOG_DATA.
           PERFORM GET_DATA.
    IF R_VALUE1 = 'X'.
           PERFORM DISPLAY_LIST.
    ELSEIF R_VALUE2 = 'X'.
           PERFORM DISPLAY_GRID.
    ENDIF.
    FORM GET_DATA.
           SELECT * FROM MARA INTO CORRESPONDING FIELDS OF TABLE ITAB UP TO 30 ROWS.
    ENDFORM.
    FORM DISPLAY_LIST .
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM             = SY-REPID
      I_CALLBACK_PF_STATUS_SET       = ' '
      I_CALLBACK_USER_COMMAND        = ' '
      I_STRUCTURE_NAME               =
      IS_LAYOUT                      =
       IT_FIELDCAT                    = IT_FCAT
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
      I_SAVE                         = ' '
      IS_VARIANT                     =
      IT_EVENTS                      =
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
      IR_SALV_LIST_ADAPTER           =
      IT_EXCEPT_QINFO                =
      I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
      TABLES
        T_OUTTAB                       = ITAB
    EXCEPTIONS
      PROGRAM_ERROR                  = 1
      OTHERS                         = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.                    " DISPLAY_LIST
    FORM DISPLAY_GRID .
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = SY-REPID
       I_CALLBACK_PF_STATUS_SET          = 'FORM_PF'
       I_CALLBACK_USER_COMMAND           = 'FORM_USER'
       I_CALLBACK_TOP_OF_PAGE            = 'FORM_TOP'
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
       IS_LAYOUT                         = WA_LAYOUT
       IT_FIELDCAT                       = IT_FCAT
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   =
      IT_HYPERLINK                      =
      IT_ADD_FIELDCAT                   =
      IT_EXCEPT_QINFO                   =
      IR_SALV_FULLSCREEN_ADAPTER        =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
      TABLES
        T_OUTTAB                          = ITAB.
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.                    " DISPLAY_GRID
    *&      Form  FIELDCATALOG_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM FIELDCATALOG_DATA .
      WA_FCAT-TABNAME = 'ITAB'.
      WA_FCAT-FIELDNAME = 'MATNR'.
      WA_FCAT-REF_TABNAME = 'MARA'.
      WA_FCAT-REF_FIELDNAME = 'MATNR'.
      WA_FCAT-OUTPUTLEN = 10.
      APPEND WA_FCAT TO IT_FCAT.
      WA_FCAT-TABNAME = 'ITAB'.
      WA_FCAT-FIELDNAME = 'MTART'.
      WA_FCAT-REF_TABNAME = 'MARA'.
      WA_FCAT-REF_FIELDNAME = 'MTART'.
      WA_FCAT-OUTPUTLEN = 10.
      APPEND WA_FCAT TO IT_FCAT.
      WA_FCAT-TABNAME = 'ITAB'.
      WA_FCAT-FIELDNAME = 'MATKL'.
      WA_FCAT-REF_TABNAME = 'MARA'.
      WA_FCAT-REF_FIELDNAME = 'MATKL'.
      WA_FCAT-OUTPUTLEN = 10.
      APPEND WA_FCAT TO IT_FCAT.
      WA_FCAT-TABNAME = 'ITAB'.
      WA_FCAT-FIELDNAME = 'TEST'.
      WA_FCAT-SELTEXT_M = 'SAMPLE'.
      WA_FCAT-OUTPUTLEN = 10.
      WA_FCAT-EDIT = 'X'.
      APPEND WA_FCAT TO IT_FCAT.
    ENDFORM.                    " FIELDCATALOG_DATA
    FORM FORM_LAYOUT .
      WA_LAYOUT-ZEBRA = 'X'.
    ENDFORM.                    " FORM_LAYOUT
    FORM FORM_TOP.
      WA_HEAD-TYP = 'H'.
      WA_HEAD-INFO = 'INT'.
      APPEND WA_HEAD TO IT_HEAD.
      WA_HEAD-TYP = 'S'.
      WA_HEAD-INFO = 'ROAD'.
      APPEND WA_HEAD TO IT_HEAD.
      WA_HEAD-TYP = 'A'.
      WA_HEAD-INFO = 'SAP-ABAP'.
      APPEND WA_HEAD TO IT_HEAD.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
      EXPORTING
        IT_LIST_COMMENTARY       = IT_HEAD.
      I_LOGO                   =
      I_END_OF_LIST_GRID       =
      I_ALV_FORM               =
       CLEAR IT_HEAD[].
       ENDFORM.
    FORM FORM_PF USING T_EXTAB TYPE SLIS_T_EXTAB.
    SET PF-STATUS 'TEST' EXCLUDING 'STANDARD'.
    ENDFORM.
    FORM FORM_USER USING UCOMM  TYPE SY-UCOMM SELFIELD TYPE SLIS_SELFIELD.
    CASE UCOMM.
    WHEN 'SE11'.
    CALL TRANSACTION 'SE11'.
    WHEN 'EXIT'.
      LEAVE PROGRAM.
      ENDCASE.
      ENDFORM.
    Edited by: Muthappan Alagappan on Apr 22, 2008 4:53 PM

  • Field-symbol not assigned

    Hello,
    I speak only a bit so I wait that you can understandme.
    I have a field-symbol that is assigned to a component of a structure but when I use the field-symbol I recived a error message that say me "field-symbol is not assigned".
    field-symbols <ubi> type any.
    campo = 'UBIORI'.
    assign component campo of structure
                          t_cuantos to <ubi>.
    Thank you very much.

    H,
    Put a check as follows:-
    field-symbols <ubi> type any.
    campo = 'UBIORI'.
    assign component campo of structure
    t_cuantos to <ubi>.
    if <ubi> is assigned.
    * do further processing here
    endif.
    How is the structure t_cuantos defined?
    Is it having a field named UBIORI?
    t_cuantos should be a workarea(structure) and not an internal table.
    Check the points and reply.
    Regards,
    Ankur Parab

  • Field Symbol not assigned  error

    Hello all...
    I am a functional BI guy but having some problems with some BPS exit code (in charisteristic relationships) ...
    any idea why I would get a 'field symbol not assigned' error with the below?
    The code is straight out of How to: Lines Items in BPS
    Short dump says: GETWA_NOT_ASSIGNED
    Thanks all
    *"*"Local interface:
    *"  IMPORTING
    *"     VALUE(I_AREA) TYPE  UPC_Y_AREA
    *"     REFERENCE(ITO_CHA) TYPE  UPC_YTO_CHA
    *"  CHANGING
    *"     REFERENCE(XS_CHAS) TYPE  ANY
    *"  EXCEPTIONS
    *"      FAILED
    FIELD-SYMBOLS: <l_chavl> TYPE ANY.
    * fill ID
    ASSIGN COMPONENT 'zbpsguid' OF STRUCTURE xs_chas
    TO <l_chavl>.
    CALL FUNCTION 'GUID_CREATE'
    IMPORTING
    ev_guid_32 = <l_chavl>.
    * fill user
    ASSIGN COMPONENT '0UNAME' OF STRUCTURE xs_chas
    TO <l_chavl>.
    <l_chavl> = sy-uname.
    * fill date
    ASSIGN COMPONENT '0DATE' OF STRUCTURE xs_chas
    TO <l_chavl>.
    <l_chavl> = sy-datlo.
    * fill time
    ASSIGN COMPONENT '0TIME' OF STRUCTURE xs_chas
    TO <l_chavl>.
    get time field <l_chavl>.
    ENDFUNCTION.

    i just figured it out when you sent me your reply...
    it works!
    genius!

  • Error  in RFC Code -EPG  001Personnel number not yet assigned

    Dear Freinds,
                     i have requirement where the custom infotype which has been created with
    the fields  ZNOTENROLED,ZEMPLOYEE1,zEMPLSPCHLD1,ZEMPCHLOTH. This
    fields they want in Portal. So i have created an RFC( by making the function module
    remote enabled).
    Now to test whether the function module is working or not i have unchecked the remote enabled.
    however there is problem in my function module iam getting the error as follows
    EPG                  001Personnel number not yet assigned  from t he function module
    HR_INFOTYPE_OPERATION'.. Iam giving the code please correct me
    Import  parameters   ( i have given my custom infotype fields)
    EMPLOYEENUMBER     LIKE     P9004-PERNR        
    BEGINDATE     LIKE     P9004-BEGDA
    ENDDATE                      LIKE     P9004-ENDDA
    NOTENROLEDINSUR     LIKE     P9004-ZNOTENROLED
    EMPLOYEEINSUR     LIKE     P9004-ZEMPLOYEE1
    EMPLSPOUINSUR     LIKE     P9004-ZEMPLSPCHLD1
    EMPLCHILD1INSUR     LIKE     P9004-ZEMPCHLD1
    EMPLCHILDOINSUR     LIKE     P9004-ZEMPCHLOTH
    Export parameters
    RETURN     LIKE     BAPIRETURN1
    in the source code i have given as follows
    call function 'BAPI_EMPLOYEE_ENQUEUE'
        exporting
          number = employeenumber.
      call function 'HR_INFOTYPE_OPERATION'
           exporting
                infty          = '9004'
                number         = employeenumber
               subtype        = subtype
               objectid       = objectid
               lockindicator  = lockindicator
                validityend    = enddate
                validitybegin  = begindate
               recordnumber   = recordnumber
                record         = p9004
                operation      = 'INS'  "change
                nocommit       = ' '       " nocommit
           importing
                return         = return
           exceptions
                others         = 0.
    *deque
      call function 'BAPI_EMPLOYEE_DEQUEUE'
        exporting
          number = employeenumber.
    i have executed the function module by entering the follows
    EMPLOYEENUMBER            00002315
    BEGINDATE            01062007
    ENDDATE                            31032007
    NOTENROLEDINSUR            Space
    EMPLOYEEINSUR             X
    EMPLSPOUINSUR             Space
    EMPLCHILD1INSUR     LIKE  Space
    EMPLCHILDOINSUR     LIKE  Space
    in the return value i got the above error EPG                  001Personnel number not yet assigned  from t he function module

    Dear Thiru,
                  thank you for answering to my question you almost answered my question, but i have one more clarification please ,
           the qustion is i have already created the strucutre through infotype creation(PM01)
    the following fields ZNOTENROLED,ZEMPLOYEE1,zEMPLSPCHLD1,ZEMPCHLOTH. for my structure (P9004).
    so as per you i have created one more structure with 5 fields ZNOTENROLED,ZEMPLOYEE1,zEMPLSPCHLD1,ZEMPCHLOTH.
    so could you pleae let me know the code which i updated in my question initially would be sufficient for calling in the portal.
    if you have any similar code please do give me so that i complete theRFC function module correctly so that it can be work in the portal
    as i havent worked on webdynpro. please help me in this regard
    thanks in advance.
    regards
    syamla

  • Personnel Number not yet assigned

    Dear Gurus
    I was hiring an employee through transaction PA40. after entering details on first page the employee number was assigned but i did not save the entries due to change in plans.
    the issue im facing is that the personnel has been generated without any details and it does not allow me to re enter on that number it gives me the message personnel number not yet assigned.
    can you tell me what should be done and how ...?
    1) can we enter details in that auto generated number.
    2) or can we delete that particular number?
    Regards
    Saad Nisar

    Dear Mr. Saad,
    1. In the case of missed PA40, use the same number in the PA40 screen and execute it. You should run atleast IT0000 and IT0001 and further, you can do with PA30.
    2. For all of you in the forum, In case you have not saved but system is showing PERNR occupied then recheck it in PA30 and if you find that the number has no data and still system is not taking that number then do the undermentioned:
          Suppose you missed Personnel No. 101(No data)
           (a)    Go to PA04 You will find Number Range (display, create and status).
           (b)    Go to Status and see which number has been occupied. You will find last number is 101. Rewrite that number as 100, save and back.
           (c)    Now you use PA40, system will give you 101 and you can use this number again.
    Try this, Pl contact if you still face any problem.
    Best Wishes
    Venkatesh

  • Runtime error "field symbol not assigned"

    hi friends i have designed a report in alv form. and there is one runtime error afer user selectin screen.
    "field symbol has not been yet assigned"
    what could be the problem

    Please check the field catalog you have created
    ls_fieldcatalog-tabname = 'GT_FINAL'.
      ls_fieldcatalog-fieldname ='PSPNR'.
    *  ls_fieldcatalog-coltext = text-001.
      ls_fieldcatalog-col_pos = 1.
    *  ls_fieldcatalog-do_sum = 'X'.
    *  ls_fieldcatalog-outputlen = 20.
      APPEND ls_fieldcatalog TO  gt_fieldcatalog.
      CLEAR ls_fieldcatalog.
    or if you are using filed symbols than
    ASSIGN COMPONENT 'GTFINAL' OF STRUCTURE gt_final
    thanks

  • Field Symbol not assigned error in program SAPLLPRI

    My problem is, I have copied standard program RLVSDR00 in to some ZRLVSDR00 and made some changes accordingly.
    while executing I am geting a short dump with error: " GETWA_NOT_ASSIGNED" and "Field symbol has not yet been assigned" in program SAPLLPRI in the include LLPRIF00.
    Thanks in advance

    Hello Gayathri,
    One you got the dump you can select debugger button in top-left corner screen.
    That will take you to the execution snap shot where you can check all the field symbols and find out which one is not
    assigned. accordingly you can find out what is missing on input side to avoid this dump.
    Hope this helps!
    Thanks,
    Augustin.

  • BPC NW: Field symbol not assigned in BADi as Endroutine

    HI Experts,
    I have a problem when working with BADis as Endroutines in a TransformationFile.
    Guided by the "How To... Use Start and End Routine" I followed the different steps and for the Start Routine everything works fine. My problem is when trying to call the TransformationFile with the Endroutine I get a  GETWA_NOT_ASSIGNED dump telling me that: Field symbol has not yet been assigned.
    I'm using quite the same code as given in the How To. I introduced some checks, but  I did not get any positive results. Can anybody help, please? The How To is made for master data, I assume the error comes from this side, but I can't assure it.
    The code in the Badi is:
    field-symbols:
           type any.
    data: lt_columns type table of string.
    data: lt_column_data type table of string.
    data: lt_message type uj0_t_message.
    data: lt_error_reason type uj0_t_message,
          lv_tabix like sy-tabix.
    data:
          lo_dataref      type ref to data,
          lv_cuenta_asig  type zmap_cuentas-cuenta_asignado.
    Assign importing data reference to field symbol
    assign ir_data->* to  IS ASSIGNED.
    Create work area for importing data
    create data lo_dataref like line of .
    Create new internal table for exporting data
    check .
    Get CUENTA value from custom table or other datasource
    loop at .
    The error occurs when assigning the first pointer.
    By the way, I'm working on BPC 7.5 SP07 for NW.
    Hope someone can help. Thanks very much in advance,
    Àlex

    Hi Kaylan,
    thank you very much for your quick answer.
    Sorry, I think I haven't made quite clear my point.
    I want to use the Endroutine BADi in a Transformation File for Transaction Data, therefor there is no InfoObject directly involved. I use the Transformation File in the Package "Import Transaction Data". The How To I mentioned, and the only one I found that is more or less near to my problem describes how to use Endroutines and BADis for the Import of Master Data.
    Looking at the different tests I have done, as our system team is not giving us a debug user, the dump happens at the assignment of the first field symbol: assign ir_data->* to . Therefor I assume that  ir_data contains no data and this causes the dump.
    My main question is, can I use the code of the mentioned How To for the package "Import Transaction Data" at all? Or do I have to use different tables or table names for this package? How and where do I get them?
    You have an idea? Would be very helpful! Thanks in advance!
    Cheers
    Àlex

  • Error: Field symbol not assigned

    Hi all,
    When I run a query (BW version 3.5) with a condition or an exception I receive an error message "Field symbol has not yet been assigned". The same query run fine on BW version 3.1.
    SP 11 and SP12 are installed.
    Any idea how to solve the problem??

    Paolo,
    Note 555143 can not be implemented. Probably because I am working in BW version 3.5 instead of BW version 3.1.
    Thanks anyway.
    Regards,
    Hans

  • Dump while printing ALV (field symbol not assigned)

    Dear experts,
    I am trying to print an ALV report which gives dump- \
    Field symbol has not yet been assigned.
    The current ABAP program "SAPLKKBL" had to be terminated because it has
    ome across a statement that unfortunately cannot be executed.
    I am not using any field symbols in report. The printer is also configured on my system.
    I searched the forums but didnt get a stisfactory answer.
    Regards,
    Sumit Nene.

    Hi suhas! the I ran the consistency check and it shows
    The field CELLCOLOR  does not exist in the output table (LAYOUT-CTAB_FNAME)
    Though I havent used it.
    @ neeraj--
    DATA : BEGIN OF ST_MUSTER,
           SNO TYPE I,
           DATE TYPE SY-DATUM,
           PERNR TYPE P0001-PERNR,
           NACHN LIKE PA0002-NACHN,
           PA TYPE PBTXT,
           SECTN LIKE P1000-STEXT,
    *       DEPT TYPE BTRTL,
           DEPTXT LIKE T001P-BTEXT,
           ABSTYP TYPE AWART,
           ABSDAYS LIKE PA2001-ABWTG,
           VORNA LIKE PA0002-VORNA,
           BEGDA LIKE PA0002-BEGDA,
           LEAVETYPE(5),
    " LEAVE TYPE FOR PARTICULAR DAY
      LT1(10),
      LT2(10),
      LT3(10),
      LT4(10),
      LT5(10),
      LT6(10),
      LT7(10),
      LT8(10),
      LT9(10),
      LT10(10),
      LT11(10),
      LT12(10),
      LT13(10),
      LT14(10),
      LT15(10),
      LT16(10),
      LT17(10),
      LT18(10),
      LT19(10),
      LT20(10),
      LT21(10),
      LT22(10),
      LT23(10),
      LT24(10),
      LT25(10),
      LT26(10),
      LT27(10),
      LT28(10),
      LT29(10),
      LT30(10),
      LT31(10),
    " TOTAL LEAVES OF SPECIFIC TYPE FOR A MONTH
    EL_T LIKE PA2001-ABWTG,  " EARNED LEAVE
    CL_T LIKE PA2001-ABWTG,  " CASUAL LEAVE
    SL_T LIKE PA2001-ABWTG,  " SICK LEAVE
    ML_T LIKE PA2001-ABWTG,  " MATERNITY LEAVE
    OD_T LIKE PA2001-ABWTG,  " OUTDOOR DUTY
    CO_T LIKE PA2001-ABWTG,  " COMP OFF
    WO_T LIKE PA2001-ABWTG,  " WEEKLY OFF
    PH_T LIKE PA2001-ABWTG,  " PUBLIC HOLIDAY
    PRE_T LIKE PA2001-ABWTG,  "  PRESENT DAYS
    LWP_T LIKE PA2001-ABWTG,  " UNPAID LEAVE
    TOT_T LIKE PA2001-ABWTG,  " TOTAL PAID LEAVE
    ABS_T LIKE PA2001-ABWTG,  " TOTAL PAID LEAVE
    V_GT LIKE PA2001-ABWTG," GRAND TOTAL OF ALL PAID LEAVES

Maybe you are looking for