ECCS Flexible upload dump GETWA_NOT_ASSIGNED

Hi gurus!
I'm trying to upload some financial statements for the ECCS module using transaction CXCD (Data monitor). When i double clic the company to upload the data, using the corresponding method, it returns a dump with a GETWA_NOT_ASSIGNED message in program FICUPL90.
In QAS enviroment it works, but in the sandbox enviroment (which is a copy of the QAS).
Does any body know what can i do?

HI
Your issue is relates to below dump
"GETWA_NOT_ASSIGNED" " "  "FICUPL90" bzw. "FICUPL_LCL_UPLOAD"  "RUN"
then refer the below note.
909439
Regards
Madhu M

Similar Messages

  • Short Dump - GETWA_NOT_ASSIGNED - Flexible upload of RFD

    Hi,
    SEM 6.0 / BI 7.0
    When i try to do a Flexible upload for a sample RFD, i get the following dump:
    Runtime Errors         GETWA_NOT_ASSIGNED
    Date and Time          11/25/2008 16:22:01
    Short dump has not been completely stored (too big)
    Short text
        Field symbol has not yet been assigned.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_UC_TASK_EXECUTION==========CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    Error analysis
        You attempted to access an unassigned field symbol
        (data segment 32776).
        This error may occur if
        - You address a typed field symbol before it has been set with
          ASSIGN
        - You address a field symbol that pointed to the line of an
          internal table that was deleted
        - You address a field symbol that was previously reset using
          UNASSIGN or that pointed to a local field that no
          longer exists
        - You address a global function interface, although the
          respective function module is not active - that is, is
          not in the list of active calls. The list of active calls
          can be taken from this short dump.
    Trigger Location of Runtime Error
        Program                               CL_UC_TASK_EXECUTION==========CP
        Include                                 CL_UC_TASK_EXECUTION==========CM02V
        Row                                     155
        Module type                          (METHOD)
        Module Name                        COMPARE_OLD_AND_NEW_DOCS
    Flexible upload - Delete all / Cumulative
    Has anyone encountered this type of dump before?
    My Observation
    (Data Rows contain the following columns - Item / Company / Trading partner / PV LC)
    When i give a trading partner which is not defined in the system, the system is interpreting the header row & data rows. Also, it gives an error message for each row.
    But,
    When i give a trading partner which is defined in the system, or when i remove the trading partner column in total, it throws the above short dump.
    The breakdown category defined in the system are Trading partner & Movement type.
    Both, have the breakdown type 1. (optional breakdown, initialized value allowed).
    Pls note that after several permutations & combinations - to trace the error, i have removed all the columns & kept the minimum required (Item / Company / Trading partner / PV LC).
    Appreciate your comments / inputs.
    Thanks!
    Kumar

    Hi Kumar,
    The note refers to FINBASIS 300 release.
    In the present system we have, it is FINBASIS 600.
    I raised an OSS message.
    Anyway, implementation of the note helped me with all releases.
    But, first of all, I mentioned another remedy that you may see here:
    SPRO: SEM/Business Analytics -> Fin. Basis -> Master Data Framework -> System Settings -> Profile Parameter Setting.
    It's about setting parameter for ABAP shared memory on the server. If you do not set this parameter to 200-300 MB, you constantly will have the errors like I mentioned while trying to save master data. Did you read my previous message carefully and look at this hint?
    In case of breakdown type 1 - the upload should happen - if we dont specify any values for the breakdown category. Pls confirm.
    - Confirmation. The system will accept any value, including null.
    Is it true that we cannot load RFD data (with both movement type & trading partner information), in one go? If yes, what is the reason behind it.
    - No confirmation. Where is it from? I always do such a load.

  • Dump GETWA_NOT_ASSIGNED with REUSE_ALV_GRID_DISPLAY

    Hi All,
    Today I observed that REUSE_ALV_GRID_DISPLAY gives dump GETWA_NOT_ASSIGNED if we pass a blank table for output. These days I am working with ECC6. Earlier when I use to work with ECC5 such thing never happened and ALV get displayed without any row.
    Does anyone know is that correct that in ECC6 blank table in REUSE_ALV_GRID_DISPLAY gives dump. If so, any reason why in ECC6 and not in ECC5?
    Regards,
    Bhaskar

    Hi Bhaskar Tripathi ,
    I have an example that works in ECC 6 if you want you can compare it with your code.
    types: slis_formname(30) type c.
    data: i_repid type sy-repid,
          I_CALLBACK_PF_STATUS_SET type slis_formname,
          I_CALLBACK_USER_COMMAND type slis_formname,
          I_CALLBACK_TOP_OF_PAGE type slis_formname,
          lt_fieldcat  TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          lt_sort      TYPE  slis_sortinfo_alv OCCURS 1,
          gt_events    TYPE  slis_t_event WITH HEADER LINE,
          lt_out "your table with information",
          ls_layout   TYPE  slis_layout_alv.
      ls_layout-no_input          = 'X'.
      ls_layout-colwidth_optimize = 'X'.
      ls_layout-totals_text       = 'Totals'(201).
      ls_layout-info_fieldname =      'LINE_COLOR'.
    ls_fieldcat-fieldname   = 'MANDT'.
    ls_fieldcat-seltext_m   = 'Mandante'.
    ls_fieldcat-col_pos     = 0.
    ls_fieldcatj-outputlen   = 10.
    ls_fieldcat-emphasize   = 'X'.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR  ls_fieldcat.
    ls_fieldcat-fieldname    = 'PSPID'.
    ls_fieldcat-seltext_m    = 'Def. de Proyecto'.
    ls_fieldcat-col_pos     = 1.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR  ls_fieldcat.
    ls_fieldcat-fieldname    = 'POST1'.
    ls_fieldcat-seltext_m    = 'Descrip. breve'.
    ls_fieldcat-col_pos      = 2.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR  ls_fieldcat.
    ls_fieldcat-fieldname  = 'OBJNR'.
    ls_fieldcat-seltext_m    = 'Número de objeto'.
    ls_fieldcat-col_pos      = 3.
      APPEND ls_fieldcat TO lt_fieldcat.
      CLEAR  ls_fieldcat.
    **Event
    DATA: ls_event  TYPE  slis_alv_event.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type = 0
        IMPORTING
          et_events   = gt_events[].
    *                  EXCEPTIONS
    *                    LIST_TYPE_WRONG       = 1
    *                    OTHERS                = 2
      READ TABLE gt_events WITH KEY name =  slis_ev_end_of_list
      INTO ls_event.
      IF sy-subrc = 0.
        MOVE 'END_OF_PAGE' TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
      READ TABLE gt_events WITH KEY name =  slis_ev_end_of_list
      INTO ls_event.
      IF sy-subrc = 0.
        MOVE 'END_OF_LIST' TO ls_event-form.
        APPEND ls_event TO gt_events.
      ENDIF.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program                = i_repid
         i_callback_pf_status_set          = i_callback_pf_status_set
         i_callback_user_command           = i_callback_user_command
         i_grid_title                      = i_title
         is_layout                         = lt_layout
         it_fieldcat                       = lt_fieldcat
         it_sort                           = lt_sort
    *    IS_VARIANT                        =
         it_events                         = lt_events
       TABLES
         t_outtab                          = lt_out
       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.
    Best regards.

  • Flexible upload of profitcenter nodes from CSV is restructured after succes

    Hi;
    I'm having a problem with using flexible upload loading data center nodes into an existing structure. The result is that Inside that profit center hierarchy a node 1000 is created in which the nodes specified in the CSV file are created. It is found that the hierarchy structure is not maintained as the newly created nodes are created under earchother.
    Based on the idea that a hierarchy has been created as a profit center group with exactly the same structure it is not understoud why it is not possible to do this for the profit center. Additionally it demonstrates that the flexible upload function is understoud and is configured correctly. As well the file is properly setup.
    This website was used http://help.sap.com/saphelp_sem60/helpdata/en/62/f7e73ac6e7ec28e10000000a114084/frameset.htm
    I'm looking to understand why it is that the nodes are created differently for a profit center group then a profit center, It is suggested that the problem lies in the fact that the profit center was created and is under a specific configuration that does not allow me to add nodes to it.
    THis is the structure:
    H
    --N1
       --N2
          -- The node that is added here and one level below is placed under "N3 1000"
    --N3 1000
       --The node is added here
       --The child is added as a sibling
    It was noticed that N3 is labeled as 1000 which is the controlled area. When refering to the log it has been found that the CO area was automatically populated with 1000 dispite this not having been done in the CSV file. Therefore it is assumed that there is a relationship between the nodes being added to the 1000 node and the controlled area.
    Any suggestions are welcome. Would it be required to provide more detail with regards to the problem then please state this.

    Hi,
    IMHO, the culprit is a CO area set as an external attrbute int the hierarchy of PC and PCG.
    AFAIR, CO area might/must be a linked attribute to PC (see the last tabstrip in PC infoobject screen) and that's why it should be fixed in the ConsArea settings (and populated aotomatically durung the data load).
    If I were you I would try the following:
    - ask the basis guys make a backup copy of the system
    - delete CO Area from the external char of PC & PCG hierarchies
    - set CO Area as a linked attribute to PC & PCG (if it is really needed - very often it's not needed if CO area has just the only value (which is fixed in the ConsArea settings)). => NB => These changes are very significant for BW and it's not always possible to done without data deletion.
    - regenerate the BCS data basis (and probably the ConsArea).
    The 1st step is needed because SEM-BCS very often does not regenerate properly the data basis (it simply doesn't see the changes). In the forum topics I several times explained how to force the system to see these changes (just drag and drop any role in the definiton of the BCS data basis and the save it).
    This is (significant change in underlying properties of BW infoobjects) the main painpoint in changes BW for SEM-BCS. In my practice, unfortunately,  it required not less than several attempts (even with dumps). And unfortunately it may require the full data deletion in the cubes which play role in the data basis. It might be the main charge for the bad desifn of the BW structures for SEM-BCS.
    Hopefully, you'll avoid it.
    Good luck!
    Linked attribute = compound attribute.
    Edited by: Eugene Khusainov on Jan 31, 2011 4:25 AM

  • Can I catch the error instead of the DUMP GETWA_NOT_ASSIGNED ???

    Hi:
    I have the following code:
      FIELD-SYMBOLS:  . is executed i got a dump GETWA_NOT_ASSIGNED.
    Can I catch the error instead of the dump ?
    Thank you
    Silvia

    see the following example to avoid DUMP
    PARAMETERS: p_file LIKE rlgrap-filename .
    DATA: v_file TYPE string.
    DATA: BEGIN OF itab OCCURS 0,
          name(23) TYPE  c,
          END OF itab.
    DATA: errormessage TYPE char50.
    v_file = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename            = v_file
        filetype            = 'ASC'
        has_field_separator = ' '
      TABLES
        data_tab            = itab.
    RECEIVE RESULTS FROM FUNCTION 'GUI_UPLOAD'
    EXCEPTIONS
       file_open_error               = 1
       file_read_error               = 2
       no_batch                      = 3
       gui_refuse_filetransfer       = 4
       invalid_type                  = 5
       no_authority                  = 6
       unknown_error                 = 7
       bad_data_format               = 8
       header_not_allowed            = 9
       separator_not_allowed         = 10
       header_too_long               = 11
       unknown_dp_error              = 12
       access_denied                 = 13
       dp_out_of_memory              = 14
       disk_full                     = 15
       dp_timeout                    = 16
       OTHERS                        = 17 .
    break developer.
    CASE sy-subrc.
      WHEN 0.
        errormessage     = 'Data Loaded'.
      WHEN 1.
        errormessage     = 'FILE_OPEN_ERROR'.
      WHEN 2.
        errormessage     = 'FILE_READ_ERROR'.
      WHEN 3.
        errormessage     = 'NO_BATCH'.
      WHEN 4.
        errormessage     = 'GUI_REFUSE_FILETRANSFER'.
      WHEN 5.
        errormessage     = 'INVALID_TYPE'.
      WHEN 6.
        errormessage     = 'NO_AUTHORITY'.
      WHEN 7.
        errormessage     = 'UNKNOWN_ERROR'.
      WHEN 8.
        errormessage     = 'BAD_DATA_FORMAT'.
      WHEN 9.
        errormessage     = 'HEADER_NOT_ALLOWED'.
      WHEN 10.
        errormessage     = 'SEPARATOR_NOT_ALLOWED'.
      WHEN 11.
        errormessage     = 'HEADER_TOO_LONG'.
      WHEN 12.
        errormessage     = 'UNKNOWN_DP_ERROR'.
      WHEN 13.
        errormessage     = 'ACCESS_DENIED'.
      WHEN 14.
        errormessage     = 'DP_OUT_OF_MEMORY'.
      WHEN 15.
        errormessage     = 'DISK_FULL'.
      WHEN 16.
        errormessage     = 'DP_TIMEOUT'.
      WHEN 17.
        errormessage     = 'OTHERS'.
    ENDCASE.
    MESSAGE e000(00) WITH errormessage .

  • OO ALV dump - GETWA_NOT_ASSIGNED

    Hello Friends,
    I have implemented OO ALV to display data. Two of the fields are WERKS and MATNR. These fields are input enabled. I have not coded any F4 routine, the standard search helps work. I have SAP GUI 720 installed on my laptop and the program runs just fine. But when I try to run it on another machine with GUI 710 the search help function does not work and I get the dump GETWA_NOT_ASSIGNED. I may be wrong but it seems like there is a problem with the GUI version. Where should I check?
    Thanks in advance,
    Ali

    Hi,
    This is a field catalog issue. check whether you populated field catalog correctly. check the field names and internal table field names and also  check the col_pos is correct or not. 
    ls_fieldcat-col_pos = '1'.
    u might be assigned the col_pos same for some fields,
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • APD: dump GETWA_NOT_ASSIGNED

    When I try to display the data of a query as a source in the Analysis Process Designer (APD) in RSANWB, the dump GETWA_NOT_ASSIGNED occurs in the method CL_RSCRMBW_BAPI=>GET_KYF_DETAILS_BAPI as an error. Could anybody help me? Please give me your thoughts about it.

    Hi Tatsiana,
    You should check if the note 1408037 would solve the problem.
    Best Regards,
    Vincent

  • Getting Dump   GETWA_NOT_ASSIGNED, In ALV

    Hi Experts,
    Once ALV report is generated then when I am downloaing to xls, I am getting dump
    GETWA_NOT_ASSIGNED.
    Please advice.
    Regards,
    IFF

    Possibly the field catalog and output table is not synch.
    Try to create the field catalog automatically (LVC_FIELDCATALOG_MERGE). and not by mannual ( hardcoded)
    If you mentioned any coloring in alv , for testing purpose (just comment the coloring part) and try

  • Dump :GETWA_NOT_ASSIGNED, while using  fm REUSE_ALV_GRID_DISPLAY

    Hi Experts,
    In the report I am using LDB pnp and outputting results with ALV,
    I am using the FM REUSE_ALV_GRID_DISPLAY,
    And I am getting the dump GETWA_NOT_ASSIGNED.
    The dump I am getting when the FM is executed.
    Thanks in Advance.
    Regards,
    IFF

    Hi,
    i faced the same problem some days ago.
    jst cleck your fieldcat.
    check fields names passed to fieldcat and should be in '  ' and in capital.
    This shd solve your problem
    Thanks & regards

  • Dump "GETWA_NOT_ASSIGNED" while implementing Remodeling

    Hello Everyone,
    i am trying to add an infoobject 0calweek with constant value using remodeling. while implementing this scenario i encountered with a short dump "GETWA_NOT_ASSIGNED" could anybody suggest any fix to this issue.
    Thanks and Regards,
    Ajay.D

    thanks

  • Dump GETWA_NOT_ASSIGNED in ALV OO

    Hi experts, i have a problem ... i created an ALV OO but when i wanna dowload the ALV's lines the program trigger a DUMP: GETWA_NOT_ASSIGNED in program SAPLKKBL ... i know that it's a clasic DUMP about ALV's ... please i need your help.
    Thanks.
    David Carballido

    Hi Uwe ... i created a structure and called to FM LVC_FIELDCATALOG_MERGE to create my fieldcat and the program trigger the same DUMP.
    Errores tiempo ejecucióGETWA_NOT_ASSIGNED
           ocurrido el     23.09.2008 a  17:10:54
    >> Dump breve ABAP no almacenado completamente (muy grande)
    Field symbol has not yet been assigned.
    ¿Qué ha sucedido?
    The current ABAP/4 program "SAPLKKBL " had to be terminated because
    one of the statements could not be executed.
    This is probably due to an error in the ABAP/4 program.
    ¿Qué puede hacer?
    Note the actions and input that caused the error.
    Inform your SAP system administrator.
    You can print out this message by choosing "Print". Transaction ST22
    allows you to display and manage termination messages, including keeping
    them beyond their normal deletion date.
    Análisis error
    You attempted to access an unassigned field symbol
    (data segment 1069).
    This error occurs:
    - if you address a typed field symbol before it has been set with
      ASSIGN or
    - if you address a field symbol that has been reset with UNASSIGN
      or pointed to a local field that no longer exists, or
    - if you address a field symbol that pointed to a line of an internal
      table that has now been deleted, or
    - if you address a global function interface partameter, even
      though the relevant function module is not active,
      i.e. it is not in the list of active calls. You can get the list
      of active calls from the this short dump.
    Notas para corregir errores
    If the error occurred in a non-modified SAP program, you may be
    able to find a solution in the SAP note system.
    If you have access to the note system yourself, use the following
    search criteria:
    "GETWA_NOT_ASSIGNED"
    "SAPLKKBL " or "LKKBLF99 "
    "GEN_FIELD_OUT2"
    If you cannot solve the problem yourself, please send the
    following documents to SAP:
    1. A hard copy print describing the problem.
       To obtain this, select the "Print" function on the current screen.
    2. A suitable hardcopy prinout of the system log.
       To obtain this, call the system log with Transaction SM21
       and select the "Print" function to print out the relevant
       part.
    3. If the programs are your own programs or modified SAP programs,
       supply the source code.
       To do this, you can either use the "PRINT" command in the editor or
       print the programs using the report RSINCL00.
    4. Details regarding the conditions under which the error occurred
       or which actions and input led to the error.
    Usuario, transacción....
    Client.............. 200
    User................ "BCDCARBALLID"
    Language key........ "S"
    Transaction......... "SEU_INT "
    Program............. "SAPLKKBL "
    Screen.............. "SAPLKKBL 0500"
    Screen line......... 3
    Info posición de cancelación
    The termination occurred in the ABAP/4 program "SAPLKKBL " in
    "GEN_FIELD_OUT2".
    The main program was "ZFI_RPT_PDB_005 ".
    The termination occurred in line 3824
    of the source code of program "LKKBLF99 " (when calling the editor 38240).
    Detalle código fuente
    037940   * Color settings                                             "K_COLCOLOR
    037950     if gs_out_flags-sum is initial.
    037960       if gs_fc-hotspot = 'X' and gs_out_flags-hotline is initial
    037970          and gt_stack-is_layout-no_hotspot is initial.
    037980         format hotspot on.
    037990       elseif gs_fc-hotspot = 'V'
    038000          and gs_out_flags-hotline is initial and not <field> is initial
    038010          and gt_stack-is_layout-no_hotspot is initial.
    038020         format hotspot on.
    038030       endif.
    038040       if gs_fc-input = 'X' and
    038050          gt_stack-is_layout-no_input is initial and
    038060          gs_fc-checkbox is initial.
    038070         format input on.
    038080         format intensified off.
    038090       endif.
    038100       if not gs_fc-emphasize is initial and gs_out-info is initial.
    038110         perform field_color_normal using gs_fc
    038120   *                                      gt_stack-is_layout
    038130                                          gs_out-info.
    038140       endif.
    038150
    038160   *   complex logic with internal table for color description
    038170       if gs_out_flags-mcoltab = 'X' and gs_out_flags-slave ne 'X' and
    038180          gs_out_flags-sum ne 'X'.
    038190
    038200         perform field_color_complex using <coltab>
    038210                                           gs_fc
    038220                                           gs_out_flags-inverse.
    038230       elseif gs_out_flags-scoltab = 'X' and gs_out_flags-slave = 'X' and
    ----->          gs_out_flags-sum ne 'X'.
    038250
    038260   *     perform field_color_complex using <coltab>   " DEL FGS_COLOR
    038270         perform field_color_complex using <coltab_slave> " INS FGS_COLOR
    038280                                           gs_fc
    038290                                           gs_out_flags-inverse.
    038300       endif.
    038310     endif.
    038320
    038330   *--- Prüfung Ausgabelänge
    038340     clear gs_out-hlplen.
    038350   * Edit-Mask
    038360     if gs_fc-tech_form = 7.
    038370       write <field> to gs_out-hlpchar
    038380              using edit mask gs_fc-edit_mask.
    038390       gs_out-hlplen = strlen( gs_out-hlpchar ).
    038400   * Bei NUMC führende '0' und ' ' nicht berücksichtigen
    038410     elseif gs_fc-tech_form = 6.
    038420       write <field> to gs_out-hlpchar no-zero left-justified.
    038430       if gs_fc-just = 'R'.

  • DUMP GETWA_NOT_ASSIGNED by ASSIGN FS dynamically

    I got a DUMP  GETWA_NOT_ASSIGNED, which is triggered by the ASSIGN statement. I once raised this problem. The code is as:
    data: name3(21) value '(SAPLMBWL)IMSEG-ABLAD'.
    assign (name3) to <f>.
    here, IMSEG seems to be a interface of some FM. At last time, I was suggested to transfer the name3 to upper case. It works. But in some condition, it will also raise a DUMP. So I am thinking about there should be some other problem.
    In the DUMP text, I found this in ERROR analysis:
    You address a global function interface, although the
    respective function module is not active - that is, is
    not in the list of active calls. The list of active calls
    can be taken from this short dump.
    I checked the loaded program in debug mode, the program SAPLMBWL is not in the loaded list. But the program can run 2 times for the ASSIGN statement, At the first time, it works fine without any problem. But at the 2nd time, it raise the DUMP.
    I think it has sth to do with the memory or objects in runtime. Is there any way to check (SAPLMBWL)IMSEG-ABLAD before the ASSIGN statement?
    How to check the active calls list mentioned in the ERROR analysis and what can be done for it? Any check?
    thanks for help.

    I had a similar problem and the SYSTEM_CALLSTACK fm seems to work perfectly.  The "TRY ... CATCH ... ENDTRY or CATCH SYSTEM-EXCEPTIONS " option dosen't seem to work because GETWA_NOT_ASSIGNED doesn't seem to be a catchable runtime error.
    Here is the code:
        IF komk-vbtyp = 'M'.
          IF ( preisfindungsart = 'A' OR preisfindungsart = 'C' ) AND (
             komk-kappl EQ 'V').
            CALL FUNCTION 'SYSTEM_CALLSTACK'
             IMPORTING
               CALLSTACK          = lt_callstack
               ET_CALLSTACK       = lt_sys_callstack.
            loop at lt_callstack assigning <ls_sys_callstack>
                                 where MAINPROGRAM = 'SAPLV60A'
                                   and BLOCKTYPE   = 'FUNCTION'.
              "See if this function calls the XVBFS global parameter and field-symbol
              select single * from FUPARAREF into ls_FUPARAREF
                                             where FUNCNAME  = <ls_sys_callstack>-BLOCKNAME
                                               and R3STATE   = 'A'      "Active
                                               and PARAMETER = 'XVBFS'  "Global parameter / field symbol
                                               and PARAMTYPE = 'T'.     "Table
              if sy-subrc = 0.
                lv_can_add_to_log = abap_true.
                exit.
              endif.
            endloop.
            if lv_can_add_to_log = abap_true.
              PERFORM vbfs_hinzufuegen_allg(saplv60a) USING
                    komk-belnr komp-kposn 'ZVSD' 'E' '002'
                    lo_rfc_result-tran_id sy-datum sy-uzeit space .
              komp-prsok = space.
            ELSE.
              MESSAGE ID 'ZVSD' TYPE 'E' NUMBER '002' WITH
              lo_rfc_result-tran_id  sy-datum sy-uzeit.
            endif.
          endif.
        endif.
    Edited by: Jake Taber on Apr 24, 2011 4:34 AM
    Edited by: Jake Taber on Apr 24, 2011 4:35 AM

  • Upload FS Items master using flexible upload-SEM-BCS

    I want to upload FS Items master using flexible upload in SEM BCS.  I was wondering if i could have a sample upload format of the file.  Kindly help.
    Ramanathan
    [email protected]

    Hi Ramanathan and welcome to SDN!
    Everything depends on your settings in a flexible upload method.
    You may use a comment character (like an asterisk) to show fields names and choose a fields delimiter (say, ';').
    In this case you may have a file for upload something like the following.
    These are fields in a header
    Field1 Field2 Field3 Field4 etc.
    Field1Val;Field2Val;Field3Val;Field4Val
    These are fields in rows
    Field5 Field6 Field7 Field8 etc.
    Field8Val;Field8Val;Field8Val;Field8Val
    Field8Val;Field8Val;Field8Val;Field8Val
    Field8Val;Field8Val;Field8Val;Field8Val
    Best regards,
    Eugene

  • External field catalog & Info object catalogs - Role - in Flexible upload

    1) What is the role of Info Object catalogs maintained in the Data Basis & the Source Data Basis?
    Please be kind enough to mention a scenario u2013 underlining their utility in the consolidation process.
    Like u2026.
    Are they used for loading master data from source system to the BCS system?
    Can they be used in the flexible upload u2013 data collection function?
    Are they used for as a source of AFD data?
    I came across the below documentation on flexible upload - in an SAP material.
    *When uploading from a field catalog, you also have the option of using mapping. In this case, the file structure no longer has to correspond with the structure of the data basis.*
    Understood the above 2 points.
    *Rather, you can assign a BW InfoObjectCatalog that acts as the data structure description for the file here. You specify this InfoObjectCatalog in Customizing for the data basis.*
    2)Does the above statement implies that we need not do any setting in the field catalog tab of the flexible upload? If yes, what do we do?
    In the flexible upload u2013 field catalog tab u2013 we define the data structure for the file we upload (correct me if Iu2019m wrong).
    If you use an external field catalog, you have to specify how you want to map the data structure for the file to the structure for the data basis.
    3)Pls give an example of an external field catalog.
    4)Can we use an external field catalog in the upload of RFD?
    Many Thanks
    Kind Regards,
    Kumar

    There are two possibilities of using Infoobject catalog in SEM-BCS (it is true for both catalogs, characteristics and key figures):
    u2022     In a data basis. The system adds these chars and KFs that are sitting in the defined in the Data Basis catalogs to u201CAdditional Fieldsu201D of each data stream (the tab strip u201CData Stream Fieldsu201D in data basis. If you check some of these fields and generate data basis, these additional infoobjects will be placed into appropriate ODS/DSO objects and you will be able to use them for uploading of some extra information.
    Without indicating the Infoobject Catalog for Chars youu2019ll not be able to configure a new functionality of "assets/liabilities" at all.
    u2022     In a source data basis.
    After including source data basis to your data basis youu2019ll be able to use external infoobjects catalog in a method of the category Flexible Upload. Tick the flag of using the external catalog and choose the SDB. In the mapping tab youu2019ll have a possibility to choose from those chars and KFs that are located in the catalogs.
    This might be used for upload of ANY data, RFD, AFD or master data.
    The scenarios, I guess, are rather obvious.
    Hope this helps.

  • I/U profit and loss in Inventory : Flexible upload of Inventory Data

    Hello people! gurus!!
    In Data Collection, I have defined flexible upload to Inventory Data as Data Type;
    then I tried to connect this in Method, however in the options belong to Data Stream, u201Ctotal recordsu201D and u201Cdocumentsu201D are my only options.
    Should it appear options to relate as Inventory Data and Supplier ?
    Thanks in advance
    Ismael Lozano

    Ooph, Ismael,
    DO the search BEFORE you post the question!
    Many of such questions were answered a long time ago.
    For example:
    Re: Missing Elimination of Interunit Profit/Loss Functions
    or
    Re: SEM BCS - Interunit Profit/Loss in Transferred Asset / Inventory

Maybe you are looking for