Field /SAPAPO/MARM-GEWEI unit missing for product 000000008660000814 PAL

Hi Experts,
I found CIF error in SMQ2. The error states "Field /SAPAPO/MARM-GEWEI unit missing for product 000000008660000814 PAL '.
I checked the data in MM03 , where alternate unit of measure is PAL. One PAL Is 96000 EA.and i found  GRoss Weight and NET Weight is showing Zero.
I checked the same in /sapapo/mat1 , it is showing 1PAL = 5760 ea.and i found  GRoss Weight(2, 078.440 and NET Weight(1,800.32) .
How to rectify thsi error. Please let me know.
Thanks,
Manasa.

Hi Rishi,
Thanks. Please check teh OSS Notes Note 1519355 - Field /SAPAPO/MARM-GEWEI unit missing for product and advice me.I am pasting the same notes below.
Summary
Symptom
Field /SAPAPO/MARM-GEWEI unit missing for product
Other terms
/SAPAPO/MAT067, UOM
Reason and Prerequisites
The reason of the error is, that the 'Unit of Weight' is missing for the alternative unit of measure(UOM) in the material Master Data.
Solution
From R/3 perspective,
If no gross or net weight is maintained in a unit of measure, it is not nessesary to maintain a unit of weight. However CIF in APO checks the field GEWEI for all entries of table MARM. If the field GEWEI is blank in any of the MARM entries then you will get the error message . The following are ways to correct this error;
1) Delete the alternative UoM in APO for the product in /sapapo/mat1. Afterwards process the faulty queue and all alternative UOMs will be correctly available in APO and thus, the masterdata is consistent.
2) Maintain the 'Unit of Weight' that is missing for the alternative units in the material masterdata in R/3. Afterwards retransfer the masterdata to APO.
3)use the userexit EXIT_SAPLCMAT_001 (where you can change
MARM and MARMX values) and maintain the missing 'Unit of Weight'so that MARM-GEWEI is filled before transfering the masterdata to APO.

Similar Messages

  • Handling Unit Management for Production

    Hi,
    our SAP is up-to-date EHP 6. However I do not see all transactions connected with HUM for Production. There is a reference to EHP 4 in a document as a basic requirement for this application.  I just wonder which business function(s) I have to activate to enable it.

    Hello
    Which specific transaction is missing?
    BR
    Caetano

  • Unit Exchange for product

    Hello All,
    I have a starnge requirement,If a customer gets an ex-change of a Product,
    His old Product number and serial number should be changes to new Product
    number and Serial number. Keeping the Service Ticket or Service Order
    linkages intact ( ie it should list all the ST's created for the Old product
    and Serial number.
    Can you please help in achieving this functionality. What are the steps and FM
    should i be using to in-coperate this,
    Regards,
    Santosh

    Hello All,
    I have a starnge requirement,If a customer gets an ex-change of a Product,
    His old Product number and serial number should be changes to new Product
    number and Serial number. Keeping the Service Ticket or Service Order
    linkages intact ( ie it should list all the ST's created for the Old product
    and Serial number.
    Can you please help in achieving this functionality. What are the steps and FM
    should i be using to in-coperate this,
    Regards,
    Santosh

  • Issue for Production Price list field missing

    Hello all,
    I have a strange issue with a field missing in the issue for production window. When an issue for production is created, the Price list field is missing. Please see the attached screenshot. Does anyone know how to show this field? I have checked form settings and it's not an option there.

    Hi Chris
    Following is the SAP Note No: 1720071
    Symptom
    When opening "Issue for Production" from "Production Order", "Price List" field is missing.
    Reproducing the issue
    1. Login to SAP Business One.
    2. Go to Production->Production Orders, open a "released" production order document.
    3. Right-click a row whose "issue method" is "Manual", and choose "Issue Components". (If all the rows have "Backflush", you need to change one of them.)
    4. "Price List" field is missing on the left top of the new screen.
    5. If you click "Attachments" tab, the field will be showing correctly.
    Solution
    Current workaround is to click "Attachments" tab to make "Price List" showing.
    The issue is planned to be fixed in SAP Business One 9.0.
    With Regards
    Balaji

  • Replicating Custom Fields for Products in CRM  from ECC

    Hi All,
    I am having difficulty in replicating SAP standard field values from ECC to custom fields for products in CRM. This is what i did:
    1. I created a new settype(ZMASTER_INFO) with a single attribute(ZIND_STD) and added
        this new settype to MAT_HAWA. (As all our materials fall under this material type).
    2. I am looking to map SAP standard field from ECC to this custom field of mine.
        I wrote the code in CRM BADI 
        'ZPRODUCT_CUSTOMER2->MAP_R3_TO_CRM_MATERIAL' with the following code:
    DATA: ls_ZMASTER_INFO TYPE ZMASTER_INFO_maintain.
    DATA: ls_category_bdoc       TYPE COMT_PROD_CAT_REL_MAINTAIN,
          ls_category            TYPE COMT_PROD_CAT_REL,
          lt_categories          TYPE COMT_PROD_CAT_REL_TAB,
          ls_settype             TYPE COMT_settype_ext,
          ls_cat_settype_rel     TYPE COMT_CAT_FRAG_REL,
          lt_cat_settype_rel     TYPE COMT_CAT_FRAG_REL_TAB,
          lt_cat_settype_rel_all TYPE COMT_CAT_FRAG_REL_TAB.
    LOOP AT lt_cat_settype_rel_all INTO ls_cat_settype_rel.
          CALL FUNCTION 'COM_SETTYPE_READ_SINGLE'
            EXPORTING
              IV_SETTYPE_GUID         = ls_cat_settype_rel-frgtype_guid
            IMPORTING
              ES_SETTYPE              = ls_settype
           EXCEPTIONS
             NOT_FOUND               = 1
             NO_IMPORT_VALUES        = 2
             NO_TEXT_FOUND           = 3 .
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
      CASE ls_settype-frgtype_id.
          WHEN 'ZMASTER_INFO'.
          ls_ZMASTER_INFO-relation-owner = 'X'.
          ls_ZMASTER_INFO-relation-logsys = cs_product_bdoc-header-com_product-logsys.
          ls_ZMASTER_INFO-data-ZZ0010 = is_mara-STD_DESCR.
          ls_ZMASTER_INFO-DATA_X-ZZ0010 = 'X'.
          APPEND ls_ZMASTER_INFO TO cs_product_bdoc-data-ZMASTER_INFO.
          APPEND ls_settype-FRGTYPE_GUID TO cs_product_bdoc-data-MNT_SETTYPE.
       ENDCASE.
    ENDLOOP.
    Since in ECC i am not having any custom fields i did not write any code in ECC for TPS34 and TBE24. I just wrote this BADI in CRM and using the field S_MARA-STD_DESCR.
    I am not sure if i need to write the code in ECC. COUld anyone please confirm if i need the code in ECC?
    Also in the CRM BADI, lt_cat_settype_rel_all is EMPTY. Not sure how this gets its value.
    Could anyone please suggest if i am missing anything here? Any help is appreciated.
    Thanks,
    Karuna.

    Hi Karuna,
    One more solution is to change the BDoc data content before it hit the Database.
    this can be done in badi: Data_Exchange_badi (if u dont find this try with following search string: xchange)
    In the above mention badi you will find a method which is used to populated the contend jst after bdoc in CRM is being populated by R/3 data.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • CONTRIBUTION MARGIN (PLAN) CALCULATION FOR PRODUCTS (PER UNIT, LOCATION WIS

    Requirement of a Report to calculate Contribution Margin (Plan) - For Calculating Contribution Margin.
    2 Key figures need to be arrived (per unit/cv of product, locationwise) are Net Sales Realisation (NSR) and Total Variable Cost (TVC).
    a) To arrive at NSR (Plan), all the combinations of upcoming discounts and Free Goods schemes which are going to be in force for the coming month for a product, need to be adjusted in the Net Sales Value to get NSR value per unit of Product (SKU / CV), locationwise
    The NSR is the result of adjusting Discounts, Excise and Schemes to the List price of a product.
    b) TVC is the result of adding Total Material Cost(TMC) + [(LabourPower) conversion cost]Freight.
    Calculation of material cost takes into account the LCC (Landed cost chart) price of the materials, which is a future price.
    The Total variable Manufacturing Cost (TMC+Conversion cost) can be calculated using Costing Run (CK40N), using LCC price.
    In COPA Reporting the values like List price, Discounts, Excise, Free Goods Schemes and freight flows from Billing Documents (SD) because of condition types mapping in to value fields in COPA, which are components for calculating NSR (Actual), based on the Actual sales.
    We want to understand how do the Plan values (List price, Discounts, Excise, Free Goods Schemes and freight) per unit of Product, location wise, flow to the Value fields in COPA Planning,  so that the Contribution Margin (Plan) can be calculated for each product per unit , location wise.
    Contribution Margin = NSR u2013 Total Variable Cost.

    Then you hit a bug in your version of Oracle. You may want to investigate and update to a newer version. I get the following error when trying to register your schema in 10.2.0.1
    ORA-31154: invalid XML document
    ORA-19202: Error occurred in XML processing
    LSX-00246: invalid QNAME "***_voting_flag"
    This error is consistent with Spy 2008 as well (I didn't try Xerces but I've got two that agree so it's good for me).

  • Table name& field name for production order  & operation confirmation

    Hi All,
              I would like to know the table name and field name for the production order "confirmation" (CNF) and the operation confirmation (CNF).
    Thanks and Regards,
    PSS

    Hi there,
    CORU(R/3 Application development: PP Confirmations )
    AFFW       Goods movements with errors from confirmatio
    AFRC       Table of planned changes to conf.: Automatic
    AFRD       Default values for collective confirmation 
    AFRH       Header information for confirmation pool   
    AFRP1      Table of planned changes to conf.: Automatic
    AFRP2      Table of planned changes for confirmation: B
    AFRP3      Table of planned changes for confirmation: C
    AFRP4      Table of planned changes to confirmatn: Data
    AFRU       Order completion confirmations             
    AFWI       Subsequently posted goods movements for conf
    TAFWD      CORU: Messages that are not interpreted as e
    TCORD      Table for field-dependent check routines   
    TCORU      Parameters for order confirmations         
    TCORV      Table with Routines for structureing variabl
    TCORW      Confirmation: Window Control               
    TPARU      Control parallelized confirmation processes
    TPRRU      Control table for process chain for confirma
    TPRRUT     Text table for process control of confirmati
    TRUGS      User status caused by deviation            
    CO(R/3 Application development: PP Production orders )
    AFBP        CIM order: Batch print requests            
    AFFL        Work order sequence                        
    AFKO        Order header data PP orders                
    AFPO        Order item                                 
    AFVC        Operation within an order                  
    AFVU        DB structure of the user fields of the opera
    AFVV        DB structure of the quantities/dates/values
    FAPW        Index of production-/issuing plant for produ
    FTIND       Missing parts index                        
    ORDCOM      Communication control Operation download   
    T024F       Production scheduler                       
    T399X       Parameters dependent on order type         
    T441C       Profile - availability check               
    T441CT      Texts for Profile "Display Availability Chec
    T490        Transactions PP - orders - order category  
    T496B       CIM order: Assigning document types to refer
    T496D       CIM: Destination/lists/spool parameters per
    T496F       CIM order: Form description of the list    
    T496K       CIM order: Entity table of possible table id
    T496N       CIM order: List descriptions               
    T496P       Print PP documents: Determination of output
    T496R       Print PP shop papers: Report control       
    T496T       Print PP shop papers: Transaction control  
    T496V       PP Print: Default Value for Printing Online
    T496Z       CIM order: Table-controlled table access   
    TC32        Assigning subscreen to processing location 
    TC34        Allocating operation to object type for the 
    TC62        Sequence of detail screens when processing h
    TCO01       Sequence/operations control in logicstics or
    TCO03       CIM order: Texts for TCO01, Description of o
    TCO04       Table for controlling the screen sequence gr
    TCO05       CUA status depending on panel, trans. type, 
    TCO06       Exclusive functions for PP orders           
    TCO09       CIM order: Text IDs of objects in orders    
    TCO10       Valuation variant for order costing         
    TCO11       Control table for production orders - availa
    TCO12       Control table production orders - stock dete
    TCO36       PP orders: Control table for calling up pop-
    TCO41       CIM order: Default values for generating ope
    TCO43       PP-SFC order profile                        
    TCO43T      Description of production scheduler profile 
    TCO60       Sequence keys for input facility and verific
    TCO61       Sequence key for PP orders                  
    TCO62       Defining screen sequences for input facility
    TCO63       Sequence of detail screens when maintaining 
    TCODB       Database fields development class CO per ord
    TCOF        Profile for missing parts info system       
    TCOFF       Profile for Missing Parts Info System: Displ
    TCOFFT      Texts for Missing Parts Info System: Display
    TCOFG       Profile for missing parts info system: crite
    TCOFGT      Texts for Missing Parts Info System: Criteri
    TCOFK       Texts for functions in milestones/trigger po
    TCOFS       Profile for Missing Parts Info System: Sort
    TCOFST      Texts for Missing Parts Info System: Sort Cr
    TCOFT       Texts for Missing Parts Info System        
    TCOKO       Constants for PP orders                    
    TCOKT       Account assignment categories for order    
    TCOP        Field selection profile                    
    TCOPS       Field selection profile                    
    TCOPT       Description of Profile for Field Selection 
    TDUMMY      Dummy structure of a table for READ with VER
    TRUG        Reason for variances in completion confirmat
    TRUGT       Text describing the reason for a variance in
    TXPR1       XPRA control - missing parts info system   
    Regards
    Hemant G

  • Creation of a product description field of length 250 car. used for search?

    Hi all,
    we need to create a specific description field for products  with a length of 250 (the standard description is too short at 40 car, =>table COMM_SHTXT) . That field should also be added to the search criteria.
    What would be the best solution for this creation , given that the field must exist also in ECC SD from where the product is replicated to CRM :
    -creation of a Z-append to the product table in ECC (table MARA?) and a corresponding include in the product table in CRM (COMM_PRODUCT) ?
    -creation of an attribute in ECC (or Z-append) and creation of a "set attribute" in CRM (i.e transaction COMM_ATTRSET), but there are warning in CRM when you create an attribute of length > 132.
    -using the standard Texts (no limitation of lenght) attached to products : is a search possible on these texts?or too complicated/poor performance ?
    Regarding the display in CRM UI, is it possible to display all the 250 caracters  if the field is a customized "set attribute" or a Z-append? It seems that it is not possible to display a string field on more than one line in the UI configuration, or even, on more than 8 columns in an assignment block?
    thanks for your help
    Ludovic

    well, I have found at least how to replace the error message (length of max 75 car  for PC UI) . Instead of trying to edit manually table T100C, there is an entry in customizing SPRO (cross appl/SAP Product/basic settings/Define Characteristics of System Messages
    ) which allows to customize standard messages , and so change from Error to Warning.

  • Movement type for production supply missing in warehouse

    Gurus,
    I am getting this error when i use TC-LP11
    movement type for production supply missing in warehouse
    What should be done?

    All I can suggest is checking the master data:
    Must have at least one Prod. Supply Area and one control cycle set up.
    PSAs are part of the WM-PP interface and are created in WM and are used to group together Work Centres (which are Production master data).
    Created under application menu:
    Logistics/LE/Master data/Warehouse/Production Supply   (Tx LPK1/2/3 see also LS41) and assigned to Work Centres under application menu:
    Logistics/Production/Master data/Work centres/Work centre/Change (Basic data view).
    (To find out the PSA aka Supply Area from Process Order Display Tx select:  Goto \ List \ WM Picklist  and scroll to right)
    A Control Cycle defines for a given material, Plant and PSA:
    which WHS to get the material from
    which interim storage type to take it to
    which bin to place it in (can be dynamic for pick parts)
    Logistics/LE/WM
    Master data/Control cycle record/Create
    Regards,
    Nick

  • "Missing version string for product" error when trying to get updates on Lion Server

    I am not getting the latest updates from Apple on my 10.7.4 server.  When I attempt to do so the log has a bunch of errors stating "Missing version string for product".  I've tried deleting and recreating the swupd files but I am still having the same issue.  Is there any fixes to this problem I am missing? Thanks in advance!

    ok, I went back and made a new database but changed the character set / collation... aside from that change, everything is the same, but I get an error saying that the datasource could not be found when I can see all the tables in intermedia's phpmyadmin page... would changing the character set / collation cause this error?

  • Add a custom field for Product Allocation

    Hi experts,
    I have copied S140 to S501 to add a custom field for product allocation.
    I have added the custom field in MCVBAKUSR, so it is visible in MCVBAK.
    However, I don't know whether I can populate data into custom field. I searched in forum, someone said it can be done in SAP enhancement MCS10001. But it can't work. I have tried to place a break-point in the code, and seems that throughout the order creation and product allocation check, it hasn't get into the codings in enhancement MCS10001.
    Can anyone give me some idea on it? Thanks.

    You should have simply extended VBAK table. It would've taken care of extending MCVBAK, etc. Then VBAK field would have to be populated in a user exit USEREXIT_CHECK_VBAK in MV45AFZB, when a document is being created/changed.

  • Error in Contract: "Configuration for product is missing"

    Hi Experts,
    I have a problem with configurable products in CRM 7.0.
    I defined a product like configurable setting the flag "Configurable Product" in material master data.
    Also, using the "Product Models" functionalities, I created a very simple configuration for my product, adding a set of selectionable characteristics.
    So I tried to create a Contract and I inserted in "Item" assignment block my configurable product. The result was that the system gave me the error "Item 10: Configuration for product is missing".
    I hoped to find in Contract the configuration that I set for my product.
    I think that I lost a step, but I don't know where.
    I hope in your help.
    Thanks and regards.
    Massimiliano.

    I solved the issue.
    I had a lot of errors on my quotation. To see the configuration I needed to solve all the errors before.
    Thanks a lot at all.
    Massimiliano.

  • I need field replaceable unit documentation for Satellite L100-108

    Hello, I need field replaceable unit documentation for Toshiba Satellite L100-108 because I want to disassembly the screen.
    Can you help me?
    Thanks.

    I doubt that other notebook manufactures are release her service manuals. Why should they do it?
    A few years ago I had a notebook from another manufacture and I couldnt download service manual because its not for public too.
    I can understand why these manuals are not for public because notebook disassembling is not so easy. Its pretty tricky and you must remove a lot of screws and parts. I think the most people dont have experience with this and so I go to an authorized service provider. The notebook technicians are the experts for this. ;)

  • Fields to be activated from Material Master for product costing.

    hi guys.
    our MM person is creating BDC for uploading master data.
    we have to do product costing in second phase.
    what fileds we have to activate now, from accouting & costing view???
    is it  necessory to activate LIFO/FIFO relevancy indicator for product costing??
    will it affect to inventory valuation directly???
    can we actiavte the fileds afterwords???

    Dear Mr.Taj,
    Where's the quantity structure field in Accounting 2 view?
    Do u mean which's in Costing 1 view?
    <b>Dear MR.Patil,before doing cost roll up & release all the fields should be having proper values (inputs).</b>
    Later on also u can activate.I mean during material creation itself if u ensure these checks,this will help you in taking the cost rollup smoothly.
    Or else you have to correct those errors at the time of costing.
    If useful reward points.
    Regards
    Mangal
    Message was edited by:
            Mangalraj

  • Missing setup.exe for production and web premium

    I donwloaded all of the files for Production Premium and Web Premium, but I am missing the file setup.exe for both. Is there a quick way to get this without redownloading everything?

    I am having a similar problem.  I just purchesed Dreamweaver CS4 on DVD, and it is missing the setup.exe file.  I read the read me file and looked in the folder where is says it should be, and it's not there.  I also did a search for "setup.exe" on the entire disk and no results came up.
    Any suggestions?

Maybe you are looking for

  • Connecting iPod Shuffle 4th Gen Loses Connection to External Drive Library

    New iPod shuffle synchs OK to a laptop, but when connecting it to the home Dell desktop running XP, it is unable to synch. The iTunes Library is on an external USB Drive (W:) which has no problem synch with an iPod Touch. But although iTunes does rec

  • AcroForm FDF Template functionality broken by updates

    We have many cases where we build an FDF file that went sent to the browser causes a PDF to be assembled (and form fields filled in) from multiple PDFs containing acroForm templates.  Each time an Acrobat patch is applied by my company, this function

  • Ipod service unavailable on install of itunes 7

    hey, i'm trying to install itunes 7 and everytime it says ipod service unavailable, and asks me to confirm that i'm authorised to do this. consequently i can't install itunes or get any of my tunes onto my new ipod. whats going on?? i am logged on as

  • NO HDMI SOUND LISTED IN SOUND

    HAVE TRIED ALL OTHER POSTS STILL NOT ABLE TO RECTIFY

  • Vendor Master - Bank Key

    Hi Guys, In the vendor master , under the bank details , we have a field called BANK KEY. What is the significance of this field and does it mean the Bank Key of the vendor bank or our house bank? Pls clarify. Thanks, Srikanth.