Updated Batch Characteristics on Order Release is not available in MSC3N

Hi All,
I have maintained the Class (023) and characteristics for Finished Material. When I am releasing the production order, I am assigning the values for batch characteristics (Custom defined characteristic) after that, If I go and see the corresponding batch in display mode (MSC3N) the value for the characteristic is not updated (entered value not available its blank).
u2022     Automatic batch creation for the production order during the order releasing is happening exactly as per the configuration but the entered value for the characteristic is not available for the corresponding batch in change as well as display mode (MSC2N/MSC3N)
Please guide to solve out this issue
Thanks in Advance

Hi Sanil,
           Thanks for your speedy reply.
For me characteristics and all available as per the expectations but the updated value for the characteristcs on release is not sticking with the batch.
Please guide me to solve out this issue.
Thanks in Advance

Similar Messages

  • BAPI to update batch characteristics

    Hi,
    We have a requirement to update batch characteristics in SAP. I used the VB_BATCH_CHANGE to update the batch characteristics. Below is my code. After the call, I don't get any error from this BAPI/RFC, but batch chararacteristcis values are not updated. Any ideas?
    FUNCTION Z_VB_CHANGE_BATCH.
    *"*"Global Interface:
    *"  IMPORTING
    *"     VALUE(YMCHA) LIKE  MCHA STRUCTURE  MCHA
    *"     VALUE(YUPDMCHA) LIKE  UPDMCHA STRUCTURE  UPDMCHA OPTIONAL
    *"     VALUE(CHANGE_LGORT) LIKE  MCHB-LGORT OPTIONAL
    *"     VALUE(BYPASS_LOCK) LIKE  AM07M-XSELK DEFAULT SPACE
    *"     VALUE(BYPASS_POST) LIKE  AM07M-XSELK DEFAULT SPACE
    *"     VALUE(X_BNCOM) LIKE  BNCOM STRUCTURE  BNCOM OPTIONAL
    *"     VALUE(KZCLA) LIKE  T156-KZCLA OPTIONAL
    *"     VALUE(XKCFC) LIKE  T156-XKCFC OPTIONAL
    *"     VALUE(CLASS) LIKE  KLAH-CLASS OPTIONAL
    *"     VALUE(NO_CHECK_OF_QM_CHAR) LIKE  AM07M-XSELK DEFAULT SPACE
    *"     VALUE(REF_MATNR) LIKE  MCHA-MATNR OPTIONAL
    *"     VALUE(REF_CHARG) LIKE  MCHA-CHARG OPTIONAL
    *"     VALUE(REF_WERKS) LIKE  MCHA-WERKS OPTIONAL
    *"     VALUE(SET_OLD_BATCH) LIKE  AM07M-XSELK DEFAULT 'X'
    *"     VALUE(BUFFER_REFRESH) LIKE  AM07M-XSELK OPTIONAL
    *"     VALUE(NO_CHANGE_DOCUMENT) LIKE  AM07M-XSELK DEFAULT SPACE
    *"     VALUE(GRUND) LIKE  MSEG-GRUND DEFAULT SPACE
    *"     VALUE(NO_CFC_CALLS) LIKE  AM07M-XSELK DEFAULT SPACE
    *"     VALUE(BATCH_DEL_FLAGS) LIKE  BATCHDELFLG STRUCTURE  BATCHDELFLG
    *"       DEFAULT SPACE
    *"     VALUE(SEND_SYS) TYPE  LOGSYS DEFAULT SPACE
    *"  EXPORTING
    *"     VALUE(YMCHA) LIKE  MCHA STRUCTURE  MCHA
    *"     VALUE(EMKPF) LIKE  EMKPF STRUCTURE  EMKPF
    *"  TABLES
    *"      CHAR_OF_BATCH STRUCTURE  CLBATCH OPTIONAL
    *"      CHANGED_BATCH STRUCTURE  MCHA OPTIONAL
    *"      ZIMSEG STRUCTURE  IMSEG OPTIONAL
    *"      RETURN STRUCTURE  BAPIRET2 OPTIONAL
    *"  EXCEPTIONS
    *"      NO_MATERIAL
    *"      NO_BATCH
    *"      NO_PLANT
    *"      MATERIAL_NOT_FOUND
    *"      PLANT_NOT_FOUND
    *"      LOCK_ON_MATERIAL
    *"      LOCK_ON_PLANT
    *"      LOCK_ON_BATCH
    *"      LOCK_SYSTEM_ERROR
    *"      NO_AUTHORITY
    *"      BATCH_NOT_EXIST
    *"      NO_CLASS
    *"      ERROR_IN_CLASSIFICATION
    *"      ERROR_IN_VALUATION_CHANGE
      DATA: F_TRANSACTION_ID           LIKE ARFCTID.
      CALL FUNCTION 'TRANSACTION_BEGIN'
        IMPORTING
          TRANSACTION_ID = F_TRANSACTION_ID.
      CALL FUNCTION 'VB_CHANGE_BATCH'
        EXPORTING
          YMCHA                     = YMCHA
          YUPDMCHA                  = YUPDMCHA
          CHANGE_LGORT              = CHANGE_LGORT
          BYPASS_LOCK               = BYPASS_LOCK
          BYPASS_POST               = BYPASS_POST
          X_BNCOM                   = X_BNCOM
          KZCLA                     = KZCLA
          XKCFC                     = XKCFC
          CLASS                     = CLASS
          NO_CHECK_OF_QM_CHAR       = NO_CHECK_OF_QM_CHAR
          REF_MATNR                 = REF_MATNR
          REF_CHARG                 = REF_CHARG
          REF_WERKS                 = REF_WERKS
          SET_OLD_BATCH             = SET_OLD_BATCH
          BUFFER_REFRESH            = BUFFER_REFRESH
          NO_CHANGE_DOCUMENT        = NO_CHANGE_DOCUMENT
          GRUND                     = GRUND
          NO_CFC_CALLS              = NO_CFC_CALLS
          BATCH_DEL_FLAGS           = BATCH_DEL_FLAGS
          SEND_SYS                  = SEND_SYS
        IMPORTING
          YMCHA                     = YMCHA
          EMKPF                     = EMKPF
        TABLES
          CHAR_OF_BATCH             = CHAR_OF_BATCH
          CHANGED_BATCH             = CHANGED_BATCH
          ZIMSEG                    = ZIMSEG
        EXCEPTIONS
          NO_MATERIAL               = 1
          NO_BATCH                  = 2
          NO_PLANT                  = 3
          MATERIAL_NOT_FOUND        = 4
          PLANT_NOT_FOUND           = 5
          LOCK_ON_MATERIAL          = 6
          LOCK_ON_PLANT             = 7
          LOCK_ON_BATCH             = 8
          LOCK_SYSTEM_ERROR         = 9
          NO_AUTHORITY              = 10
          BATCH_NOT_EXIST           = 11
          NO_CLASS                  = 12
          ERROR_IN_CLASSIFICATION   = 13
          ERROR_IN_VALUATION_CHANGE = 14
          OTHERS                    = 15.
      IF SY-SUBRC IS INITIAL.
        CALL FUNCTION 'TRANSACTION_END'
          EXPORTING
            TRANSACTION_ID = F_TRANSACTION_ID
          EXCEPTIONS
            OTHERS         = 1.
      ELSE.
        CALL FUNCTION 'BALW_BAPIRETURN_GET2'
          EXPORTING
            TYPE   = SY-MSGTY
            CL     = SY-MSGID
            NUMBER = SY-MSGNO
            PAR1   = SY-MSGV1
            PAR2   = SY-MSGV2
            PAR3   = SY-MSGV3
            PAR4   = SY-MSGV4
          IMPORTING
            RETURN = RETURN.
        APPEND RETURN.
        CALL FUNCTION 'TRANSACTION_ABORT'
          EXPORTING
            TRANSACTION_ID = F_TRANSACTION_ID
          EXCEPTIONS
            OTHERS         = 1.
        EXIT.
      ENDIF.
    ENDFUNCTION.
    Thanks,
    Sara

    Hi Subramani,
    Thanks for your response.
    BAPI_BATCH_CREATE will not work for us, because we are trying to update batch, not creating new batch.
    Also, The function TRANSACTION_END, I am calling in the code is responsible for committing the transaction.
    Thanks,
    Sara

  • Cannot install itunes 7 because os 10.6.8 is needed. I select software update and the 10.6.8 is not available to be downloaded. I'm trying to load itunes to the iphone5

    cannot install itunes 7 because os 10.6.8 is needed. I select software update and the 10.6.8 is not available to be downloaded. I'm trying to load itunes to the iphone5

    If you're using a PowerPC Mac, you can't.
    If you're using an Intel Mac, phone the online Apple Store and order a Mac OS X 10.6 DVD.
    If you don't know, choose About this Mac from the Apple menu.
    (70291)

  • Why some times delivery  will created through vl10c even sale order stock is not available?

    Hi,
    why some times delivery  will created through vl10c in batchmode even sale order stock is not available?
    Thanks,
    Kalyan.

    the correct english name is : Replenishment leadtime
    Check with Replenishment lead time - Supply Chain Management (SCM) - SCN Wiki

  • Trying to update apps on iPhone keeps saying funds not available which there are. What's the minimum balance for free updates?

    Trying to update apps on iPhone keeps saying funds not available which there are. What's the minimum balance for free updates?

    Updates are free. Upgrades aren't.

  • Updating iTunes (Windows 7) message "iTunes server not available, try again later"

    PC operating Windows 7 with iTunes used to update automatically but has stopped doing so and when trying to manually update message appears saying "iTunes server is not available, try again later" - have checked that firewall allows iTunes through to update - does anyone know a fix for this?

    Hi sunnychelt,
    Thank you for visiting Apple Support Communities.
    That error sounds like the errors in this article.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    There you'll find some generic troubleshooting as well as some Windows specific steps.
    Best Regards,
    Nubz

  • HT4623 I am updating my school's operating system for my iPads.  I have been able to complete 2 carts of 30 (60 total). The next cart I was able to download the IOS6.3.1 update but it states the install is not available. Good internet connection.

    I am updating my school's operating system for my iPads.  I have been able to complete 2 carts of 30 (60 total). The next cart I was able to download the IOS6.3.1 update but it states the install is not available. Good internet connection.  Please advise.....
    Thanks!

    Hi nytesinger,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    Apple Configurator Help: About Apple Configurator
    http://help.apple.com/configurator/mac/1.3/#cadf1802aed
    Apple Configurator Help: Prepare devices
    http://help.apple.com/configurator/mac/1.3/#cad96c7acd6
    Cheers,
    - Judy

  • How to stop prod order release without material available?

    Dear Experts,
    Is there any settings to avoid the release of production order if there is no material availability?
    Thanks & Regards,
    Imran
    Edited by: imran  shek on Mar 24, 2009 7:39 AM

    Hi Imran,
    Try the below for not to allow the release of production order when the material is not available.
    1. Goto Tcode : OPJK and select the Plant / Order type for which you want to restrict the order release if the matl is not avaialble.
    2. Click the details tab screen.
    3. System will display the detail screen for the order type / plant combination.
    4. For the Availability Check  put " 1 or 2" i.e. check availability during the Order Creation / Release based on the business requirement.
    5. Under Material Availability tick the check box "Check Material Aval before saving".
    6.For the Collective Conversion use " 3" (No Creation if material is missing)
    Creation control for availability check material :
    Controls whether a planned order can be converted to a production order if one or more material components are not available.
    Dependencies
    This key only relates to the collective conversion and partial conversion planned orders.
    Hope this will help you.
    regards
    radhak mk

  • Purchase Order item - plant not available

    Hi,
    when I'm creating a purchase order the plant (Field name NAME1, Data element MEPO_EWERK) I want to select on the item level is not available. I get a list of plants, but the one I'm looking for is not displayed.
    I guess I have missed some basic configuration?
    Thanks in advance for any input
    Br,
    Lars

    Dear,
    Check your Plant in below transaction code i.e. correctly configured or not:
    Dear,
    Steps for the creation of plant:
    Step 1: Creation of Plant: (T/code- OX10)
    Path:- IMG - Enterprise Structure- Definition- Logistics- General- Define copy, delete, check plant
    and then select (Double Click) on Define plant
    Step 2: Assignment to company code (OX18)
    Path: IMG  Enterprise Structure  Assignment  Logistics general  Assign Plant to Company code
    Step 3: Assign purchasing organization to Plant (OX01)
    Path: IMG  Enterprise Structure  Assignment  Material Management  Assign Purchasing Organization to Plant
    Step 4: Maintain storage location for the new plant: (OX09)
    Path: IMG  Enterprise Structure  Definition  Material Management  Maintain storage location
    Step 5: Define attributes of material type:
    transaction code: OMS2
    Step 6: Activate valuation area (Plant):
    Transaction code: OMWD
    Step 7: Plant setting for excise
    Step 8: Assignment of plant for release strategy
    Step 9: Assignment of business area to palnt (OMJ7)
    Step 10: A/c determination for valuation areas (OMWD)
    Step 11: Maintain Plant Parameter (OMI8)
    Thanks & regards
    Varun Bisaria

  • PO - release dates not available in ME5A

    Dear All,
    For knowing PR date, release status, PO made, release status, I have the excel sheet generated from SAP.
    In this, the PO release date is not being generated. 
    Can you please check and let me know what to choose so that I get that info together with PO created date.
    If not available, can you please check possibility of creating the line item for our easy traking purposes.
    Please let know ASAP.
    Thanks
    Rajesh

    Hi
    ME5A report is only for PR related data  it will only show PO number which is created from PR and not the release date of PO.
    Use ME2N to get PO release related data with dynamic seletion
    Vishal...

  • Release button not available in Service entry sheet ML81

    Dear All..
                        Release button is not available. while Creating Service entry sheet Through ML81. Any standard settings is Required.. ?..Pls. Give me the Details
    Usefull Threads will be Rewarded..
    REgards
    Senthil

    Dear Shentil,
    You just get into ML81N and enter the doc no: then you click on the Change button . Now your data will be open to edit there you can find the option to release which looks like a flag.
    Hope It helps you.
    Thanks and Regards
    Prabhul

  • After updates frozen/reloding programs frames and "FINDER" not available

    Hello!
    I made the updates today (18. Dec.) for Mac OS X Update 10.5.1; Quick Time 7.3.1; iTunes 7.5 and Security Update 2007-009 Vers. 1.0. after that I had the problem with blinking/reloading frames. I can write this post only in intervalls of approximately 10 seconds, then the screen is blocked and reloads again. The same in other programs...
    The Finder doesn't work either. Every file on my desktop did disappear... Time machine doesn't work. If anyone can help please help!!!
    I restarted the mac several times also with the key combination of apple key, alt key and r + p key pressed. And also with the shift key pressed. It didn't work. I took it also from the electric wire... Nothing worked out...
    After restarting the blinking of the "windows" restarts and the "finder" is not available...

    Do an Archive and Install.
    Mac OS X: About the Archive and Install feature >>
    -Bmer
    Mac Owners Support Group - Join us @ MacOSG.com
      Mac611 Mobile Mac Support - about.Mac611.com
       iTunes:MacOSG Podcast | YouTube.MacOSG.com
                       An Apple User Group 
    Have an iPhone or iPod touch? Enter Mac611.com in Safari on it for 'mobile Mac support.'
    Disclaimer required by Apple Discussions Terms of Use: MacOSG - a non-profit Apple User Group - may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Update batch for process order in change mode

    Hi All ,
    I need to update the batch number(which will be external batch number given by me ) in COR2 (process order change) transaction ,under the tab Goods receipt .
    Is there any bapi which achieves this ?? pls reply
    Thanks .

    try use BAPI_RESERVATION_CHANGE

  • HT4623 there is no software update in my general category.  I need to update my ipad, but that function is not available.

    Nowhere on my ipad does it say what operating version I am using. It doesn't give me the software update option in my general settings.  I am baffled. 

    See
    iOS 5: Updating your device to iOS 5
    http://support.apple.com/kb/HT4972
    iOS: How to update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT4623
    If you are currently running an iOS lower than 5.0, connect to your computer & click on the "Update your device using iTunes".
    Tip - You may need to disable your firewall and anitvirus software temporarily.  Then download and install the iOS update. After you update to iOS 5.x, the next update can be installed via wifi (i.e., not connected to your computer).
     Cheers, Tom

  • HT4623 i updated software after that google direction is not available , please guide me how to resolve this issue

    hello
    i updated my iphone 4 after that google maps direction is not working , please resolve this issue

    Download google maps from the App Store.

Maybe you are looking for

  • Pattern generation doesnt work - DIOHS96

    Hello I have a trouble getting the DAQmx to do a pattern generation as expected. the first mode of operation, is when i set the clock configuration to "sample clock": the card should support 2MHz operation, however, above about 2KHz, the card spits o

  • Reverse a clearing Document

    Hi All,    I did F-30 transaction for clearing a Document.  How can I cancel my changes that I did by clearing. Regards, Philip

  • Warning ORA-01002, ORA-06502 AND ORA-12899

    Hi All, When iam executing my mapping iam facing the following warninigs. Name      Status      Log MAP_     Warning     CursorFetchMapTerminationRTV20007 MAP_     Warning     ORA-01002: fetch out of sequence ORA-02063: preceding line from link MAP_W

  • How to learn VB Macros?

    Hi, If I want to write macros for BEx, where and how should I learn? Thanks, Radha

  • Installing photoshop onto a notebook

    I have Production Premium CS5.5 and from that, I want to install photoshop onto my notebook, which has no dvd or cd rom drive.  I copied the folder over, and had some wishful thinking, but to no avail, then looked for a setup.exe, also to no avail, c