Flow Type S013 acct determ. value: account symbol not assigned

Hello Guys,
when run the t.code RERAPP I am receiving the error below:
"Problem description:  = Contract number XXXXX during the simulation and update run processing in tcode RERAPP is showing this message in the error log " Flow Type S013 acct determ. value: account symbol not assigned".
I´d like to know the steps to configure the the account symbol.
Regards.
Rafael B.

Hello  Franz,
Thanks for reply,
But I still with some doubts as I am not familiar with RE.
I´d like know how the "Assign Account Symbol to Flow Type" works.
Unfortunately I don´t have an access in Production to verify the error, I have only the log display sent to me by the user.
At a glance, I have a contract and the error message: "FLOW TYPE S013 accont. determ. value: account symbol not assigned"
I have verified the customizing and I can see the flow type S013.
My questions are:
Which account determination value should I use?
Which flow type name?
which debit account symbol?
which credit account symbol?
On this case, probably the user is using the t.code RERAPP and is using a symbol account that is not maintened in the conffiguration?
I don´t but if need, I can raise a OSS note.
Regards.
Rafael Barros

Similar Messages

  • Error: "Account Symbol NOT Assigned to Flow Type".

    Good Morning,
    When I runs transaction RERAPP, I got this error message: Account Symbol NOT Assigned to Flow Type.
    However I reviewed the configuration specifically "Assigned Account Symbol to Flow type", and the account symbol is there.
    I mean is already assigned to the flow type.
    Do I have to review in any other place?  What else I need to do?
    Regards,
    Hector

    Hi Hector,
    Please make sure that for any Reference Flow Type that you assigned for all the Flow Type Relations (check if you have all the needed relation that you need) (V_TIVCDFLOWREL) you have a correspondent (V_TIVRAACCDET - Account Determination Value).
    Regards,
    DAS

  • Sap fico  EBS  Account symbol in Assignment not replaceable

    Hi Exports
    am i  faceting  below given issue please  help me
    Internal trans.1002 : Account symbol in Assignment not replaceable 
    Internal trans.1001 : Account symbol in Assignment not replaceable 
    please find the attached copy also
    help me pls
    thanks & Regards
    praveen

    Hello experts,
    I am blocked with  a similar issue. I checked the GL account settings and they are all OK. I did  a simulation where I can see the correct accounts linked to posting rule LU02. But still I am gettting this error.
    Below I am enclosing the different settings within EBS>
    Any guidance / help will be appreciated.
    Kind Regards,
    Sanjay

  • For the Attribute Movement type(BWA) we use Value " 201" and not "101" why?

    Hello Experts,
    We are in SRM 7.0 classic scenario,
    For the Attribute Movement type(BWA) we use Value " 201" and not "101" and provide the Source syst(backend R/3)
    Can you all plz help me understand what is the difference if use value "101" for the  Attribute Movement type(BWA)
    Also,can you all plz help me understand if we shd use value "101" or "201" for the  Attribute Movement type(BWA) and under what scenario.
    Any pointers will be highly appreciated.
    Thanks & Regards,
    RKS

    Hi,
    Movment type " 201 maintained for the Classic scenario only.
    It is necessary to maintain the attribute if the default material group for a given user (or) sit is set to a backend logical system. The EBP system knows that if the user is set for backend procurement ,that there might be a possibility for a reservation to be generated therefore it checks to see that a value for this attribute is  maintained. The BWA value should be defined  for the  as 201 preceeded by the logical system and a backslash.
    101 should not be used. This isfor the Good receipt.
    In the extended classic scenario when you do the confirmations in SRM the movement type 101 will be created in the
    backend system (R/3 or ECC6.0)
    Regards
    Ganesh Kumar .G

  • 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  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!

  • FIELD SYMBOLS - Not Assigned/Looking to fetch SAP processed ITAB from a ALV

    Hi Experts,
    Pls. let me know that,
    How to fetch the SAP Standard Prog. processed (w/ data) internal table into my_z_prog.?
    Actually, my intension is that, I need to develop a Z_alv_report similar to RFITEMGL.
    So,I coded as,
    SUBMIT RFITEMGL
      WITH SELECTION-TABLE seltab1
      WITH x_opsel     EQ x_opsel    SIGN 'I'
      WITH x_clsel     EQ x_clsel    SIGN 'I'
      WITH x_aisel     EQ x_aisel    SIGN 'I'
       with pa_vari    eq pa_vari  sign 'I' "ltdx
      EXPORTING LIST TO MEMORY
      and return.
    (seltab1 contains the selection criteria of BUKRS)
    Its working fine for small amount of data, if user runs wide open, huge data, so, dumps r throwing becoz of DECIMAL NOTATIONS, some other crap data!!!
    So, I thoght to use FIELD SYMBOLS.
    So, I know, How to use FILEDS SYMBOLS, like,
    FIELD-SYMBOLS: <fs> TYPE ANY.
    ASSIGN ('(SAPFV45P)XVBAP[]') TO <fs>.
    CHECK SY-SUBRC IS INITIAL.
    IF NOT <fs> IS INITIAL.
    I_T_VBAP = <fs>.
    ENDIF.
    So, i implemented the same in my_z_alv_prog; from other thread, likem eblow.
    Suppose RFGLBALANCE is your standard program and you have an internal table named I_RFGLBALANCE.
    And lets say your Z program name is Z_SRINIVAS.
    First find out the type of the internal table you want in your Z-program in the standard program. And declare an internal table of similar type in your Z-program.
    Later wherever you are putting the below mentioned code.
    SUBMIT RFGLBALANCE WITH selection criteria
    here I used the FILED SYMBOLS .......
    BUT, am getting error as FILED SYMBOL NOT ASSIGNED.
    So, pls. let me know that,
    1 - Can I get the SAP processed ITAB by using FIELD SYMBOL into my_z_prog.?
    2 - If NOT , wht is the alternative idea?
    3 - if so, pls. code a peice of code according my reqirement by using FIELD SYMBOLS, in such a way to get SAP ITAB from RFGLITEMS
    URGENT pls.
    thanq
    Edited by: Srinivas on Mar 26, 2008 9:53 AM
    Edited by: Srinivas on Mar 26, 2008 10:08 AM

    no response

  • 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 assign

    hi experts,
    can you help me on this on.
    data: dref type ref to data,
                         drefc type ref to data.
    field-symbols: <itab type standard table,
                            <ctab> type standard table.
    create data: dref type standard table of (s_tab).
    create data: dfrefc type standard table of (s_ctab).
    assign dref->* to <itab>.
    assign drefc->* to <ctab>.
    select * from (s_tab) into table <itab>.
    loop at <itab> assigning <wa>.
    move-corresponding <wa> to <wa_ctab>. -----> <wa_ctab> not assigned
    insert into (s_ctab) values <wa_ctab>.
    endloop.  commit work.
    please help.
    Thank You

    Hi,
    Try this code.
    tables dd02l.
    DATA: s_tab TYPE dd02l-tabname VALUE 'MARA',
          s_ctab TYPE dd02l-tabname VALUE 'MARC'.
    DATA: dref TYPE REF TO data,
                        drefc TYPE REF TO data.
    FIELD-SYMBOLS: <itab> TYPE STANDARD TABLE,
                   <ctab> TYPE STANDARD TABLE,
                   <wa> TYPE ANY,
                   <wa_ctab> TYPE ANY.
    CREATE DATA: dref TYPE STANDARD TABLE OF (s_tab).
    CREATE DATA: drefc TYPE STANDARD TABLE OF (s_ctab).
    ASSIGN dref->* TO <itab>.
    ASSIGN drefc->* TO <ctab>.
    SELECT * FROM (s_tab) INTO TABLE <itab>.
    LOOP AT <itab> ASSIGNING <wa>.
      INSERT INITIAL LINE INTO <ctab> INDEX sy-tabix. " Solution
      READ TABLE <ctab> ASSIGNING <wa_ctab> INDEX sy-tabix. "Solution
      MOVE-CORRESPONDING <wa> TO <wa_ctab>. "-----> Now this will work
      insert into (s_ctab) values <wa_ctab>.
    ENDLOOP.
    Regards,
    Lisa

  • Field Symbol not assigning

    Here is my code
    field-symbols: <itfieldname> type any.
    DATA: lw_fieldname  LIKE ztfi_acctmap-zzfnam.
                lw_fieldname = wa_ztfi_gl_acctmap-zzfnam.
                ASSIGN (LW_FIELDNAME) TO <ITFIELDNAME>.
                <itfieldname> = <lfs_excel>-value.
    After the assign, <itfieldname> is not being assigned. I have copied this from a different module. The same code works there but not in my program.
    Any clues please?
    Thanks,
    Kiran

    Kiran_ABAP wrote:
    Here is my code
    >
    > field-symbols: <itfieldname> type any.
    > DATA: lw_fieldname  LIKE ztfi_acctmap-zzfnam.
    >             lw_fieldname = wa_ztfi_gl_acctmap-zzfnam.
    >             ASSIGN (LW_FIELDNAME) TO <ITFIELDNAME>.
    >             <itfieldname> = <lfs_excel>-value.
    >
    >
    > After the assign, <itfieldname> is not being assigned. I have copied this from a different module. The same code works there but not in my program.
    >
    > Any clues please?
    >
    > Thanks,
    > Kiran
    For the ASSIGN statement to work, you must make sure that the value in the lw_fieldname is declared as a data object in your program as shown below...
    FIELD-SYMBOLS: <fs_value> TYPE ANY.
    DATA: lv_fname TYPE char30 VALUE 'TARGET_FIELD'.
    DATA: target_field TYPE i.
    ASSIGN (lv_fname) TO <fs_value>.
    IF <fs_value> IS ASSIGNED.
      <fs_value> = 10.
      WRITE: target_field.
    ENDIF.
    In the code above, if you comment the declaration of the target_field the ASSIGN statement will not work.
    -Rajesh.

  • Conversion of value 'blank' to # (Not assigned)

    Hi,
    We have extended the DataSource  0CA_TS_IS_1 with the field ZZAWART att/abs type. The component type is AWART and domain is AWART. This domain has no Conversion routine.
    We have created a filter on this field in the dtp from one DSO to another DSO. In this filter we would like to add the value # (not assigned). Our problem is that when this field has no value in the source system, it is not converted to #.
    I changed the conversion routine in the DataSource  in BW to ALPHA and also changed the format from internal to external but this did not solve the problem.
    How can we get the blank value converted to #?
    Thanks.
    Best regards,
    Linda

    Hi Linda,
    It is a bit strange that you dont have the posibility to filter by equal to blank.
    Don't choose the value from the match code in DTP, try the following:
    1.- Press on the arrow (Multiple selection).
    2.- In the "Select Single Value" tab you will have 2 fields (a) Options pushbutton (b) Single Value.
    3.- Click on the PushButton for the first row, ther you will have some option: (a) = Single Value; (b) >= Grather than or equal to; (c) <= Less than or Equal to; (d) > Greater than; (e) < Less than; (f) <> Not Equal to.
    4.- Choose (a) = Single Value, and leave the Select Value column in blank.
    Regards, Federico

  • 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

  • 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.

Maybe you are looking for

  • Can't open links in Mail 1.2.5 from Mac OS X 10.2.8

    If I select an HTML link in an e-mail message, nothing happens. I am using Mail 1.2.5 (v553) on an iMac with 10.2.8 including all software updates. My default browser is Safari 1.0.3 (v85.8.1). Selecting an HTML link when I use Entourage opens the li

  • Jspx page "Designer" crashes during initialization

    Hi JDev team, I'm using JDeveloper 11.1.1.2 and have migrated an application from Jdev version 11.1.1.0. When I open any jspx file, the "Designer" crashes during initialization. Please give me suggestions on fixing this problem. Here's an example jsp

  • Cisco prime license confusion

         Hi I have installed cisco prime 1.2 to manage router, AP, controller, switch and ISE and I am confused wiht license I have this 3 item 1. L-PILMS42-100 2. L-PINCSW11-100                   3. L-PINCS11-100 I have already genereted and added item

  • Elements 9 and minimizing to the bin

    I just upgraded from Elements 6 to version 9.  I have my options set to float in windows, however, unlike in version 6, when I minimize a file, it doesn't disappear to the bin, it adds a little box along the bottom with the beggining of the file name

  • How can I fix my search engine? Google, Yahoo and Bing doesn't work.

    How can I fix my search engine? Google, Yahoo and Bing doesn't work. I try to change them and they doesn't work. Its there a way to fix this problem?