Error DYNPRO_NOT_FOUND in MIGO

Hi,
Error DYNPRO_NOT_FOUND occurs at Goods Receipt in MIGO , for a particular production order and clicking on Classification tab to create a batch.
The error indicates that the screen 900 of the program SAPLXVBZ does not exist.
Awaiting valuable inputs.
Thanks in advance.
Neethu

Hi
SAPLXVBZ is main program of function group XVBZ, here there are defined many user-exit: probably there's a statament CALL SCREEN 900 in one of this exit, but nobody has defined that screen.
U should find out in which exit that screen is called and delete that line or create the screen (but it's not really good call a screen or popup in a exit).
Max

Similar Messages

  • How to Find Location of Error Message in MIGO Transaction

    I keep getting an error in transaction MIGO: Create account N450010 for 08/07/2007 as a cost element in controlling area BFP1. According to the functional person the account has been created. Any other way to find out besides a "where-used" on the message class and number to find out where this message is coming from? The where used is not bringing me any results.....Thanks.

    Hi
    Probably the message is called dynamically, so u should try to check by debug when that message is raised.
    U can set a break-point for the statament MESSAGE.
    Max

  • Runtime Error DYNPRO_NOT_FOUND after transport of customer subscreen

    Hi,
    We have created a new customer subscreen 9002 using transaction OXK1. When the subscreen was transported to the quality system, the subscreen was not generated thereby causing a dump (error DYNPRO_NOT_FOUND) in transaction FB01 which was using the subscreen.
    Are customer subscreens not regenerated automatically when they are transported?
    Thanks.
    Ekit

    HEllo,
    Sometimes error happen in this process. Please re-generate your scrren.
    goto  OXK1 Select the screen and go to the menu option Subscreen -> Generate.  
    REgards,
    REnan Correa

  • Error Dynpro_not_found

    using this code to call me22 but getting error dynpro_not_found
    FORM transaction_bdc .
      DATA :
      wf_number type i,
      wf_trans type i,
      v_cnt(2) TYPE n,
      v_bst(2) TYPE n,
      v_bn TYPE i,
      v_bstpo(25),
      v_ebtyp(25),
      v_menge(25),
      v_eeind(25),
      v_xblnr(25),
      v_xblnr1(25),
      v_ebelp(2) TYPE n,
      v_ebelpt(2),
      v_menge1(11),
      v_ebt TYPE i,
      v_vebtyp LIKE ekes-ebtyp,
      v_eb(2) TYPE n,
      v_tcselflag(40),
      v_tem(2) TYPE n,
      v_correct TYPE i,
      v_file TYPE string.
      DATA: ls_outtab TYPE tb_struc.
      DATA: l_valid TYPE c,
            l_locked TYPE c.
      CALL METHOD g_grid->check_changed_data
        IMPORTING
          e_valid = l_valid.
      IF l_valid EQ 'X'.
        LOOP AT tb_output WHERE check EQ 'X' .
          MOVE-CORRESPONDING tb_output TO itab_output.
          APPEND itab_output.
          CLEAR itab_output.
        ENDLOOP.
        IF tb_output-check <> 'X'.
          MESSAGE e003 WITH text-004.
        ENDIF.
      ENDIF.
      loop at itab_output.
      if sy-subrc = 0.
      v_bst = v_bn + 1.
      else.
       v_bn = v_bn + 1.
       endif.
    endloop.
      IF itab_output[] IS NOT INITIAL.
        PERFORM open_group.
    ***looping at purchase order level.
        LOOP AT itab_output .
    *read table itab_output with key ebelp = ekpo-ebelp.
          CLEAR v_bn.
          CLEAR v_ebt.
          PERFORM bdc_dynpro USING 'SAPMM06E' '0105'.
          PERFORM bdc_field USING 'BDC_CURSOR'
          'RM06E-BSTNR'.
          PERFORM bdc_field USING 'BDC_OKCODE'
          '/00'.
          PERFORM bdc_field USING 'RM06E-BSTNR'
          itab_output-ebeln.
    ***Changing alphanumeric fields and quantity fields to character type**
    v_ebelp = itab_OUTPUT-ebelp.
    clear v_ebelpt.
    v_menge1 = itab_OUTPUT-menge.
    v_ebelpt = v_ebelp.
    ***End Of Changing**
    *Checking for the exact number of the item**
         LOOP AT itab_output where ebeln = tb_output-ebeln.
           IF tb_output-ebelp = itab_output-ebelp.
             exit.
           ELSE.
             v_bn = v_bn + 1.
           ENDIF.
         ENDLOOP.
    *v_bst = v_bn + 1.
    *End Of Checking**
    **Mapping items**
            v_tem = 1.
            CONCATENATE 'RM06E-BSTPO(' v_bst ')' INTO v_bstpo.
            CONCATENATE 'RM06E-TCSELFLAG(' v_tem ')' INTO v_tcselflag.
            PERFORM bdc_dynpro USING 'SAPMM06E' '0120'.
            perform bdc_dynpro using 'SAPLMEGUI' '0014'.
            PERFORM bdc_field USING 'BDC_CURSOR'
            v_bstpo.
            PERFORM bdc_field USING 'BDC_OKCODE'
            '=DETA'.
            PERFORM bdc_field USING 'RM06E-EBELP'
            v_ebelpt.
           itab_output-ebelp.
            PERFORM bdc_dynpro USING 'SAPMM06E' '0111'.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
            PERFORM bdc_field USING 'BDC_CURSOR'
            'EKPO-BSTAE'.
            PERFORM bdc_field USING 'BDC_OKCODE'
            '/00'.
            PERFORM bdc_dynpro USING 'SAPMM06E' '0120'.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
           PERFORM bdc_field USING 'BDC_CURSOR'
           v_bstpo.
            PERFORM bdc_field USING 'BDC_OKCODE'
            '=BSTA'.
            PERFORM bdc_field USING 'RM06E-EBELP'
            v_ebelpt.
           itab_output-ebelp.
            PERFORM bdc_field USING v_tcselflag
            'X'.
    **Checking weather Confirmation category already exists**
            SELECT ebtyp FROM ekes INTO v_vebtyp WHERE ebelp =
            itab_output-ebelp AND ebeln = itab_output-ebeln.
            ENDSELECT.
            IF sy-dbcnt > 0.
              v_ebt = sy-dbcnt.
            ENDIF.
            v_eb = v_ebt + 1.
    **End Of Checking**
    **For Line items**
            CONCATENATE 'EKES-EBTYP(' v_eb ')' INTO v_ebtyp.
            CONCATENATE 'EKES-MENGE(' v_eb ')' INTO v_menge.
            CONCATENATE 'RM06E-EEIND(' v_eb ')' INTO v_eeind.
            CONCATENATE 'EKES-XBLNR(' v_eb ')' INTO v_xblnr.
    *End**
            PERFORM bdc_dynpro USING 'SAPLEINB' '0200'.
    perform bdc_dynpro using 'SAPLMEGUI' '0014'.
            PERFORM bdc_field USING 'BDC_CURSOR'
            v_xblnr.
            PERFORM bdc_field USING 'BDC_OKCODE'
            '=BU'.
            PERFORM bdc_field USING v_ebtyp
           itab_output-ebtyp.
            PERFORM bdc_field USING v_eeind
            itab_output-eindt.
            PERFORM bdc_field USING v_menge
             v_menge1.
           itab_output-menge.
            PERFORM bdc_field USING v_xblnr
            itab_output-xblnr.
    wf_number = 0.
    **End Of Mappings**
    *loop at itab_output.
            MOVE-CORRESPONDING itab_output TO ekes.
            modify ekes.
            wf_number = wf_number + 1.
           MOVE-CORRESPONDING itab_output TO eket.
           MODIFY eket.
           MOVE-CORRESPONDING tb_output TO ekpo.
           MODIFY ekpo.
    *endloop.
    endloop.
         endif.
    wf_trans = 0.
           CALL TRANSACTION 'ME22'
           USING itbdc
           MODE   'A'.
    wf_trans = wf_trans + 1.
    *perform bdc_transaction using 'ME22N'.
    **End Of Purchase Order Loop**
        PERFORM close_group.
    ELSE.
       MESSAGE i083(zv).
    ENDIF.
    ENDFORM.                    " TRANSACTION_BDC

    HI ,
      This basically means that one of the screen number you have entered in the BDC table does not exist , to get the exact error again run the BDC in mode 'A'.
    Regards
    Arun

  • WBS error while doing MIGO

    Dear Experts,
    I am getting following error while performing MIGO - The WBS element XXXXXXX is not the lowest level in the project.
    Kindly let me know what does this error mean and how to resolve the issue.
    Thanks in advance
    Leena

    Leena0 wrote:
    - The WBS element XXXXXXX is not the lowest level in the project.
    >
    It seems there is a validation in the system which checks whether any child WBSE is available. It might be a business requirement to post actual cost only on the lowest WBSE. It could be a user exit. Please check the functional specifications prepared during the implementation.

  • Runtime Errors   DYNPRO_NOT_FOUND

    Hi,
    While running TCode ME21N we are getting the below mentioned Dump:We are on ECC 5.0 and the latest Support Pack.
    Runtime Errors         DYNPRO_NOT_FOUND
    Date and Time          11.12.2008 12:46:17
    ShrtText
         Screen does not exist
    What happened?
         Error in ABAP application program.
         The current ABAP program "RM_MEPO_GUI" had to be terminated because one of the
         statements could not be executed.
         This is probably due to an error in the ABAP program.
         The program had to be terminated.
    Error analysis
        Program "RM_MEPO_GUI" tried to use screen 1000.
         The screen does not exist.
    Trigger Location of Runtime Error
         Program                                 RM_MEPO_GUI
         Module Name                             SYSTEM-EXIT

    Hi Nitin,
    Kindly, please let me know how did you solve this issue.
    I have the same issue, where i am getting the DYNPRO_NOT_FOUND error while executing the SAPLMEGUI(ME21N).
    Error - SAPLMEGUI program tried to access screen 0120 which is not exist.
    Kindly recollect and help me how did you solve this problem.
    Thanks,
    Bharath.

  • Runtime error DYNPRO_NOT_FOUND when creating business entity in SAP RE-FX

    Hello,
    I have a problem...
    In SAP RE-FX (Real Estate) when I try to do the most basic thing like creating a business entity (transaction REBDBE), I get a runtime error 'DYNPRO_NOT_FOUND'.
      Program                                SAPLBUSS
      Include                                  LBUSSO00
      Row                                     1.543
      Module type                          (MODULE PBO)
      Module Name                         PBO_START_SUBSCREEN
    Does anybody know how I can fix this?
    Thanks in advance!

    Hi
    look OSS Note [162119|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3136323131313926] note youe need to have market place login
    1621119 - Dump DYNPRO_NOT_FOUND in SAPLBUSS in module PBO_START_SUBSCREEN
    Regards,
    koolspy.

  • Trans QA12  ERROR:DYNPRO_NOT_FOUND

    I create quality notification by using trans qm01 then I assign task to it and release both (notification and the task) 
    I can see and work on the task (i.e. change its status to complete) through trans qm02 .
    but when I want to work on the task using trans. QM12 I see the tasks list but when i choose one line (task)  and push on the task button I get  ABAP runtime errors    DYNPRO_NOT_FOUND
    I will appreciate yours help
    Eyal Rosenfeld

    Hi,
    First verify your Customizing of Notification Tabs.If every thing is OK.Then it could be source code problem.Pl. look for SAP notes.I checked for QM12 T.code there is a note very relevent for DYNPRO_NOT_FOUND problem.Pl. check
    Regards
    Mathi

  • Error While Posting MIGO for a Suncontracting PO ..

    Hi All
    I have created a Subcontracting PO and then transffered the material to subcon vendor's stock. now while doing MIGO for the same PO i am getting error as :
    "Account determination for entry EKCA FRN not possible"
    Please let me know why this error is coming?
    Anjan

    Hi Pradeep
    Thanks for your reply. I knew that G/L account entry in OBYC under FRN key is required but my concern is few days back I was doing MIGO successfully though same sttings were there that time also. Could please point put if any other thing is missing.
    Second would like to know how system is identifying FRN key?
    Anjan

  • Error while doing migo PO not yet release

    Hi experts,
    While doing posting in Migo for a PO . it showing error
    "Purchasing document not yet released."
    But i have already released. and while seeing the header details in ME22n, it showing as released.
    pls help
    regards
    arun

    Hi,
    I have checked in PO all are released and the indicator is in Release only R.
    The confirmation key also not ticked.
    but still showing that error message while posting
    regards
    arun

  • Error while doing MIGO for a sub-contracted item

    Hello to Everybody,
    I am facing below problem -
    Error : Incorrect CCtr <Cost Center Code> with this account (CCtr category must=D) for
    <Item Code> , while doing MIGO. (for receiving sub-contracted item from vendor).
    May I request for possible solution to above error ?
    regards,

    Dear Sanjay,
    You can determine the cost object for the posting of the  costs in the transaction OKB9.
    Following thread should resolve this issue:
    Re: cost of subcontracting
    Regards,
    Naveen.

  • Error while posting MIGO GR

    I am getting a very strange error while trying to post a GR in migo, the error is in the attached file, and no dump occurs, but after trying ST22 the dump is attached in the second file.
    No configuration has been changed recently, if someone can help i would greatly appreciate it.

    Please check these below notes. It seems some BADI implementation in your system is causing this:
    1776835 - Preventing inconsistencies by posting termination in MM
    1843441 - Optimizing error prevention mechanism from SAP Note 1776835

  • Error while posting MIGO for HU-Inbound Delivery

    Hi All
    When am trying to post the MIGO for HU Inbound Delivery Creation, am getting an error saying "Required parameters missing when calling up module MARV_SINGLE_READ". 
    Following areas I have verifed:
    The posting periods in MMRV shows current period.
    The Number range for HU ID and Delivery type HID is maintained.
    Now am looking for your expert opinion to resolve this issue.
    Regards
    K. Viswanathan

    Are you getting the same error in  transaction MB1C to create the delivery.Try in MB1C

  • Runtime error SAPSQL_ARRAY_INSERT_DUPREC  during migo

    Hi Friends,
    When I try doing MIGO with reference to a PO and save the document it gives me runtime error SAPSQL_ARRAY_INSERT_DUPREC.
    I have check the buffer, and the no. range everything is perfect, but still i am getting this error.
    Can anyone please give me the possible solution for this. Is there any SAP note that I need to apply.
    Regards,
    Wasim.

    Hello Wasim,
    The common cause of this termination is the material document             
    number range as per note 31793 - SAPSQL_ARRAY_INSERT_DUPREC.                                                                               
    So please check if the current numbers are synchronized with the          
    database tables:                                                                               
    OMBT trx x MKPF table                                                     
    OMH6 trx x EKKO table                                                                               
    If it has the same number range the sort dump should not be raised        
    anymore.                                                                               
    The main root causes are:                                                 
    -> when you are transporting number ranges from one client to another;                                                                               
    -> when you face a shut down in your system and you have defined a        
    buffer application server tolerance in transaction SNRO;                                                                               
    -> when you are doing the posting by using BAPI's and for some reason     
    the BAPI failed.                                                                               
    I hope it helps you.                                                      
    Best Regards,
    Fábio Almeida
    MM Consultant

  • G/L Account error while posting MIGO: Msg no: 8i195

    Dear Gurus,
    I am posting MIGO, while posting I am getting the following error msg:
    1) G/L a/l 300030 does not exit in the chart of account INT , msg no 8i195,
    I have created the account 300030 in FS01as MODVAT clearing account, but still I am getting the same error saying account is not maintained in english language even though I have maintained EN in translation tab and I have also checked the same through Tcode FSP0.
    But still same error is persist
    FYI: I have configured the material with all CIN setting.
    Kindly help..
    Regards,
    prashanth pai

    Dear Pankaj,
    I have maintained the same with FS00 tcode, but even then I am getting the same error.
    Prashanth

Maybe you are looking for

  • Error processing your request, Request no: 230 in stage : ROLE_OWNER_ROLE.

    Hi, When approver try to approve request,get this message. System log:2011-02-02 03:26:00,545 [SAPEngine_Application_Thread[impl:3]_36] ERROR Exception during EJB call, Ignoring and trying Webservice Call com.virsa.ae.service.ServiceException: Except

  • Crystal Report Connectivity to Function module

    Hi, I have a crystal report which is connected to a Function module in ECC(dev). After the function module moved to Quality I could repoint the crystal database to Quality. Later, some changes were made in the function module fields (eg: change in fi

  • ITunes 10.5 W7 x64 Problem (Policy 8.0 MS Error) Help?

    I have been trying for 2 days to install 10.5, I have 10.4 installed without an issue. However, I get this error when I install 10.5: An error occurred during the installation or assembly "policy.8.0.Microsoft.VC80.CRT,type="win32-policy",version="8.

  • S.O.S PROBLEMS COMUNICANTING EXTERNAL PROCESSES IN JAVA UNDER LINUX

    I've programmed a little program in C called "cinterpreter" which works like an interpreter, when it launches it shows a welcome message to the display (standart output), then is always waiting for strings from the keyboard showing the length of the

  • Satellite L855-124 can't change display brightness after Win 8 upgrade

    Hello everyone, I have a problem with my Toshiba Satellite L855-124 PSKACE laptop. After upgrading to Windows 8, I can't change the brightness backlight of the laptop screen. There seems to be an error in the graphical driver. When I install the Wind