Assign dump

Hi,
i try to do assign component like that and i get this dump ,any idea why?
after i doing the assign component commend in the line
<date> =  sy-datum.
i get the dump :
field symbols: <date>  type sy-datum.
  ASSIGN is_bound_object TO <ls_object>.
  ASSIGN COMPONENT 'DATE' OF STRUCTURE <ls_obt> TO <date>.
  <date> =  sy-datum.
the error:
The following are protected from change:
- Character literals or numerical literals.
- CONSTANTS.
- Parameters of the category IMPORTING REFERENCE in functions and
   methods.
- untyped field symbols, that have not been assigned a field using
   ASSIGN.
- TABLES parameters, if the actual parameter is protected against
   changes.
- USING reference parameters and CHANGING parameters in FORMs,
   if the actual parameter is protected against changes.
- Access using field symbols if the field assigned using ASSIGN is
   partly or completely protected (for example key components of in
   table of the type SORTED or HASHED TABLE).
Br
Nina

Hi Nina ,
Are you tried to change field symbols: <date>  type sy-datum to  type any ?
Because, <date> may receive any value and not just datum.
OR
Try..
WRITE sy-datum TO <date>.
Regards,
Bruno
Edited by: BrunoLima on Jun 25, 2009 6:16 PM
Edited by: BrunoLima on Jun 25, 2009 6:19 PM

Similar Messages

  • Dump GETWA_NOT_ASSIGNED assigning a Field Symbol

    i have
    DATA: W_PROG3(30) VALUE '(SAPLV56U)I_XVTTK[]'.
    ASSIGN (W_PROG3) TO  is executed i got a dump.
    Only in this case i got a dump.
    I hope somebody could help me with this

    Hello,
    I have the same Problem with another Table.  To evaluate the Problem I wrote a little testprogram with the following code:
    *& Report  ZL_FROELICHM_TEST1                                          *
    report  ZL_FROELICHM_TEST1                      .
    data: VBSK_I like  VBSK.
    data: T_KOMDLGN  like KOMDLGN occurs 10 with header line,
          T_VBFS     type table of VBFS,
          T_VBLS     type table of VBLS.
    call function 'GN_DELIVERY_CREATE'
      exporting
        VBSK_I   = VBSK_I
      tables
        XKOMDLGN = T_KOMDLGN[]
        XVBFS    = T_VBFS
        XVBLS    = T_VBLS.
    perform ASSIGN.
    *&      Form  assign
          text
    -->  p1        text
    <--  p2        text
    form ASSIGN .
      data:           NAME_TAB1(30) type C value '(SAPLV50S)XKOMDLGN'.
                     KOMDLGN type table of KOMDLGN with header line.
      field-symbols:  .
      if SY-SUBRC = 0.
       KOMDLGN = <KOMDLGN>.
      endif.
    assign: (NAME_TAB1) to <KOMDLGN>.
    if SY-SUBRC = 0.
       KOMDLGN[] = <KOMDLGN>.
    endif.
    check not KOMDLGN[] is initial.
    endform.                    " assign
    If you call Funktion 'GN_DELIVERY_CREATE' then the ASSIGN dumps.  If you don't call it, then the ASSIGN gives you a returncode 4.  The funktion works within the GN_DELIVERY_CREATE, however, the relevant coding is in the Program SAPMV50A in the performroutine USEREXIT_REFRESH_DOCUMENT.  I get the dump when the exit is called by WS_DELIVERY_UPDATE, or RV_DELIVERY_CREATE.  These functions don't know the Table XKOMDLGN.
    So, if you find a solution to your problem, please let me know.  I think I have the same problem.
    Greetings,
    Maria Frölich.

  • Getwa not assigned in SAPLSLVC

    Hi All!
    I have a problem at the execution of an ALV. I have automaticaly the "Getwa not assigned" dump.
    I checked the name of the fields that are in fieldcatalog as I saw on the internet and checked my internal table has the same field than the fieldcatalog, with no result.
    Here is the entire message:
        Field symbol has not yet been assigned.
        Error in the ABAP Application Program
        The current ABAP program "SAPLSLVC" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
        You attempted to access an unassigned field symbol
        (data segment 32821).
        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.
    SAPLSLVC
    LSLVCF36
    3.267
    (FORM)
    FILL_DATA_TABLE
    Here is my code about fields displayed and fieldcatalog:
    DATA: V_VENDORNUM         TYPE LFBK-LIFNR,
          V_VENDORNAME        TYPE LFA1-NAME1,
          V_COUNTRYISOCODE    TYPE T005-INTCA,
          V_BANKKEYS          TYPE LFBK-BANKL,
          V_BANKACCOUNTNUMBER TYPE LFBK-BANKN,
          V_IBAN              TYPE TIBAN-IBAN,
          WA_IBANTABLE        TYPE ZLIGNEIBAN.
          WT_IBANTABLE     TYPE TABLE OF ZLIGNEIBAN.
        MOVE V_VENDORNUM         TO WA_IBANTABLE-VENDORNUM.
        MOVE V_VENDORNAME        TO WA_IBANTABLE-VENDORNAME.
        MOVE V_COUNTRYISOCODE    TO WA_IBANTABLE-COUNTRYISOCODE.
        MOVE V_BANKKEYS          TO WA_IBANTABLE-BANKKEYS.
        MOVE V_BANKACCOUNTNUMBER TO WA_IBANTABLE-BANKACCOUNTNUMBER.
        MOVE V_IBAN              TO WA_IBANTABLE-IBAN.
        APPEND WA_IBANTABLE TO WT_IBANTABLE.
      PERFORM ADD_FIELDCAT USING:
         'CodeFournisseur' '!ZLIGNEIBAN-VENDORNUM'         '000010' 'L' C_SHOW   TEXT-T01,
         'NomFournisseur'  '!ZLIGNEIBAN-VENDORNAME'        '000030' 'L' C_SHOW   TEXT-T02,
         'CodePays'        '!ZLIGNEIBAN-COUNTRYISOCODE'    '000002' 'L' C_SHOW   TEXT-T03,
         'CodeBanque'      '!ZLIGNEIBAN-BANKKEYS'          '000015' 'L' C_SHOW   TEXT-T04,
         'NumCompte'       '!ZLIGNEIBAN-BANKACCOUNTNUMBER' '000018' 'L' C_SHOW   TEXT-T05,
         'IBAN'            '!ZLIGNEIBAN-IBAN'              '000034' 'L' C_SHOW   TEXT-T06.
    Thank you for your help.
    PS: Sorry for my bad english, it's not my native language.

    Thank you Raymond, it was an error between chair and keyboard. I wrote my titles in the first parameter instead of the fieldname. I had to wrote:
      PERFORM ADD_FIELDCAT USING:
         'VENDORNUM'         '!ZLIGNEIBAN-VENDORNUM'         '000010' 'L' C_SHOW   TEXT-T01,
         'VENDORNAME'        '!ZLIGNEIBAN-VENDORNAME'        '000030' 'L' C_SHOW   TEXT-T02,
         'COUNTRYISOCODE'    '!ZLIGNEIBAN-COUNTRYISOCODE'    '000002' 'L' C_SHOW   TEXT-T03,
         'BANKKEYS'          '!ZLIGNEIBAN-BANKKEYS'          '000015' 'L' C_SHOW   TEXT-T04,
         'BANKACCOUNTNUMBER' '!ZLIGNEIBAN-BANKACCOUNTNUMBER' '000018' 'L' C_SHOW   TEXT-T05,
         'IBAN'              '!ZLIGNEIBAN-IBAN'              '000034' 'L' C_SHOW   TEXT-T06.
    and not:
    PERFORM ADD_FIELDCAT USING:
         'CodeFournisseur' '!ZLIGNEIBAN-VENDORNUM'         '000010' 'L' C_SHOW   TEXT-T01,
         'NomFournisseur'  '!ZLIGNEIBAN-VENDORNAME'        '000030' 'L' C_SHOW   TEXT-T02,
         'CodePays'        '!ZLIGNEIBAN-COUNTRYISOCODE'    '000002' 'L' C_SHOW   TEXT-T03,
         'CodeBanque'      '!ZLIGNEIBAN-BANKKEYS'          '000015' 'L' C_SHOW   TEXT-T04,
         'NumCompte'       '!ZLIGNEIBAN-BANKACCOUNTNUMBER' '000018' 'L' C_SHOW   TEXT-T05,
         'IBAN'            '!ZLIGNEIBAN-IBAN'              '000034' 'L' C_SHOW   TEXT-T06.
    Thank you again.

  • How to revert back a SAP NOTE? Dump- Field symbol has not yet been assigned

    Hi Experts,
    We r getting dump(cause: Field symbol has not yet been assigned) in production for ABUMN tx, so, when debugged, it came to know that, the Field symbol is coming from REUSE_ALV_LIST_DISPLAY!!
    So, for some reason the system message text is not getting output in ALV-->Dump!!
    So, found a NOTE causing this problem!!
    So, pls. let me know that, How to revert back this/any SAP NOTE? pls. in detail steps wise!!
    thanq
    Edited by: Srinivas on Jan 24, 2008 4:32 PM

    Hi
    In SNOTE tcode,  select the Note that you implemented and click on 'RESET SAP Note Implementation'
    shylesh

  • Getting dump while assigning resource to role

    Hi,
    We are using BAPI_BUS2177_STAFFING_ADD  to assign resource to role.
    It is assigning first resource to first role in first project. And giving dump for next resource to role assignment for the same project.
    Short dump description is like as follows:
    The exception 'CX_DPR_FATAL_ERROR' was raised, but it was not caught anywhere
      along
    the call hierarchy.
    Since exceptions represent error situations and this error was not
    adequately responded to, the running ABAP program
      'CL_DPR_AUTHORIZATION_SERVICES=CP' has to be
    terminated.
    The problem is of "COMMIT". I ma not understanding where to write exact commit. Even if we are commiting at project level it is giving dump.
    Could you please give any suggestion on it.
    Thanks & Regards,
    Anil Salekar

    Hello Kaixiang,
    When you add staffing to project then commit after each resource assignment. That will avoid the dump.
    Use:
    CALL FUNCTION 'BAPI_CPROJECTS_COMMIT_WORK'
             TABLES
               return = it_return.
    Note: Re award if useful
    Thanks,
    Appasaheb..

  • ABAP Dump ASSIGN LENGTH 0 SAPLSNR3 LOCAL Buffer - BI content installation

    Hi all,
    I get the following ABAP dump while installing the BI content and choosing the grouping ' in dataflow before' in Bi 7.0 SP 13
    Short text                                                             
        Program error: ASSIGN with length 0 in program "SAPLSNR3".                                                                               
    Error analysis                                                                     
         In an ASSIGN statement in the program "SAPLSNR3" a field symbol with           
         length 0 should have been created. However, this is not possible.              
         length 0.  This is not possible     s                                                                               
    Trigger Location of Runtime Error                                                  
         Program                                 SAPLSNR3                               
         Include                                 LSNR3F01                               
         Row                                     178                                    
         Module type                             (FORM)                                 
         Module Name                             LOCAL_BUFFER                           
    How to correct the error                                                             
        If the error occurred in your own ABAP program or in an SAP                      
        program you modified, try to remove the error.                                                                               
    If the error occures in a non-modified SAP program, you may be able to           
        find an interim solution in an SAP Note.                                         
        If you have access to SAP Notes, carry out a search with the following           
        keywords:                                                                               
    "ASSIGN_LENGTH_0" " "                                                            
        "SAPLSNR3" or "LSNR3F01"                                                         
        "LOCAL_BUFFER"                                                                               
    I did search for the same error discussion in the forum. However most of them are dealing with "LOCAL_ENTRY_EXISTS" while this dump is related to "LOCAL_BUFFER".
    Kindly let me know if anyone has similar issue and got it resolved.
    Thanks in advance
    Kee

    For  anyone who come across the same error - here is the solution.
    Assign the number ranges for  objects
    BI_TS , BI_TSDTEL, BI_TSDOMA and BI_CS  in tcode SNUM as below
    No. From Number  To Number      Currenct Number
    01    0000000001    9999999999    1
    You can surpass this error.
    Thanks
    Kee

  • Short dump GETWA_NOT_ASSIGNED - Field symbol FS_ENVDLIST not assigned

    Hi Experts,
    I need your help. Currently i am getting a short in CIC0 transaction.
    Please find steps executed which result in short dump.
    Search for a BP with BD display as the active tab. This search will be successful.
    Press u2018End Contactu2019 Now search for 2nd BP with BD display as the active tab.
    This will result in a dump.
    Now if I again execute the t-code CIC0 & enter the same BP it will be successful
    On debugging, I found out that the program cannot identify the data environment since the field symbol <fs_envdlist> does not get assigned when BD_DISPLAY tab is active.  But the program still continues to use this field symbol which results in a dump
    CRM Version - 4.0 - Patch level 10
    Please let me know if the below link is not accessible
    [http://imageshack.us/photo/my-images/685/page3uk.jpg/]
    [http://imageshack.us/photo/my-images/338/page2dr.jpg]
    [http://imageshack.us/photo/my-images/510/page1up.jpg/]
    [http://imageshack.us/photo/my-images/140/page4fa.jpg/]
    [http://imageshack.us/photo/my-images/845/screenshotsxq.jpg/]

    Hi Andrei,
    Thank you for the reply, but both this note are applicable to me
    1144076 u2013 Talks about dump when too many hits are returned - I do not have any such message
    996915 u2013 Talks about searching for the premise for a point of delivery without entering any search parameters - again in my scenario, input data is always provided.
    Is there any solution, i did get note 1254404 which is closest to my issue, but its valid from crm 5.0 and we are on CRM 4.0

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

  • 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

  • Dump thrown when tcode for screen painter assigned

    HI guys,
    I have created a screen and wanted to check how it looks at runtime, for this i assigned a tcode to the report. Now when i run the tcode it throws a dump. the dump is as follows.
    The CONTROL "TCTRL_ENTRY" was searched for but not found.
    These is either an inconsistency between the screen and the program or
    an incorrect ABAP statement (for example, REFRESH CONTROL .. FROM SCREEN
    with incorrect control name).
        MODULE STATUS_1000 OUTPUT.
         SET PF-STATUS 'SCR_1000'.
         SET TITLEBAR '001'.
      ENDMODULE.                 " The pointer for error is at this line
    What could be the possible error?? please let me know.
    Thanks in advance...
    Regards,
    Navin
    Edited by: navin.c on Mar 25, 2009 8:18 AM

    Do your main program have the piece of code like the following?
    CONTROLS:TC_9998 TYPE TABLEVIEW USING SCREEN 9998.
    This way you have to declare a table contol. Do it simply with your Table Control name and the screen in which you are using it.E.g. in my case screen is 9998.
    regards.
    Sarbajit

  • PPOME - Org.Unit (Acount assignment) goes into DUMP

    Hello Gurus,
    ive got a Big issue, concerning SAP HR module.
    When we start the TC: PPOME we select org.unit from the structure.
    It is beeing showed normaly, but only when we select Acount assignment it goes straight into DUMP,
    saying:
    Runtime Errors         STORAGE_PARAMETERS_WRONG_SET
    What can you do?                                                                 
        Note which actions and input led to the error.   
        For further help in handling the problem, 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.                 
        In the system profile, set the parameters                                    
        -abap/heap_area_dia and                                                      
        -abap/heap_area_nondia                                                       
        to a maximum of 189714480. To be on the safe side, reduce the value by 10,000,
        000.                                                                         
        Then restart the SAP system.       
    These corrections are not needed since the system for every other purpose (SD, MM, FI) is working, only for HR module during acount assignment is going into DUMP.
    Any advice why this happens to some of the Org.Units?
    Regards,
    Laurynas Prikockis

    Hi ,
    Please check this thread might be helpful.
    Runtime Errors STORAGE_PARAMETERS_WRONG_SET
    Regards,
    Siraj.

  • ABAP DUMP -OBJECTS OBJREF NOT ASSIGNED in webdynpro application.

    Hi,
    When i tried to run webdynpro application program no output is display in the browser. when i checked  ST22 have received dump like OBJECTS OBJREF NOT ASSIGNED .
    Anyone help me to solve this
    Thanks
    Venkat

    I'm seeing the same message.  Here's the code from my short dump.  It seems to be related to the window, but this is a pretty simple "hello world" type webdynpro I've created (example from the SAP PRESS interactive forms book)
      152         if lr_view_element is initial.
      153           lr_view_element ?= lr_toplevel_window->view_manager->root->get_root_element( ).
      154         endif.
      155         read table cl_wdr_view_element_adapter=>mt_cur_view_elem_adapters
      156              with key view_element_adapter->m_view_element = lr_view_element
      157              into view_elem_adapter.
      158         if sy-subrc = 0.
      159           m_adapter_id = view_elem_adapter-view_element_adapter->m_id.
    >>>>>           m_window_id = view_elem_adapter-window_adapter->m_id.  " für lightspeed
      161         else.
      162           return.
      163         endif.
      164         lr_representative = lr_view_element.
      165         lr_representative_adapter = view_elem_adapter-view_element_adapter.
      166       endif.
    Edited by: Anthony Tripp on Oct 13, 2010 12:48 PM
    For what it is worth to SDN, I started at the view and moved to the window and application.  Check and re-activated as I went and the error went away.
    Thanks,
    Anthony

  • Assign base too short giving dump

    Hi,
       I am facing problem ,when i try to assign im_value(type any) to field symbol
    <value> TYPE domvalue_l. its giving short dump.i tried casting also,but still
    giving dump.i cant define fieldsymbol also of type any because i need to pass it to
    a function module to    i_domvalue ,which i have shown below..Anybody plz help.
    define local field symbol
      FIELD-SYMBOLS <value> TYPE domvalue_l.
    check precondition
      CHECK: im_domain IS NOT INITIAL,
             im_value IS NOT INITIAL.
    assign value which shall be check to field symbol (because of ANY)
      TRY.
          ASSIGN im_value TO <value> casting.
        CATCH cx_root.                                       "#EC CATCH_ALL
          RAISE EXCEPTION TYPE cx_mmpur_root.
      ENDTRY.
    call check function module
      CALL FUNCTION 'DOMAIN_VALUE_GET'
        EXPORTING
          i_domname     = im_domain
          i_domvalue    = <value>
        EXCEPTIONS
          not_exist     = 1
          error_message = 2
          OTHERS        = 3.
      CHECK sy-subrc <> 0.
    message is available from domain value check
      RAISE EXCEPTION TYPE cx_mmpur_message.
    Regards,
    Tess

    Hi,
    try the following code..
    define local field symbol
    FIELD-SYMBOLS <value> TYPE domvalue_l.
    check precondition
    <b>data : tem type domvalue_l.</b>
    CHECK: im_domain IS NOT INITIAL,
    im_value IS NOT INITIAL.
    assign value which shall be check to field symbol (because of ANY)
    TRY.
    <b>temp  =  im_value.</b>
    ASSIGN <b>temp</b> TO <value> casting.
    CATCH cx_root. "#EC CATCH_ALL
    RAISE EXCEPTION TYPE cx_mmpur_root.
    ENDTRY.
    call check function module
    CALL FUNCTION 'DOMAIN_VALUE_GET'
    EXPORTING
    i_domname = im_domain
    i_domvalue = <value>
    EXCEPTIONS
    not_exist = 1
    error_message = 2
    OTHERS = 3.
    CHECK sy-subrc <> 0.
    message is available from domain value check
    RAISE EXCEPTION TYPE cx_mmpur_message.
    Regards,
    Aparna

  • SEM CPM - Dump when i tried to assign a variable

    Hi Gurus,
    Im working with SEM-CPM and i facing the following issue:
    When i tried to assign a CPM variable in design mode it show up the following DUMP (during the preview of the Frame) :
    "MESSAGE_TYPE_X" C- "ADD_DATA_TO_BUFFER"
    Does anybody knows how can i fix this ?
    Regards

    Hola Marco,
    Estoy desarrollando en Management Cockpit unos frames y me está pasando el mismo error que en tu caso.
    Podrías ayudarme en como solucionarlo?
    Saludos

  • Dump while testing Function- Dynamic type conflict when assigning reference

    Hi Gurus,
    I have the following checked and activated-
    - Function with 1 Ruleset
    - The Ruleset containing couple of DBlookup expressions
    - Value range
    - Decision Table
    - Decision tree,
    - Procedure call
    After I give test data while Simulating the function, I get this dump-
    Short text
        Dynamic type conflict when assigning references
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_FDT_DB_LOOKUP==============CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    Have I missed something? We are on SAPKA70207.

    Hi Carsten,
    I couldn't find an OSS note featuring-
    "MOVE_CAST_ERROR" "CX_SY_MOVE_CAST_ERROR"
    "CL_FDT_DB_LOOKUP==============CP" or "CL_FDT_DB_LOOKUP==============CM01K"
    "BUILD_WHERE_CLAUSE_LIMIT"
    Raised OSS note.

Maybe you are looking for