APO Product Master: New Freely Defined Attribute

Dear Experts,
We know than in the spro, you can defined up to 5 free attributes for the product Location master than appear in the Tab EXTRA.
We would like to create a new one, I mean, a 6th one. The issue is that, even we are able to create it in the spro, we do not see it in the Product Master and therefore, we are not able to maintain it.
Does anybody have the same issue? Wich kind of posibilities do we have?
Thanks a lot for your help,
Susana

I concur with the previous reply.
This is not possible.
I have used all the 5 additional Fields in the past in DP Macros to store & use values on product-locations that are not available in Standard APO Product screen.  But the Limit is 5 and this can be seen in /sapapo/matkey table and /sapapo/matloc tables as well (via Trnx. SE11).
However In addition, you can create 'Z' Tables in ABAP.  Alternatively you can save Additional masterdata in your own customer created TimeSeries Planning Area of which the Characteristics will be Product and Location only to save anything additional you need in TS Planning areas.  Alternatively a BI InfoCube can be created with same characteristics. The Userexit can then Grab data from this InfoCube or Z Table to do whatever you want.
Typically it is common that Demand Planning MACROS use it in their Code Logic.  Remember, none of the additional attributes are used in the Standard Planning Algorithms / Logic of SNP, PPDS, DP or TPVS.  You have to write Custom Logic which is possible via Demand Planning Macros in Planning Books created on that Planning area.
So the Best Option for Additional Fields is a TimeSeries Planning area which DP Macros can be built to use. Of course the Standard 5 can be in Product Master (/sapapo/mat1) and then additional to whatever number you want can be in the TimeSeries Planning area.
Hope you find this usefull.  Reward points if you do.
Regards,
Ambrish Mathur

Similar Messages

  • Need to Populate Material Type from ECC to APO Product Master

    Hi All,
    I need to update the material type field from ECC to APO.
    I am using the userexit CIFMAT01 and component EXIT_SAPLCMAT_001.
    I need to extract field MTART from MARA table and need to Populate it in APO Product master.
    In APO i am using the ATT01 field of table /SAPAPO/MATKEY.
    But this does not work the data of material type is not getting populated in APO.
    We have tried to use a break point in the user exit and while executing the transaction CFM2 it does not stop at the break point.
    Can anyonwe guide me as to how to go about in implemeting this user exit.
    Regards
    Nitin

    Hi Nitin,
           Make sure that u r pass the material type as a below :
    CT_CIF_MATKEY-ATT01 = Pass the Material Type.
    CIF_MATKYX -ATT01      = 'X'.
    Check the below thread to debug the CIF queue:
    debugging CIF user exit
    Regards,
    Siva.

  • Check mode in APO product master

    Hi - it is understood from SAP HELP that the check mode in the product master corresponds to the requirement class in ECC. I tried to understand for my case but couldn't get it. Below is the snap from SAP doc which explains this case. Can anyone please elaborate on this so I can understand it clear. I basically want to know exactly from where the check mode is getting updated in APO. Thanks.

    GC,
    Requirement class is determined in ECC.  There can be more than one way it is determined, the illustration you have supplied is an example of how default Strategy 40 determines the default of two different requirements classes; one for Planned Independent Requirements, and one for Sales Requirements.  You can see this in ECC by looking at the configuration for a Planning Strategy (OPPS).  Strategy group determines Strategy,  Strategy determines requirements TYPE, and requirements type determines requirements CLASS (OVZH/OVZG).
    During sales order processing, the sales order contains a requirements type (which as I said before, can be determined by the ECC Planning strategy, but also can be determined in other ways).  When ATP is triggered in ECC for execution in SCM, the requirements TYPE in the Sales Doc determines a requirements CLASS, which is sent to APO for ATP processing.  Requirements CLASS is integrated in SCM as CHECK MODE.
    When a new SCM system is delivered, there are usually no check Modes defined; YOU have to do that.  You select the Requirements classes you wish to manage (from ECC) and you define them in SCM.  They can behave the same as in ECC, or you can make them behave differently.
    So, when a sales order arrives in SCM from ECC, for an availability check, and containing a requirements class, the sales order goes to the SCM configuration you have created, looks up the CHECK MODE that you created, and performs the availability check according to YOUR configuration.
    Best Regards,
    DB49

  • % Remaining SL Field in the APO product master

    Hi All,
    Any body have used the field % Remaining SL field maintained in the product master. Does CTM or SNP Optimzer does consider this?
    What is the significance of the field?
    We have distribution center DC1 and plant PL1
    We have two minimum shelf life requirements for given product X e.g. Minimum Shelf life guarantee of 30 days for X at PL1 and Inter-company minimum shelf life of 45 days between DC1 and PL1.
    How can we design solution for this where for the stock transfer requisitions from DC1 to PL1 we want to use Inter-company minimum shelf life and Minimum Shelf life guarantee for sales order at the PL1. I am just thinking % Remaining SL (where I can define Ingtercompany Shelf life) is the one which helps me meet this inter-company shelf life, but it seems to be not working. May be I am not sure how do define and use it.
    Please share your thoughts, experience and ideas on addressing these two minimum shelf life requirements.
    Thanks.
    J.

    Try MAT_SET()
    MAT_SET ( ‘field name’ ;  field_value' ; <'product'> ;  '<version>' ) sets the value of the specified field in the product master record for the specified product in the specified version. The arguments for product and version are optional. If you do not specify an argument for the product, the system uses the currently planned product. However, it is better for performance reasons to use the function ACT_PRODUCT.
    MAT_EXTRA_SET() i think sets the fields in the extras tab

  • Safety stock data update in APO product master

    Hi Gurus
    I have an active IM for a product . when i change the safety stock in R/3  , the same is not getting updated in APO. The method maintianed is SB
    Please suggest

    Finally i need to apply the below code in Exit EXIT_SAPLCMAT_001
    INCLUDE ZXCIFU01 *
    IF CT_CIF_MATLOC IS REQUESTED.
    if no saftystock-method is explicitly set
    use method 'SM' if safty stock & time is transfered
    use method 'SB' if only safty stock is transfered
    use method 'SZ' if only safty time is transfered
    LOOP AT CT_CIF_MATLOC.
    LOOP AT CT_CIF_MATLOCX WHERE MATNR = CT_CIF_MATLOC-MATNR AND
    LOCNO = CT_CIF_MATLOC-LOCNO.
    CT_CIF_MATLOCX-MSDPSBMETH = 'X'.
    *APO und R/3: Safety stock
    IF CT_CIF_MATLOCX-SAFTY = 'X' AND
    NOT CT_CIF_MATLOC-SAFTY IS INITIAL.
    *APO: Safety days' supply R/3: Safety time/act.cov.
    IF CT_CIF_MATLOCX-SVTTY = 'X' AND
    NOT CT_CIF_MATLOC-SVTTY IS INITIAL.
    *Maximum of stock und safety time
    CT_CIF_MATLOC-MSDPSBMETH = 'SM'."Maximum
    ELSE.
    *Safety Stock
    CT_CIF_MATLOC-MSDPSBMETH = 'SB'.
    ENDIF.
    ELSE.
    IF CT_CIF_MATLOCX-SVTTY = 'X' AND
    NOT CT_CIF_MATLOC-SVTTY IS INITIAL.
    *Safety days' supply
    CT_CIF_MATLOC-MSDPSBMETH = 'SZ'.
    ENDIF.
    ENDIF.
    MODIFY CT_CIF_MATLOC.
    MODIFY CT_CIF_MATLOCX.
    ENDLOOP.
    ENDLOOP.
    ENDIF.
    Thanks all for the input

  • PIR & CIR is not getting displayed in APO product master

    Hi guys,
        I have created PIR and CIR in R/3 ,but it is not getting displayed in APO . Please guide me to resolving this what are the settings i have to check in the SAP system.
    Thanks
    S.Murali

    I am Basis consultant.
    Regarding RFC, logical system assinement, are the things are configured.
    But still it is not active the integration between R/3 & APO server.
    (Behalf of Murali )

  • Customer Master Definable Attributes to Sales Order and Pricing

    Hello,
    I have a requirement to set a customer master flag using freely definable attributes.  I am planning to use KNA1-KATR10 from the GENERAL Customer Master data.  We do not want the flag to be sales area specific.  The flag will be on the ship to customer.   
    I need to determine how to copy this flag into the sales order and then also to ensure that this field is available for evaluation in a pricing requirement routine. 
    How do i accomplish this?  An alternative would be to use the Customer Grp fields , KNVV-KVGR1 but i am guessing the process would be similar. 
    Best Regards

    If you want to save Katr10 to the order, you will have to
    1. Append new fiield to VBAK within an append structure like zzvbak.
    2. Retrieve Katr10 and move to VBAK in MV45afzz form userexit_move_field_to_vbak.
    3. Append new field Katr10 to pricing communication structure komk in include komkaz.
    4. If you retained Katr10 as field name then you are done since there is a move corresponding from vbak to komk, if not you need to move this to komk in MV45afzz form userexit_pricing_prepare_tkomk.
    The field will now be populated and available in your pricing requirement routine. Hope this helps.
    Matt

  • User-defined Attributes in CRM WebUI

    Hi there,
    I am using the Attribute 1 (defined in IMG->CRM->Master Data->BP->Define Attributes->Define User-Defined Attributes) to determine if a customer may or may not be given credit, just a simple yes or no attribute. My question is how to make this attribute be available when I'm creating a new BP in the WebUI under General Data?
    Thanks in advance.

    Hi CharlieF,
    I have a trouble with the same attributes in the "Account overview", in the view "BP_HEAD/AccountDetails", when i select a value in this fields and i try to save, the system display the error message: " Field group Attribute 1 is hidden; do not enter data in corresponding fields" 
    Have you solved this issue?
    Can you explain me how?
    Thanks in advance.

  • How to assign a item to User Defined Attribute group?

    I have created a new User Defined Attribute(UDA) using PIM- setup responsiblity.
    But i don't know how to assign one newly created item to the UDA.
    Please help me out.
    Thanks in advance.

    hai Naren and Ganesh,
    i have few queries in wad can u help me in resolving the problems?
    i have generated a query using variables ,but when i am executing that query in web ,i am not getting any pop up asking fr variable.so wht might b the error.
    first i have selected the table in wad and assigned the dataprovider ie is query,
    in tht query a variable is also existed but i am not getting any pop up
    is there any radio button / check boexes to select and assign the variable
    so plz help me in this aspect..
    if u r working on wad can plz send me u r contact mail id so tht i can interact easily...my mailid is [email protected] ok
    regards
    Suri../

  • Pricing: New condition type not getting listed in options in product master

    Hi,
    I have created a new pricing procedure and also created a new condition type for it. I am trying to create a condition record in the product master for this  condition type but the condition is not there in the list of conditions. How can I inlcude it in the condition list?
    Even the new condition type I have created by copying 0PR0 is not getting listed in the options, whereas 0PR0 is getting listed.
    Regards,
    Meenakshi
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:27 AM
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:29 AM

    Hi Meenakshi,
    you need to enhance the condition maintenance group in the customizing, which is assigned to the product master. Please check: IMG: Customer Relationship Management -> Master Data -> Products -> Special Settings for Sales Operations -> Assign Condition Group to Application CRM and IMG: Customer Relationship Management -> Master Data -> Conditions and Condition Technique -> Condition Technique: Basics -> Create Maintenance Group.
    Best Regards,
    Michael

  • ABAP dump error while updating product master in APO

    Hi All,
    Greetings from Vijay!
    I need to your help to resolve below issue ;
    I am getting error '
    No simulation parameters could be set for the
    active version'
    While i am updating and trying to assign active version to my product master in APO which are created in APO for regression testing
    and also sometimes system throwing dump error'
    Error in the ABAP Application Program
    The current ABAP program "/SAPAPO/SAPLDM_LC_SQL" had to be terminated because
      it has
    come across a statement that unfortunately cannot be executed.;
    I appreciate your help
    Thanks
    Vijay Job

    Hi Vijay,
    Can you check note 1465462 ?
    The same problem is mentioned in the note with correction .
    Regards,
    Mukesh pandey

  • Add new custom file to EWM product master (/SCWM/MAT1 Tcode)

    Hi all
    I am using Extended Warehouse Management (EWM 7.0) system with  backend SAP ERP.
    Now I have a requirement where new fields (Validity period in Days ) needs to be added in product master(/SCWM/MAT1) under Storage or warehouse data tab. I would like to know Is there any BADI available to add custom field to product master ?
    It is manually maintenance in EWM, It is not coming through regular CIF.
    Looking fwd your comments

    Thanks for reply, ERP IMG configuration to Generate addional material master fields which is not going to solve my problem, becuase I want that field only at EWM, It is not going to come from ERP and more precise it is not going to come through CIF,
    If I use this then it need to maintain from ERP and standard/custom CIF will push that data from ERP to EWM. I am looking standard alone field addition to EWM product master and want to maintain only in EWM product master screen.
    Is there any options to add custom tab in product master  and add custom field and it can maintain only in EWM level.
    Thanks in Advance
    Edited by: bnsubn on Dec 21, 2011 5:20 PM

  • Transferring Product Master Data Changes From APO to ECC/R/3

    Is it possible to transfer product master data changes in APO to ECC via the CIF?  If so, does it require custom coding?

    Hi James,
    In all the different clients where APO is being used with ECC systems. ECC system is always the main system (system of record) which contains all the master data and data present in ECC supposed to be the reference for APO system for planning purpose.
    Generally it is not recommended to transfer master data from APO to ECC but as mentioned earlier by some experts you may have ways to do that.
    I would be interested in the business scenario where one needs to transfer master data from APO to ECC.
    Thanks,
    Anupam
    Edited by: Anupam Sengar on Aug 11, 2011 12:31 AM

  • Product master in CRM and R/3

    Hi Gurus,
    can anybody make my understanding clear regarding  the difference of product master in CRM and R/3. any links to know more on it will also help.
    Thank you in advance.
    Regards,
    sasmita

    Hi Sasmita,
    Here are some of inputs will help for undersatnding:
    <b>The CRM product master is a collection or arrangement of various settypes which contain specific data.</b>
    Pre-defined settypes are delivered (e.g. basic product data; conversion of unit of measure)
    Enhancement of the product master with own settypes is possible
    Settypes correspond to database tables
    Attributes correspond to your product characteristics.
    <b>Attributes can be summarized with the help of set types</b>
    In the system there are standard set types which are always available. However, you can also create and implement user-defined set types, to depict marketing data, for example.
    The usage of set types can be restricted (e.g. certain set types only allowed for products of type product) Distribution chain-dependent set types can be created.
    A set type is only permissable for a product when the set type is assigned to the category to which you then assign the product. To assign a set type to a category, use the function Edit categories and hierarchies.
    You can assign a set type to several product categories within a category hierarchy. However, each set type can only be assigned within one hierarchy. In doing so, a multiple assignment of a set type to one and the same product (over contrasting categories) is prevented.
    A product can be assigned to several categories, as long as these are within different category hierarchies. A product can also be assigned to only one category per hierarchy.
    The assignment to the base hierarchy R3PRODSTYP is vital, so that basic data set types are available, for example.
    R3PRODSTYP depicts the product types present in the R/3 system.
    Customer product numbers can be assigned. This Customer product ID is stored in the relationships
    Global Trade Item Number (GTIN)
    Customer-own checks can be defined before a product can be saved. Enhancements &#61614; Consistency check
    <b>Transaction :
    COMMPR01-Maintain Products
    COMMPR02-Mass Maintenance for Inactive Products
    COMM_HIERARCHY-Maintain Categories and Hierarchies
    COMM_ATTRSET- Maintain Set Types and Attributes
    Tables:</b>
    Product (active)               COMM_PRODUCT
    Product (inactive)               COMM_IPRODUCT
    Product description          COMM_PRSHTEXT
    Category hierarchy               COMM_HIERARCHY
    Category                    COMM_CATEGORY
    Set types                    COMC_SETTYPE
    Attributes                    COMC_ATTRIBUTE
    Relationships               COMM_IL_*
    COMM_PRODUCT      : Product header and administration data.
    COMM_CATEGORY    : Category
    COMM_HIERARCHY   : Category Hierarchy
    COMM_PR_FRG_REL :
    COMM_FRGTYPE       :
    COMC_SETTYPE       :
    COMC_PRODUCT      : General Product Settings
    COMC_R3_FIELDS    : Assignment of R/3 material master fields to CFOP
    COMM_CFGMAT       :  Basic Data for Materials
    Hope this will help.
    Regards,
    Arjun
    <b>Pl. Do reward the points</b>

  • How to change product master data in GTS?

    Hi Experts,
       I want to change additional data of a product master in GTS.
       I want to update the values in the screen below (Additional data)
       How can I do this? are there any function modules?
       Please help.
    Thanks
    Gopal

    Hi Gopal, guys
    Sorry if i`m repeating what someone else said before as its a long thread.
    The preferable option that we implemented is a small custom Z transactio where users maintain these attributes. Selection screen same as the ususal /sapsll/product_02, and then get the PRGEN entry and maintain on second screen.
    Using the API FM used for ECC system sync... well maybe its a bit unnecessary & overcomplicated. Once you get the Product Object, you can use the maintain object/ maintain subobject methods that is standard and works without simulating inbound api call..
    heres the screenshot
    Hope this helps,
    UPDATE : Mind you, that if you do changes to the attributes in GTS, they will stay for as long as there is no new update for the material in ECC...
    Once a change pointer or manual transfer triggers a re-transfer, manuall changes will most likely be flushed and set back to what comes from ECC api.. just bear this in mind pls & test this case...
    Branio

Maybe you are looking for

  • Out of the box behavior of the Pagination control

    Why does the Pagination invoke the PageFactory callback upon page count change?  And when it does invoke it, why is it with currentPageIndex=0?  Should there be an API to remove this listener if this is undesirable behavior?  If we know we may need t

  • Adobe Acrobat X and Reader XI

    Hello, Can Adobe Acrobat X (pro) and Reader XI installed at the same time? I'm asking this because I need Acrobat to create PDF files, but I want to read PDF files in the latest version of Reader. Won't it damage the installation of Acrobat or Reader

  • I am unable to download Photoshop 2 on to my new 64 bit computer

    I am unable to download Adobe Photoshop 2 on the my new 64 bit computer. Is there any way I can acheive this? If not, I cannot afford the latest version, so which version could I buy more reasonably which would be compatible?

  • Chineese Trnsalation entry is missing from some assets xmlp reports

    Hi Our client has applied ZHS simplified chineese patch, we can see the entry for translation for some seeded reports, but chineese transalation is missing for some XMLP reports. How to get the respective translation file for specific xmlp report for

  • E61 using Blackberry connect can't read PDF email ...

    Hi, I've a E61 that has Adobe 1.5 installed. I can easily read complex PDF files yet I can't read PDF email attachments that have been sent through Blackberry connect push email service. I need to get wireless faxes and have tried both efax and Myfax