Error in automatic batch classification when doing 311 movements

I have created reference characteristics, that is, characteristics which have a direct reference to a database field (MCH1-LAEDA. LAst change).
When doing the movement 311 with MIGO or MB1B the batch is not classified althougt in the MCH1 the field LAEDA (last change) is updated.
In the tcode OMCV i have set the movement 311 with 1 (Classification carried out in background (all batches)).
If go to tcode MSC3N, tha classificitaion is wrong, but if I enter in tcode MSC2N the system classify the batch.
We are using this field to sort batches for consumption.
Thanks in advance.

my friend,
do you have migo or mb1b only in background??
you could set any 'foreground' option in OMCV, say, 2 or 3 (instead of 1)
did you try that?
good luck!

Similar Messages

  • Error while posting batch managed stock in 107 movement type?

    Hi All,
    Error while posting batch managed stock in 107 movement type in MIGO, like 'Goods movement not possible with mvmt type 107'
    and here in batch tab batch number is not displaying only valuation type is displaying, kindly let me know can it be done by doing any change in field selection with respect to 107 movement type
    regards,
    Sanjana

    Hi,
    spro-inventory management-setting for enjoy transaction-setting for goods mvt--field selection per mvt type
    107     SGTXT
    107     WEMPF
    Check here 107 mvt type there or not if not then put.
    101     CUSTNAME
    101     GRUND
    101     SGTXT
    101     WEMPF
    102     SGTXT
    102     WEMPF
    103     SGTXT
    103     WEMPF
    104     SGTXT
    104     WEMPF
    105     SGTXT
    105     WEMPF
    106     SGTXT
    106     WEMPF
    107     SGTXT
    107     WEMPF
    108     SGTXT
    108     WEMPF
    109     SGTXT
    109     WEMPF
    110     SGTXT
    110     WEMPF
    Regards
    Rakesh

  • Automatic batch classification with procedure on goods receipt does not wor

    Hi,
    I have a material with batch classification.
    The material has two characteristics.
    One is a number called VALUE.
    The other is also a number (called CONVERSION) and shall be deived from the first.
    A procedure is created and assigned to the second characteristic.
    $SET_DEFAULT ($SELF, CONVERSION , $SELF.VALUE / 6000)
    When I post a goods receive (movement Type 501) the characteristics can be filled . The field VALUE is set with 12000.
    I was expecting the characteristic CONVERSION to be calculated as '2' and filled by the procedure.
    This is not the case.
    If however, I try to fill it manually, the system accepts only the calculated value '2'. Otherwise an error is shown.
    How can I force the system to calculate and fill the second characteristic when insserting a value in the first ?
    Thanks for any help.

    Hi Marcus,
    i have the same problem with movement type 101.
    How did you solve this issue?
    Can you help me.
    Thank you.
    CM

  • Automatic Batch creation when posting 103 document

    hi all,
    i want a modification in the system. currently in our system, when 101 document is created in MIGO, system automatically creates a batch. But when 103 is done, batch has to be created manually in the system and in qa32 while doing quality usage decision, user has to assign batch to inspection lot. what i want that in 103 as well, batch autmatically creates like 101 and inspection lot is assigned to batch automatically. Is this possible? If yes then what configurations i have to do?
    Best Regards,
    AI.

    hi,
    There are two ways of creating a batch no. in MIGO
    1) Internal Number --Automatic
    2) External Number -Manual entry.
    Go to SPROLogistics General->Batch Management-> Batch Number Assignment>Activate Internal Batch Assignment
    Click the Internal Batch Number Assignment for Assigned Goods Receipt --Select the plant ,tick it and save it.
    Do the MIGO automatically Batch number will be created.
    G.Ganesh Kumar

  • Automatic batch determination when more items have the same material

    Hi guys,
    I have a problem with automatic batch determination in the delivery note where more items has the same material number.
    For example:
    Sales order items
    Item   Material   Q
    1        130         5 kg
    2        130         4 kg
    Stock for this storage location is:
    material    batch    Q
    130           1000     3kg
    130           1001     7kg
    When I create delivery note I get this:
    Item   Material   Q   Batch
    1       130            
    90001 130       3     1000
    90002 130       2     1001
    2       130
    90003 130       3     1000
    30004 130       1     1001
    As you can see, both items has the same batches. This is not good, when post goods issue. Normally there is no stock availaible for both items.
    Is there any customizing to do this correctlly?
    Thanks for an ansver.
    BR, Matic

    What is the purpose of giving the same material as second line item.
    specify in the first line item itself.
    or els the condition record which you have specified that for 100 material of A gives 10 material of B modify it to 10 of A should give 1 material of B
    The first you will be useful for you.

  • Automatic Batch Classification.

    Hi Experts.
    I need to populate batch characteristics automatically when user performs Goods Receipt.
    Header data (Mkpf) will be the same data for all positions in GR so I need to copy mkpf-frbnr, mkpf-lfsnr to batch characteristics.
    I have activated user exit MBCFC004 in order to catch MKPF data.
    Please HElp.
    BR.

    Hi Shailaja,
    Problem was solved, I had to move T_values data to Values table.
    Here is last code.
    Thanks a Lot.
    BR.
    Juan.
    DATA: T_CHARACTERS LIKE CHARACTERS OCCURS 0 WITH HEADER LINE.
    DATA: T_ATTRIBUTES LIKE API_CH_ATT OCCURS 0 WITH HEADER LINE.
    DATA: T_VALUES LIKE API_VAL_I OCCURS 0 WITH HEADER LINE.
    T_CHARACTERS[] = CHARACTERS[].
    T_ATTRIBUTES[] = ATTRIBUTES[].
    T_VALUES[] = VALUES[].
    LOOP AT T_CHARACTERS.
      READ TABLE T_VALUES WITH KEY ATINN = T_CHARACTERS-ATINN.
      CASE T_CHARACTERS-ATNAM.
        WHEN 'LO_PEDIMENTO'.
          MOVE I_MKPF-FRBNR       TO T_VALUES-ATWTB.
        WHEN 'LO_FECHA'.
          CONCATENATE I_MKPF-BUDAT+6(2)
                      I_MKPF-BUDAT+4(2)
                      I_MKPF-BUDAT(4)
                      into T_VALUES-ATWTB.
          "MOVE I_MKPF-BUDAT  TO T_VALUES-ATWTB.
        WHEN 'LO_GUIAAA'.
          MOVE I_MKPF-XBLNR(3)   TO T_VALUES-ATWTB.
      ENDCASE.
      MOVE T_CHARACTERS-ATINN TO T_VALUES-ATINN.
      MOVE T_CHARACTERS-ATNAM TO T_VALUES-ATNAM.
      APPEND T_VALUES.
      MOVE T_VALUES TO VALUES.
      APPEND VALUES.
      CLEAR T_VALUES.
    ENDLOOP.

  • Error in automatic batch determination in delivery

    Hello Experts,
    I have an outbound delivery created for a STO.
    The issue is the batch is not getting detected automatically in the delivery and i have to manually enter the batch.
    I have checked in SPRO and automatic batch determination is activated for delivery item category.
    Can anyone please guid what further i need check to have the batch being automatically detected.
    Thanks.

    Hi Nish,
    Since the delivery is related to STO, pls check the following config settings.
    1. spro-->logistics general->batchmanagement->batach der and batch check->batch search procedure
    allocation and check activation->allocate sd procedure/activate check.
    (Before performing the below steps define the strategy type and assign the strategy type to procedure)
    SLSORGDCDIVDOCTYPESEARCHPRO+CHECKBATCH
    10001010DLSD0001+X
    10001010nlSD0001+X
    2. Activate automatiic batch determination in SD-> auto Batch determination for deliveryitem categories
            NLN
            NLC
    3. Check the delivery item cat determination for batch split.T.code:0184
         nlccnormuln
         nlccnormchsp+nln
         nlnormuln
        nlnormchsp+nlc.
    4.Now maintain the strategy type Ex:SD01 with VCH1 T.code along with your own sort rule.
    These above config settings should satisfy your needs.
    Regards,
    Satish
    Edited by: Satheesh on Jun 11, 2009 5:24 PM

  • Batch Classification Screen for Goods Movements

    SAP Gurus,
    Very recently (24. April), we experience the following issue: (PP-PI Process Order)
    At the moment of process order confirmation, for any new batch assigned in the good movement overview, there's no pop-up of batch classification screen which allow our user to entry the classification data. And this functionality works fine in the past.
    Do you have an idea that how it happens? We checked the configuration OMCV and master data as well, the settings are all fine to me.
    Best regards,
    Vincent

    Dear Vincent,
    I think you talk about the 101 movement, don't you? In this case this is not possible at all, check SAP note  85310
    Because goods movements can be decoupled from confirmations and          
    processed in background, it was decided that this functionality would    
    not be implemented; therefore this is Standard R/3.                      
    Solution                                                                 
    As a work around for this you have the following options:                                                                               
    1.  Classify your batch manually through Batch Master Maintenance.                                                                               
    2.  Turn off automatic goods receipt and classify your batch through the 
        pop-up that is presented during MM goods receipt.                                                                               
    3.  Do not create your batch during Order Processing. Instead have the   
        system create it during confirmation and at this time you will be    
        able to classify your new batch from the Goods Movement screen       
        COMPONENT>BATCH MANAGEMENT>CREATE BATCH.                                                                               
    Note :                                                                   
    If you want that your batch is classified in the background you can set  
    in the transaction OMCV (classify batches within goods movement          
    overview) that the classification is to happen in the background. You    
    can then utilise the user exit EXIT_SAPMM07M_004 to valuate the          
    characteristics if it is valid for                                       
    your release.                                                            
    Regards,
    Sabine

  • Automatic Batch Determination while doing MFBF

    Hello PP Gurus,
    I have a scenario related to Repetitive Manufacturing.
    I am doing MFBF transaction and doing Assembly backflush by clicking Post with correction. One of the components is batch managed.
    My requirement is : On selection screen of MFBF I enter MAterial,PLant BAckflush Quantity , REM Production Version and Storage Location.
    What I want is that for the component that is batch managed there should be automatic batcah determination based on shelf life and also it should pick up stock from a particular storage location only.
    Also when I click POst with correction button and go to components screen the Batch Determination button comes greyed out.
    For header material have maintained REM Profile.
    PLease let me know what all I need to do for meeting above requirement.

    Hi Anupam,
    I need to know 2 things more from your side.. As you told I need to assign Stock Detrmination Rule and Batch Determination strategy in Control Data 2 of REM profile.
    I have doubt on Batch determination strategy :
    1) Which Batch determination strategy should I assign here. Second what all else I need to do from my side so that a batch is automatically picked and assigned to the componenet material.
    The things what I have done is : I have a made a Batch Class, Assigned shelf life as a charcterstic to it. I have defined a sort rule with this characterstic.
    What else I need to do.
    Also FYI : We are not putting a planned order in MFBF. We are  inpiutting the material to be backflushed...
    Thanks

  • Error when doing 101 movement

    Dear All,
    We are doing the configuration on a fresh copy of a ECC 6.4. We have created the relevant configs. When we try to do the 101 movement in MIGO transaction an ABAP error occurs. Below i have mentioned the error. However when we did a 561 movement and 313 movement, it happened properly and material document created. why is this happening. Any help is highly appreciated.
    Syntax error in program "SAPLV45P"
                                                                                    Error analysis                                                                
         The following syntax error was found in the program SAPLV45P :            
         "The data object "FXVBAP" does not have a component called "MSR_APPROV_"  
         "BLOCK"."                                                                 
    Regards,
    DTD

    Ask the developer of the userexit to fix the problem. the user of the last change is usually listed in the dump (can be seen in ST22)
    It pretty much depends for what you do the 101 movement, if the PO is referenced to a sales order or  the goods receipt is in reference to an outbound delivery or even triggered by posting a goods issue to a stock transfer order.

  • Error : Temporary Tablespace is Empty  when doing expdp/impdp

    Hi all,
    I was doing expdp on my oracle 10.1.0.2.0 DB on Win XP P, though the user is having a default temporary tablespace with a temp file on autoextend enabled, I got the message as...
    ORA-25153: Temporary Tablespace is Empty
    Then I created a new temporary tablespace for the user with 500M tempfile and autoextend enabled, then expdp went through.
    Now I am doing the impdp for the same .dmp file to generate one sqlfile for the DB,
    again I am facing the same error message as...
    ORA-25153: Temporary Tablespace is Empty
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    17FE07EC 13460 package body SYS.KUPW$WORKER
    17FE07EC 5810 package body SYS.KUPW$WORKER
    17FE07EC 3080 package body SYS.KUPW$WORKER
    17FE07EC 3530 package body SYS.KUPW$WORKER
    17FE07EC 6395 package body SYS.KUPW$WORKER
    17FE07EC 1208 package body SYS.KUPW$WORKER
    17ABE058 2 anonymous block
    Job "CHECKUP"."SYS_SQL_FILE_FULL_02" stopped due to fatal error at 10:09
    The message indicates that...
    ORA-25153: Temporary Tablespace is Empty
    Cause: An attempt was made to use space in a temporary tablespace with no files.
    Action: Add files to the tablespace using ADD TEMPFILE command.
    SO my question is every time I do any imp exp have I to add temp file in my temporary tablespace? will it not be cleared on the completion of the job?
    Any advice please.

    Hi Sabdar,
    The result of the query is as...
    SQL> SELECT * FROM DATABASE_PROPERTIES where
    2 PROPERTY_NAME='DEFAULT_TEMP_TABLESPACE';
    PROPERTY_NAME
    PROPERTY_VALUE
    DESCRIPTION
    DEFAULT_TEMP_TABLESPACE
    TEMP
    Name of default temporary tablespace
    So the default temporary tablespace is TEMP which is not having any tempfile as I cloned this DB from the primary DB, but the user I am using for the impdp is 'checkup' and the temporary tablespace for 'checkup' is 'checkup_temp1' which s having tempfile.
    SO then why the impdp job is going to server's temporary tablespace instead of user's temporary tablespace.
    Is there any way to get whether 'checkup_temp1' tablespace is the default temporary tablespace for 'checkup' or not?
    Can I create create the user mentioning default temporary tablespace anyway because it is giving me error as...
    SQL> create user suman identified by suman
    2 default tablespace checkup_dflt
    3 default TEMPORARY TABLESPACE checkup_temp1;
    default TEMPORARY TABLESPACE checkup_temp1
    ERROR at line 3:
    ORA-00921: unexpected end of SQL command
    Then I did ...
    SQL> create user suman identified by suman
    2 default tablespace checkup_dflt
    3 TEMPORARY TABLESPACE checkup_temp1;
    User created.
    Regards

  • Automatic batch change when change in stock happened.

    hi dudes,
    i am having the requirement like when ever change in stock for a material after GR or GI, the batch number should be changed for whole quantity.
    plz respond asap with an advice.
    thanks and regards
    Robert.

    Get a Z program developed which gets trigerred when a Batch GR or GI is happened, this Z program should create a new batch, copy the characteristics of the old batch, and do a batch to batch transfer of stock for that material from old batch to new batch.
    Or to post a GR and GI you mean when GR is done to the same batch.
    Get a Z transaction for GR and GI with the link to the above scenario.

  • Error X86 on I Tunes when doing update

    Tried doing I Tunes Update and got error message X86, could not load library.  Uninstalled and tryied reistalling and got same info.  Any resolution?

    what exactly is the error message.

  • "Error issuing replication: 8453 (0x2105)" when doing a repadmin /syncall

    Whenever I do a repadmin /syncall I get "CALLBACK MESSAGE: Error issuing replication: 8453 (0x2105):"
    If I do a repadmin /syncall /P the command completes with no errors
    I am running this command from the only FSMO roles holder for my domain
    This is also in our hub office which all of our branch offices connect to. 
    I was going to run "repadmin /syncall /e /P" to immediately replicate changes to all of our DCs, but I want to be sure this won't break anything.
    I found two warnings in the following Microsoft article that worry me: 
    http://technet.microsoft.com/en-us/library/cc811569(v=ws.10).aspx
    "These are very powerful subcommands and should be used sparingly as they do not follow replication agreements that are in place and have the potential to cause replication storm and break Active Directory if not used properly."
    for the /syncall switch:
    "Use this command and the above flags cautiously or you can damage the replication system because this command does not follow replication agreements nor honor any replication restrictions such as DISABLE_INBOUND_REPL or DISABLE_OUTBOUND_REPL"
    Is running this command safe or will I cause problems by doing this? I was thinking that because this is the FSMO roles holder doing a /P (push) to the other DCs from this one would be ok.
    I should also add that doing a "repadmin /replicate" to any DC executes without any errors.

    Can you post the dcdiag /q,repadmin /replsum and repadmin /syncall details of DC's to analyse the same.Please use skydive to post the log
    "Error issuing replication: 8453 (0x2105):" This can either be a DNS misconfig,secure channel between DC broken,lingering object issue or network connectivity issue,necessary ports are not fully opened between locations,etc. Microsoft's PortQry tests specific
    AD ports and the ephemeral ports, and the required responses from the services on the required AD ports it specifically scans for.  Here's more info on the ports that AD requires to properly communicate:
    Active Directory Firewall Ports -
    http://msmvps.com/blogs/acefekay/archive/2011/11/01/active-directory-firewall-ports-let-s-try-to-make-this-simple.aspx
    Also, disable local windows firewall service, by default it is enabled in vista/windows 2008 and above. Check the network connectivity and latency.
    Disable Windows Firewall:
    http://technet.microsoft.com/en-us/library/cc766337(WS.10).aspx
    Also ensure the following DNS setting on DC:
    1. Each DC / DNS server points to its private IP address as primary DNS server and other remote/local DNS servers as secondary in TCP/IP properties.
    2. Each DC has just one IP address and single network adapter is enabled.
    3. Contact your ISP and get valid DNS IPs from them and add it in to the forwarders, Do not set public DNS server in TCP/IP setting of DC.
    4. Once you are done, run "ipconfig /flushdns & ipconfig /registerdns", restart DNS and NETLOGON service each DC.
    Do not put private DNS IP addresses in forwarder list.
    5.Assign static IP address to DC if IP address is assigned by DHCP server to DC.It is strongly not recommended.
    Hope this helps.
    Best Regards,
    Sandesh Dubey.
    MCSE|MCSA:Messaging|MCTS|MCITP:Enterprise Adminitrator |
    My Blog
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Getting an error message, not enough space, when doing a file backup in HP Recovery Manager

    Hi
    I have a Pavillion dv7-6b32us using Windows 7 64 bit
    Laptop will not boot. (A seperate issue that I have posted on the Laptop Freezes board) and Im trying to backup my drive through HP Recovery Manager. I get a message that there is not enough space available. Is there anyay to backup my drive to save the info?
    This question was solved.
    View Solution.

    Hi,
    Choose yes.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

Maybe you are looking for

  • Apple tv delivers audio over hdmi but mac mini does not, why?

    My Apple TV, 3rd Gen, delivers audio and video over one HDMI cable. When I have the Mac mini connected I can get only video and this is very frustrating. Has anyone else encountered this situation and can someone tell me how I can fix it? I would app

  • Help! Can't find photos on backup drive

    A while ago my Ibook died. I had everything backed up to an external drive. And I know the photos were there, now everytime I go to that drive all that I can see when I open the Iphoto library on the backup drive are the pictures that are in my curre

  • Send for Review gives wrong folder permissions

    As per my last post , it looks like when a page is "Sent for Review" that the folder created by Contribute is not getting the proper permissions on my server. I have all of my folders set to be 775 and to inherit permissions from the parent folder, b

  • 10g: Initialize State object?

    I like the idea of using the State object on the Page to manage State. I've coded the EventHandler to read the parameters and store them on the state, and I see how to read them back from the state when re-rendering the page. My object model also kno

  • Request Sub-CA-Certificate for Ironport WSA

    How do I request a Sub-CA-Certificate for an Ironport WSA ? The GUI only offers the import of the public and private certificates to running the Ironport Proxy Appliance as a subordinate CA. The Root-CA is a Standalone CA from Microsoft. Thanks for y