Good reservation error

Hi Forums
I'm unable to create reservation from T code MB21
followimg error i'm getting
"Fld selectn for mvmt type  / acct 40100700 differs for Commitment item (020)
Message no. M7093
Diagnosis
Comparison of the field selection strings from movement type  and G/L account 40100700 has revealed that there is an incompatible field selection combination at one or more points.
Field for which the field selection is different: Commitment item
Example
On the movement type screen, a given field is a mandatory-entry field, whereas on the G/L account screen, the same field is suppressed.
System Response
You cannot post this transaction, unless you have changed the field selection adequately.
Procedure
Contact your system administrator.
Action to be taken by the system administrator
Check whether any postings resulting from this movement type are to be made to the G/L account determined automatically. If you find that the G/L account is not correct, check the automatic account determination in the Customizing system for valuation.
Proceed
If the G/L account is correct, use the report RM07CUFA to compare the field selection for the movement type with the field selection for the G/L account and change the incorrect settings or the field status group of the G/L account.
Proceed"

Hi Anshul,
                Execute the Program RM07CUFA, check out for the Comittment Itemand you will find the Descripency in the Mvt type Field Selection and G/L account Field Selection.
Please match it there itself and again try to post the same.
Ity is actually for the Field selection variant given in the GL account that is not allign with the Mvt Type.
Try not to change for the Movt type.
Hope it helps you.
Regards,
yawar Khan

Similar Messages

  • Goods Issue error - batches not defined for delivery item

    Hi,
    We are getting a Goods Issue error  u201CThe batches are not defined for delivery item 000010u201D.   We are only getting this error for a material that is being shipped against a particular third party sales scheduling agreement.  We went live in 2007 and we had no issues, but when we had to create a new Sched Agreement this year, for third party sales, we started to get this error.  However, if we re-activate the old scheduling agreement we do not get the error.  We have a batch job that executes the following steps:
    1.     VL06IG (collective goods receipt)
    2.     VL10 (collective delivery)
    3.     VL06O (collective GI)
    We have compared the 2 scheduling agreements and see no difference.  We are assuming it has something to do with how the scheduling agreement was setup, but are not sure.  Any suggestions on how to correct this problem would be much appreciated.
    Thanks in advance,
    Helen

    Dear Murali,
    The material has not changed at all.  I'm not sure what you mean by maintaining batches while receipt of the material.
    If I re-open the old scheduling agreement, we do not get the error message.  However, as soon as we use the new SD scheduling agreement, we get the error.  We are using the same material master on both scheduling agreements.
    Thanks,
    Helen

  • Good movement error

    Dear Experts,
    When trying to process some goods movement error , the following message with message number apperead.
    Value of the goods movement is negative:
    Message no. M7301
    How to process this error.
    Regards,
    Rammohan

    Hi
    Check the material price in material master, and increase the price using MR21 t code and try the goods movement. I am sure if you follow this process you will overcome this error, becuase i have faced same error and solved.
    Once you done with this please inform this to  your CO consultant.
    Thanks
    S.Murali

  • Release strategy for goods reservation.

    Hi Experts,
    I have client requirement for developing a custom release strategy for goods reservation in MM since there is no such strategy available in standard SAP.
    Would you please give some idea on how to go about it?
    Thnx in advance.
    Sudipto Choudhury.

    Hello Sudipto,
    Welcome to SDN.
    This is a really a large development and you need to talk to your MM consultant about the Functional spec.
    AS you need to find the flow first.
    Hope you understand what I mean. Without FS it is not possible to help.
    Regards,
    Suvendu

  • Enable Goods Movement Error Handling on Inventory Management

    Hello gurus.
    The Production department uses transaction COGI (Automatic Goods Movement Error Handling) to track what automatic goods issues were not performed due to errors like stock deficit, etc.
    My question is; is it possible to use this same COGI transaction to store manual goods movements that also end up in an error?
    For example, if I go to MIGO and I perform a Goods Issue with Movement Type 201; if I don't have enough stock of the material, normally I get an error and I cannot continute; instead I want the movement to fail and go to transaction COGI, where I can deal with it later.
    The main goal is not to interrupt the capture of the Goods Issues, if there is not enough stock in the system, the person should not stop to correct the error. It's something that is desired to deal with later.
    Any possibilities that you see?

    Hi,
      COGI transaction is Goods movements error status while process order or production order level.
      If Goods are not avaiable in store/warehouse, how to post thru' 201 movement. In case stock is avaiable goods movements are only thru' 261 movement.
      regards,
      satish kumar

  • SecurityException: "Reserve" errors when obtaining jdbc connections

    Hi,
    We've seen an interesting issue come up with Weblogic 6.1 SP3. Not sure why this
    is happening now.
    I am using the MBean approach to creating Connection Pools dynamically. This still
    works. The main thing I had to change for SP3 was to add a user/password when
    I grab the Admin MBean. So this is all working fine.
    The problem I get is when I try to make a connection. I end up getting a Pool
    connect failed: java.lang.SecurityException: User "guest" does not have Per
    mission "reserve" based on ACL "dynaPool". There were two ways I saw to solve
    this, and I was wondering which was the best.
    1) Add an acl that looks like "acl.reserve.dynaPool=everyone", and that seems
    to work.
    2) User the Driver.connect(String url, Properties aProps) where I include a "user"
    and "password" key for the properties file. I use the same user/password that
    I used to grab the Admin MBean. Problem is, I can't find any doc on this, or why
    it works. Maybe you can enlighten me on why this works.
    Anyway, I was curious on why 2) works, as well as which approach is the recommended.
    We didn't see this reserve error until we tried to utilize SP3. Thanks in advance
    for your assistance.
    Michael Dolbear

    Hi Michael,
    When there is no user provided, user "guest" is used.
    AFAIR in SP2 in ACL was not defined on a pool, this effectively
    allowed making connection to everyone, including guest.
    I haven't worked on SP3, but it looks like the approach changed.
    Speaking about the preferable way of making a connection,
    the second one is better as the principal is clearly specified.
    The first method can be harmful from security point of
    view.
    Hope it helps,
    Regards,
    Slava Imeshev
    "Michael Dolbear" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hi Slava,
    1) Getting the connection:
    Properties tempProperties = new Properties();
    tempProperties.setProperty(USER,
    aUserName);
    tempProperties.setProperty(PASSWORD,
    aPassword);
    tempDriver =(Driver)Class.forName(this.getJDBCDriverClassName()).newInstance();
    tempConnection = tempDriver.connect(this.getJDBCDriverURL(),
    aProperties);
    2) My test case deletes the connection pool after its done, but
    the main things to be know are
    that I am using the weblogic.jdbc.jts.Driver and the url is
    "jdbc:weblogic:jts:someName".
    If that's not enough, I will get you the definition. The connection poolruns
    on top of a two tier driver that is the Oracle thin driver.
    3)Here is the stack trace. The is no weblogoic code in it (just ours), soI don't
    think it will tell you much other than the message:
    com.thc.ids.inf.framework.opf.DatabaseConnectionFailure:RDBMSDataStore:::failure
    to get c
    onnection-Pool connect failed: java.lang.SecurityException: User "guest"does
    not have Per
    mission "reserve" based on ACL "dynaPool".
    atcom.thc.ids.inf.framework.opf.rdbms.datastore.RDBMSDataStore.getConnection(R
    DBM
    SDataStore.java:74)
    atcom.thc.ids.inf.framework.opf.rdbms.query.RDBMSObjectQuery.getConnection(RDB
    MSO
    bjectQuery.java:104)
    atcom.thc.ids.inf.util.persistence.content.queries.DrugsForNameQuery.findDrugs
    For
    Name(DrugsForNameQuery.java:88)
    atcom.thc.ids.inf.util.persistence.content.queries.DrugsForNameQuery.runQuery(
    Dru
    gsForNameQuery.java:69)
    atcom.thc.ids.inf.services.business.css.spi.oracle.OracleSearchProvider.basicR
    unQ
    uery(OracleSearchProvider.java:251)
    atcom.thc.ids.inf.services.business.css.spi.oracle.OracleSearchProvider.basicE
    xec
    uteSearch(OracleSearchProvider.java:169)
    atcom.thc.ids.inf.services.business.css.spi.oracle.OracleSearchProvider.execut
    eSe
    arch(OracleSearchProvider.java:65)
    atcom.thc.ids.inf.services.business.css.ContentSearchService.executeSearch(Con
    ten
    tSearchService.java:89)
    at java.lang.reflect.Method.invoke(Native Method)
    atcom.thc.ids.inf.util.reflection.MethodDescription.invokeMethod(MethodDescrip
    tio
    n.java:181)
    atcom.thc.ids.inf.util.reflection.MethodInvocation.invoke(MethodInvocation.jav
    a:7
    9)
    atcom.thc.ids.inf.framework.service.internal.ServerObject.invoke(ServerObject.
    jav
    a:141)
    atcom.thc.ids.inf.framework.service.J2EE.ejb.ServiceBean_nd24gc_EOImpl.invoke(
    Ser
    viceBean_nd24gc_EOImpl.java:37)
    atcom.thc.ids.inf.framework.service.J2EE.ejb.ServiceBean_nd24gc_EOImpl_WLSkel.
    inv
    oke(Unknown Source)
    atweblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:305)
    atweblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java
    :93
    atweblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:274)
    atweblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:2
    2)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    "Slava Imeshev" <[email protected]> wrote:
    Hi Michael,
    A couple of questions:
    1. Could you show me how exactly how you obtain a connection?
    2. Could you persist dynamic pool definition and post it here?
    3. Well, three questions :) Could you post the stacktrace you get?
    Regards,
    Slava Imeshev
    "Michael Dolbear" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    We've seen an interesting issue come up with Weblogic 6.1 SP3. Notsure
    why this
    is happening now.
    I am using the MBean approach to creating Connection Pools dynamically.This still
    works. The main thing I had to change for SP3 was to add a
    user/password
    when
    I grab the Admin MBean. So this is all working fine.
    The problem I get is when I try to make a connection. I end up gettinga
    Pool
    connect failed: java.lang.SecurityException: User "guest" does nothave
    Per
    mission "reserve" based on ACL "dynaPool". There were two ways I sawto
    solve
    this, and I was wondering which was the best.
    1) Add an acl that looks like "acl.reserve.dynaPool=everyone", andthat
    seems
    to work.
    2) User the Driver.connect(String url, Properties aProps) where I
    include
    a "user"
    and "password" key for the properties file. I use the same
    user/password
    that
    I used to grab the Admin MBean. Problem is, I can't find any doc onthis,
    or why
    it works. Maybe you can enlighten me on why this works.
    Anyway, I was curious on why 2) works, as well as which approach isthe
    recommended.
    We didn't see this reserve error until we tried to utilize SP3. Thanksin
    advance
    for your assistance.
    Michael Dolbear

  • Reserved error (-7732); there is no message for this error.

    I have been trying for months to link an Oracle 10g database to my Access 2010 database. I have successfully added the appropriate Oracle ODBC connection. However, when I try to import a table from the database, I get the error "Reserved error (-7732);
    there is no message for this error." Really useful, isn't it? I've tried searching both the Microsoft and Oracle forums but no solution that I've seen on this error has been able to fix this. I have a Windows 7 64-bit machine, I'm running 64-bit Office
    and cannot change to the 32-bit version. I have the 64-bit Oracle ODBC driver installed properly as well. Does anyone have any other information on this error? It boggles my mind why someone would come up with this error and not have any further information
    on it but still bother to put "there is no message for this error." Anyway, someone please help me out. Thanks.

    Hi,
    As far as I know, this is known to occur with 64 bit versions of Access 2010 and Oracle Instant Client tools when the Oracle Instant Client/Data Access Components are lower than version 11.2.0.3.0.
    Please try to update the Oracle data access components to version 11.2.0.3.0 or newer.
    Here is the link to download the latest data access components from Oracle
    http://www.oracle.com/technetwork/database/windows/downloads/index-090165.html
    More reference:
    Installation instructions
    http://www.oracle.com/technetwork/topics/dotnet/downloads/install112030-1440546.html
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    George Zhao
    TechNet Community Support

  • Goods Issue against Reservation (Error in MB1A)

    Hi All,
           While doing Goods Issue (MB1A 261 Mov type) against Reservation for Production Order, even if Reserved qty and entered qty is same, we are getting the error message "Entered Qty is more than Reserved Qty for material".
         But for that particular material , in CO03, in Component Overview, different line items are there with different batches. So in reservation list, with same reservation number, different line items are there for that particular material having different batches. But in MMBE, for each batch, stock is available
    Please help to resolve this issue.
    Regards,
    Rosh

    Dear Rosh,
    What is the error message that you are getting?post the error no and class,just double lcik on the error message and check the
    diagnosis for the same error message.
    Are the components batch managed materials?check in CO03 in the top menu>goto>documented goods movements,check
    whether already some goods movements has been performed
    Check and revert
    Regards
    S Mangalraj

  • Unplanned goods issue error

    Hi ,
    How to do unplanned goods issue of those components which are not in the BOM of production order. In migo we can do it by 261 and choosing others.till here its ok but against what document migo will be done. I mean to say there should be some document which the shop floor guy must give to the stores so that he can do the migo( unplanned goods issue) in SAP.
    I thought i can address this problem by creating a reservation and then take a print of that reservation and print out can be the document for the stores.
    So I tried to create a reservation in MB21 , movement type 261, but couldnt create the reservation because of following error:
    "Manual reservation for order category 10 not allowed"
    Please help to resolve..
    Is there any other to create a document without creating a reservation??
    I want to see a report of unplanned goods issue VS planned goods issue.Is it available or has to be developed?
    Regards

    Hi,
    I know thru MB1A or migo 261 i can issue goods to prod order and that will flow as unplanned goods issue. But if the worker  or supervisor  on shop floor goes and tells stores to issue him goods which are not in the Goods issue slip, then will the stores do this above mentioned transaction?? no he will not. he will ask for some hard copy.
    we should think from business point of view also.
    What i am asking is:  the way we have reservation print out or goods issue slip print as a document to enable stores to issue planned goods, what is the document to issue unplanned goods ??
    Please help.
    Regards.

  • When i do posting of goods, the error is "Mat. KEROSINE is a missing part"

    Hi,
    When I first time posting the qty for my material (kerosine) it shows the following error.
    Help needed to solve this.
    System Response----
    The system could neither determine any MRP controller to notify nor any output type used to send the mail message.
    Procedure
    Please contact the MRP controller responsible or use the current stock/ requirements list to check for which purpose (production order, reservation, for example) the material KEROSINE is required.
    Proceed
    Action to be taken by system administrator
    If the MRP controller wishes to be informed of missing parts situations via a mail message, you have to complete the following settings in the Customizing system of Inventory Management:
    Missing parts check at goods receipt
    set message determination
    Regards

    HI,
    path: ImgMaterial ManagementInventory and physical management--plant parameters.
    if you are using an IDES version copy the plant 1000 and change the plant to ur plant and make sure that the missing part field is unchecked and save it
    hope this will reslove the problem
    reward points if the answer is helpful
    REgards,
    Murali

  • Post Good Issue Error

    When I Press the Post Goods Issue Button for a delivery in SD the error dump appears.
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          10/15/2008 06:38:52
    Short dump has not been completely stored (too big)
    Short text
    The current application triggered a termination with a short dump.
    What happened?
    The current application program detected a situation which really
    should not occur. Therefore, a termination with a short dump was
    triggered on purpose by the key word MESSAGE (type X).
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    Short text of error message:
    No RFC destination is defined for SAP Global Trade Services
    Long text of error message:
    Technical information about the message:
    Message class....... "/SAPSLL/PLUGINR3"
    Number.............. 002
    Variable 1.......... " "
    Variable 2.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    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:
    "MESSAGE_TYPE_X" " "
    "SAPLMBWL" or "LMBWLU21"
    "MB_POST_GOODS_MOVEMENT"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    System environment
    SAP-Release 700
    Application server... "biw7sap"
    Network address...... "68.88.249.38"
    Operating system..... "Windows NT"
    Release.............. "5.2"
    Hardware type........ "4x Intel 801586"
    Character length.... 16 Bits
    Pointer length....... 32 Bits
    Work process number.. 1
    Shortdump setting.... "full"
    Database server... "BIW7SAP"
    Database type..... "ORACLE"
    Database name..... "ECS"
    Database user ID.. "SAPSR3"
    Char.set.... "C"
    SAP kernel....... 700
    created (date)... "Mar 20 2007 00:45:21"
    create on........ "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version. "OCI_10201_SHARE (10.2.0.1.0) "
    Patch level. 102
    Patch text.. " "
    Database............. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE 10.2.0.."
    SAP database version. 700
    Operating system..... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory consumption
    Roll.... 8176
    EM...... 26130600
    Heap.... 0
    Page.... 57344
    MM Used. 19070624
    MM Free. 785208
    User and Transaction
    Client.............. 800
    User................ "CUSER14"
    Language key........ "E"
    Transaction......... "VL02N "
    Program............. "SAPLMBWL"
    Screen.............. "SAPMV50A 1000"
    Screen line......... 39
    Information on where terminated
    Termination occurred in the ABAP program "SAPLMBWL" - in
    "MB_POST_GOODS_MOVEMENT".
    The main program was "SAPMV50A ".
    In the source code you have the termination point in line 59
    of the (Include) program "LMBWLU21".
    Source Code Extract
    Line
    SourceCde
    29
       when a goods movement for an inbound or outbound delivery is posted
    30
       directly from VL31N/ VL01N, XBLNR is not yet known when we call
    31
       CKMV_AC_DOCUMENT_CREATE, but the number is supposed to be stored in
    32
       BKPF as well. There is no other way to forward XBLNR to FI as not
    33
       every document is posted by MB_CREATE -> a new function module in
    34
       MBWL for transferring the information, called by FI, meant to load
    35
       the complete function group for all MBxx postings when this isn't
    36
       required (Performance). Would be the better way to transport the
    37
       information after switching off MBxx in later release.
    38
       corresponding IMPORT ... FROM MEMORY ... can be found in
    39
       AC_DOCUMENT_POST (FORM FI_DOCUMENT_PREPARE (LFACIF5D))
    40
    l_mem_id = 'MKPF-XBLNR'.                                   " 641365
    41
    EXPORT xblnr = xblnr_sd TO MEMORY ID l_mem_id.             " 641365
    42
    ENDIF.
    43
    IF xmkpf-xabln IS INITIAL.                               "note 434093
    44
    CALL FUNCTION 'MB_XAB_NUMBER_GET'.                   "note 434093
    45
    ENDIF.                                                   "note 434093
    46
    47
    ENHANCEMENT-POINT MB_POST_GOODS_MOVEMENTS_01 SPOTS ES_SAPLMBWL STATIC.
    48
    49
    ENHANCEMENT-POINT MB_POST_GOODS_MOVEMENTS_02 SPOTS ES_SAPLMBWL.
    50
    CALL FUNCTION 'MB_CREATE_MATERIAL_DOCUMENT_UT'
    51
    EXCEPTIONS
    52
    error_message = 4.
    53
    As soon as we have started to put things into UPDATE TASK, we must
    54
    ensure that errors definitely terminate the transaction.
    55
    MESSAGE A is not sufficient because it can be catched from
    56
    external callers which COMMIT WORK afterwards, resulting in
    57
    incomplete updates. Read note 385830 for the full story.
    58
    IF NOT sy-subrc IS INITIAL.
    >>>>>
    MESSAGE ID sy-msgid TYPE x NUMBER sy-msgno WITH            "385830
    60
    sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    61
        MESSAGE A263.
    62
    ENDIF.
    63
    Optische Archivierung
    64
    Spaete Erfassung mit Barcode
    65
    Redesign of barcode handling -> note 780365
    66
    PERFORM barcode_update(sapmm07m) USING xmkpf-mblnr
    67
    xmkpf-mjahr
    68
    barcode.
    69
    70
    MOVE-CORRESPONDING xmkpf TO emkpf.
    71
    CALL FUNCTION 'MB_MOVEMENTS_REFRESH'
    72
    EXCEPTIONS
    73
    error_message = 4.
    74
    MOVE-CORRESPONDING xmkpf TO emkpf.
    75
    CALL FUNCTION 'MB_MOVEMENTS_REFRESH'
    76
    EXCEPTIONS
    77
    error_message = 4.
    78
    IF NOT sy-subrc IS INITIAL.
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    4
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    1
    SY-FDPOS
    6
    SY-LSIND
    0
    SY-PAGNO
    0
    SY-LINNO
    1
    SY-COLNO
    1
    SY-PFKEY
    W0
    SY-UCOMM
    WABU_T
    SY-TITLE
    Delivery 80015203 Change: Overview
    SY-MSGTY
    X
    SY-MSGID
    /SAPSLL/PLUGINR3
    SY-MSGNO
    002
    SY-MSGV1
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    SY-MODNO
    0
    SY-DATUM
    20081015
    SY-UZEIT
    063852
    SY-XPROG
    SAPLBPFC
    SY-XFORM
    CONVERSION_EXIT
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    10 FUNCTION     SAPLMBWL                            LMBWLU21                               59
    MB_POST_GOODS_MOVEMENT
    9 FORM         SAPMV50A                            FV50XF0B_BELEG_SICHERN                769
    BELEG_SICHERN_POST
    8 FORM         SAPMV50A                            FV50XF0B_BELEG_SICHERN                 86
    BELEG_SICHERN_01
    7 FORM         SAPMV50A                            FV50XF0B_BELEG_SICHERN                 16
    BELEG_SICHERN
    6 FORM         SAPMV50A                            MV50AF0F_FCODE_SICH_OHNE_CHECK         10
    FCODE_SICH_OHNE_CHECK
    5 FORM         SAPMV50A                            MV50AF0F_FCODE_WABU                    11
    FCODE_WABU
    4 FORM         SAPLV00F                            LV00FF0F                               92
    FCODE_BEARBEITEN
    3 FUNCTION     SAPLV00F                            LV00FU02                               44
    SCREEN_SEQUENCE_CONTROL
    2 FORM         SAPMV50A                            MV50AF0F_FCODE_BEARBEITEN              62
    FCODE_BEARBEITEN
    1 MODULE (PAI) SAPMV50A                            MV50AI0F                               52
    FCODE_BEARBEITEN
    Chosen variables
    Name
    Val.
    No.      10 Ty.          FUNCTION
    Name  MB_POST_GOODS_MOVEMENT
    XBLNR_SD
    0080015203
    3333333333
    0080015203
    0000000000
    0000000000
    EMKPF
    000000000000000000          ##
    2222222222333333333333333333222222222200222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    XMSSA[]
    Table IT_589[0x196]
    FUNCTION-POOL=MBWLDATA=XMSSA[]
    Table reference: 307
    TABH+  0(20) = 00000000200D869300000000330100004D020000
    TABH+ 20(20) = 00000000C4000000FFFFFFFF04090300E01B0000
    TABH+ 40( 8) = 08000000C1108001
    store        = 0x00000000
    ext1         = 0x200D8693
    shmId        = 0     (0x00000000)
    id           = 307   (0x33010000)
    label        = 589   (0x4D020000)
    fill         = 0     (0x00000000)
    leng         = 196   (0xC4000000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000134
    occu         = 8     (0x08000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = Not allocated
    pghook       = Not allocated
    idxPtr       = Not allocated
    shmTabhSet   = Not allocated
    id           = Not allocated
    refCount     = Not allocated
    tstRefCount  = Not allocated
    lineAdmin    = Not allocated
    lineAlloc    = Not allocated
    shmVersId    = Not allocated
    shmRefCount  = Not allocated
    shmIsReadOnly = Not allocated
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    collHook     = 0x00000000
    ext2         = 0xD80C8693
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x980C8693
    delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    RRESWK
    22222222222
    00000000000
    00000000000
    00000000000
    %_SPACE
    2
    0
    0
    0
    L_MEM_ID
    MKPF-XBLNR
    4454254445
    DB06D82CE2
    0000000000
    0000000000
    RSJOBINFO
    00000000000000                                  ##
    2222222222222222222222222222222233333333333333222222222222222222222222222222222200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000
    RNAME
    R
    52222
    20000
    00000
    00000
    SCREEN
    BT_UALL
    4555444222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    24F51CC000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    IT_RSTRUCT
    Table[initial]
    XMKPF-XABLN
    2222222222
    0000000000
    0000000000
    0000000000
    %_DUMMY$$
    2222
    0000
    0000
    0000
    SYST-REPID
    SAPLMBWL
    5454445422222222222222222222222222222222
    310CD27C00000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    ODM07M[]
    Table[initial]
    GT_GOCOMP
    000000000000                                             ####              00000000000000
    3333333333332222222222222222222222222222222222222222222220000222222222222223333333333333322222
    000000000000000000000000000000000000000000000000000000000000C000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY-SUBRC
    4
    0000
    4000
    L_ATPCB
    22222
    00000
    00000
    00000
    XMKPF-MBLNR
    4900035075
    3333333333
    4900035075
    0000000000
    0000000000
    XMKPF-MJAHR
    2008
    3333
    2008
    0000
    0000
    BARCODE
    2222222222222222222222222222222222222222
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    T003
    800WL49AMS                          XX  XXXXXH
    3335433445222222222222222222222222225522555554222222
    8007C491D3000000000000000000000000008800888888000000
    0000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000
    KNVV
    00000000                     000
    2222222222222222222222222222222223333333322222222222222222222233322222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    T064B
    2222222222222222222222
    0000000000000000000000
    0000000000000000000000
    0000000000000000000000
    VGMSEG[]
    Table[initial]
    No.       9 Ty.          FORM
    Name  BELEG_SICHERN_POST
    MAT_AUF_HINWEIS_COPY
    2
    0
    0
    0
    XLIKP[]
    Table IT_392[1x2360]
    PROGRAM=SAPMV50ADATA=XLIKP[]
    Table reference: 197
    TABH+  0(20) = 082D1E94E0C8119300000000C500000088010000
    TABH+ 20(20) = 01000000380900003000000004FC0100D0070000
    TABH+ 40( 8) = 04000000C1108001
    store        = 0x082D1E94
    ext1         = 0xE0C81193
    shmId        = 0     (0x00000000)
    id           = 197   (0xC5000000)
    label        = 392   (0x88010000)
    fill         = 1     (0x01000000)
    leng         = 2360  (0x38090000)
    loop         = 48    (0x30000000)
    xtyp         = TYPE#000027
    occu         = 4     (0x04000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x18081E94
    pgHook       = 0x00000000
    idxPtr       = 0x00000000
    shmTabhSet   = 0x00000000
    id           = 1541  (0x05060000)
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 4     (0x04000000)
    lineAlloc    = 4     (0x04000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 1     (0x01000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0xA87F1B94
    collHook     = 0x00000000
    ext2         = 0x28940F93
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x70A22B93
    delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    XLIKP
    8000080015203CUSER14     06580920081014      Z0011000LF   X20081016200810152008101420081017200
    3333333333333455453322222333333333333332222225333333344222533333333333333333333333333333333333
    800008001520335352140000006580920081014000000A0011000C6000820081016200810152008101420081017200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    <%_L195>
    CVBAP
    8000000012132000020T-AS301           T-AS301                                       0201     Su
    3333333333333333333524533322222222222524533322222222222222222222222222222222222222233332222257
    80000000121320000204D13301000000000004D1330100000000000000000000000000000000000000002010000035
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    MAT_AUF_HINWEIS_GEPRUEFT
    2
    0
    0
    0
    <%_L195>-UPDKZ
    UPDKZ_DELETE
    D
    4
    4
    0
    0
    IVBPA52_PAGIND
    0.0.1.
    000
    00C
    VBUK_KEIN_KREDITCHECK
    2
    0
    0
    0
    XLIPS[]
    Table IT_83[1x3552]
    PROGRAM=SAPMV50ADATA=XLIPS[]
    Table reference: 50
    TABH+  0(20) = E8F54D93F0282893000000003200000053000000
    TABH+ 20(20) = 01000000E00D0000FFFFFFFF0400000080330000
    TABH+ 40( 8) = 04000000C1108401
    store        = 0xE8F54D93
    ext1         = 0xF0282893
    shmId        = 0     (0x00000000)
    id           = 50    (0x32000000)
    label        = 83    (0x53000000)
    fill         = 1     (0x01000000)
    leng         = 3552  (0xE00D0000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000260
    occu         = 4     (0x04000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xD0896993
    pgHook       = 0x00000000
    idxPtr       = 0x00000000
    shmTabhSet   = 0x00000000
    id           = 410   (0x9A010000)
    refCount     = 1     (0x01000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 4     (0x04000000)
    lineAlloc    = 4     (0x04000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 2     (0x02000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0xC8402493
    collHook     = 0x00000000
    ext2         = 0x50E41293
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0xC8532493
    delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    VBUK_KREDIT_NEUAUFBAU
    2
    0
    0
    0
    LT_INB_CIFEXT
    Table IT_2692[1x476]
    PROGRAM=SAPMV50AFORM=BELEG_SICHERN_POSTDATA=LT_INB_CIFEXT
    Table reference: 1104
    TABH+  0(20) = C095F993B8301E940000000050040000840A0000
    TABH+ 20(20) = 01000000DC010000FFFFFFFF0400000090AC0100
    TABH+ 40( 8) = 10000000C1308401
    store        = 0xC095F993
    ext1         = 0xB8301E94
    shmId        = 0     (0x00000000)
    id           = 1104  (0x50040000)
    label        = 2692  (0x840A0000)
    fill         = 1     (0x01000000)
    leng         = 476   (0xDC010000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#002271
    occu         = 16    (0x10000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 8     (cmpManyEq)
    occu0        = 1
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    isCtfyAble   = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0xF077F993
    pgHook       = 0x00000000
    idxPtr       = 0x00000000
    shmTabhSet   = 0x00000000
    id           = 1542  (0x06060000)
    refCount     = 1     (0x01000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 16    (0x10000000)
    lineAlloc    = 16    (0x10000000)
    shmVersId    = 0     (0x00000000)
    shmRefCount  = 2     (0x02000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    collHook     = 0x00000000
    ext2         = 0x70E43294
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x70041E94
    delta_head   = 0000000000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    V50AGL-DISPLAY_FROM_ARCHIVE
    2
    0
    0
    0
    XLIKP-VBELN
    0080015203
    3333333333
    0080015203
    0000000000
    0000000000
    EMKPF
    4900035075200800000000000000          ##
    3333333333333333333333333333222222222200222222222222222222222222222222222222222222222222222222
    4900035075200800000000000000000000000010000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    VBMUE
    2222222222222222222
    0000000000000000000
    0000000000000000000
    0000000000000000000
    VBSK
    0000000000000000000000####   ####
    2222222222222222222222222233333333333333333333330000222000022222222222222222222222222222222222
    000000000000000000000000000000000000000000000000000C000000C00000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    PACKDATEN_VERBUCHEN
    2
    0
    0
    0
    No.       8 Ty.          FORM
    Name  BELEG_SICHERN_01
    IF_FINAL_CHECK
    2
    0
    0
    0
    LF_ONLY_FINAL
    2
    0
    0
    0
    LF_ONLY_PREPARE
    2
    0
    0
    0
    LF_FLAG_DOCNUM_NEW
    2
    0
    0
    0
    CF_SUBRC
    0
    0000
    0000
    T683V
    22222222222222222222222222222222222
    00000000000000000000000000000000000
    00000000000000000000000000000000000
    00000000000000000000000000000000000
    SY-XPROG
    SAPLBPFC
    5454454422222222222222222222222222222222
    310C206300000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    IF_RENUMBER
    X
    5
    8
    0
    0
    SPACE
    2
    0
    0
    0
    XVBPA_FIRSTIND
    0.0.1.
    000
    00C
    SY-REPID
    SAPMV50A
    5454533422222222222222222222222222222222
    310D650100000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    IF_POST
    X
    5
    8
    0
    0
    SYST-REPID
    SAPMV50A
    5454533422222222222222222222222222222222
    310D650100000000000000000000000000000000
    0000000000000000000000000000000000000000
    0000000000000000000000000000000000000000
    XVBPA_AKTIND
    0.0.1.
    000
    00C
    No.       7 Ty.          FORM
    Name  BELEG_SICHERN
    %_DUMMY$$
    2222
    0000
    0000
    0000
    IVBPA2KEY
    000000
    22333333
    00000000
    00000000
    00000000
    IV_FINAL_CHECK_DURCHFUEHREN
    2
    0
    0
    0
    CHARX
    X
    5
    8
    0
    0
    LF_SUBRC
    0
    0000
    0000
    No.       6 Ty.          FORM
    Name  FCODE_SICH_OHNE_CHECK
    IVBPA1KEY
    000000
    33333322
    00000000
    00000000
    00000000
    T180-AKTYP
    V
    5
    6
    0
    0
    AKTYP-CREATE
    H
    4
    8
    0
    0
    CVBFA
    000000          000000 ####   ####        00000000000000                        0
    2222222222222333333222222222233333320000222000022222222333333333333332222222222222222222222223
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000C000000C00000000000000000000000000000000000000000000000
    XSDCTRLFLAG
    22
    00
    00
    00
    SYST
    |    ######################################T#######################################µ#########XP####
    000000000000000000000000000000800000005000000000000000000000000000000000000010B0001000AF550000
    0000100000000000000010601000104000000040006050407000000000000000000000000000C0500010300F800300
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000000AF000000
    00000000000000000000000000000000000000000000000000000000000000000000000000000000000000BF00000C
    GC_FCODE_PODCANC
    ABBR
    4445222222222222222222222222222222222222222222222222222222222222222222
    1222000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    XSDCTRLFLAG-PROTSAVE
    2
    0
    0
    0
    YES
    X
    5
    8
    0
    0
    GC_FCODE_PODQUIT
    PODQ
    5445222222222222222222222222222222222222222222222222222222222222222222
    0F41000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    PROTOCOLCALLER-SDL
    SDL
    5442
    34C0
    0000
    0000
    GC_FCODE_PODSTOR
    PODS
    5445222222222222222222222222222222222222222222222222222222222222222222
    0F43000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    0000000000000000000000000000000000000000000000000000000000000000000000
    LIKP-VBELN
    0080015203
    3333333333
    0080015203
    0000000000
    0000000000
    LIPS-POSNR
    000010
    333333
    000010
    000000
    000000

    Hi
    As soon as we have started to put things into UPDATE TASK, we must
    54 ensure that errors definitely terminate the transaction.
    55 MESSAGE A is not sufficient because it can be catched from
    56 external callers which COMMIT WORK afterwards, resulting in
    57 incomplete updates. Read note 385830 for the full story.
    From the above message I think u need to read the not 385830 in tcode snote.
    Thx.

  • Goods receipt error

    Hello Gurus,
    I have a valid line item on the PO with Qty 2. When i am trying to do a goods receipt for this PO it errors saying PO xxxxxxxxxxx has no items. The PO is released and everything in the PO seems fine. Can you help me fix this and do a GR
    Thanks in advance
    MV

    If your PO is release than only one thing you check on the PO is, any Inbound delivery document created for this PO? check on the confirmation tab of PO for Inbound delivery
    if it is then you have to do GR against the inbound

  • Free Goods Pricing Error

    Dear SAP Gurus,
    I have configurde the Free Goods as Exclusive and accordingly kept the condition records. When I am creating Sales Order, I have given the first line item as 1482 and when I entered
    , the second line item automaticaly vame with item category TANN. Everything is fine up to this. I have kept price in VK11 for the material 1482 and 1483 is the free material.
    At the time of creating Sales Order, it giving the error as "Pricing error: Mandatory Condition ZPR1 is missing"
    I could not find out any solution for this. Please help in finding the solution for this.
    Thanks,
    Jans

    Hi Jans
    Your free goods configuration is something like buy 10 pens and get one pencil free
    Free goods are picked by R100 condition type with requirement 55 and aternate base value formula 28 in the pricing procedure
    Free goods are represented with item category TANN with pricing as B in VOV7 which measns 100 % discount
    This means the price of the pencil is to be maintained as condition record in VK11 for the condition type  ZPR1 (in your case) which will be picked by the system and nullifies it with 100 % discount
    This is missing from your end (this is my guess only)
    Without knowing the price of the second material 1483 how the system will give 100 % discount for it
    Soln is
    Maintain the condition record for the condition type  ZPR1 in VK11 for the free material 1483
    Hope this may help you
    Regards
    Raja

  • MIGO Goods Receipt - error with Movement Types on GR from Inbound Delivery

    Hi,
    I am getting an error message when processing a Goods Receipt (MIGO) against an Inbound Delivery with as 2 lines with different movement types, a standard 101 and a 970 (the latter being a user defined movement type for free goods).
    The error message I get is 'Movement type 970 is not allowed; only 101 is allowed
    Message no. BORGR622'
    This error message only occurs with a Goods Receipt against an Inbound Delivery, we are able to process a similar Goods Receipt using MIGO against a Purchase Order, with two different movement types 101 and 970, without any issues. 
    It is only a problem with a GR against an Inbound Delivery which is necessary in our MM solution.
    As anybody and ideas how to resolve this?  I cannot see anything obvious in config, and have not spotted any SAP OSS notes either.
    I should mention that we can process a single line Inbound Delivery and Goods Receipt for the Movement Type 970 also!

    Thanks for the reply.  The Price Control Indicator is 'S'.
    The solution was set up at my company before I joined, but the different movement type is to enable the free goods stock to make a Finance posting to a Bonus Stock GL Account.  Bonus stock sale update the same account.
    As I mention the '970' movement type worked fine with Goods Receipt against a Purchase Order (it was coded into to the user exit). 
    The MM procedures were changed to use the Inbound Delivery matched to the PO, this had a result that when the Goods receipt was posted in MIGO it posted as 101 movement, as the PO number was not being recognised.
    By making a further change to the user exit we able to suggest the '970' movement type, but now get the BORGR622 error I refer to.
    '511' is not possible against an inbound delivery either.

  • ECS Goods Receipt Errors

    Hi,
    i am opening this thread since i couldn't find any threads about that topic and i cannot believe that i am the only one having this issue. In general, the issue we face with SRM 5.5 ECS is that we have a lot of issues with the valuated goods receipt in the backend ECC6. Mainly for two reasons:
    1) we have FI validations in ECC (OB28) in place
    2) we have GL accounts in the material group - GL account mapping, that require a certain account assignment category as defined in the field status group.
    Issue
    The issue is now that during SC and PO creation these validations do not take place. However once the idoc is process and posted in the backend these validations are done and than causing an error. However since our approval of the SC is based on the account assignment category we do not want to change the PO afterwards w/o any approval for this budget code.
    Possible Solution
    As a consquence i thought about kind of simulation of the Goods receipt in the backend, bringing up the error messages already during SC creation to prevent "wrong" SC's from being generated and approved. Would be interested how you would solve this or maybe addressed this issue already?
    Thanks

    Hi,
    There is a function module used to do any accounting validations in SC.
    This FM is mapped in BBP_FUNCTION_MAP (you can view the entries in SM30). 
    You can copy this FM into customer specific FM and add additional validations.
    Best regards,
    Ramki

Maybe you are looking for