Standard field for Net explosive mass (NEM) for dg documents

Hi,
I have searched standard fields in the material master and dangerous goods master but i can not find a standard field for Net explosive mass (NEM). This value is needed for dangerous goods documents.
Is there anyone that know if there is a standard field for this or do I have to create one myself?
Best regards / Gustav

Hello Gustav
sometimes SAP is saying that Enh.- Apck need to be activated and if you take a "close" look this it is not the case. It is sufficient to use new SPs.
Now based on your reseach results:
Actually the situtation regarding Enh.. Pack is like this:
a.) to use EHS you need to "switch" (activate) the EA-APPL component; no way back ! possible !
b.) to use Enh. Pack EHS extensions you need to "switch" (activate) the Enh.PAck => actually: no way back possible ! (SAP has announced that they are planing to change this behaviour; I did not follow this discussion; I believe actually there is no way back and personally I believe this (to go back) does not make sense in EHS environment)
c.)  OPS_EHS_CI_1 is the Business function in Enh. pack 3
d.) LOG_EHS_CI_2 is the Business function in Enh. pack 5 (now available to all customers).
Therefore to my understanding this is the SAP approach: 1.) first activate EA-Appl, then OPS_CHS_CI_1 and then if suitable/necessary LOG_EHS_CI_2
What are the pros and cons of activation?
a.) in principal you are dealing with a "release" change (testing required; analysing new customizing activities etc. etc.)
b.) to our experince there are in most cases "strange" effects at other places; therefore you need take care regarding the activation (example: we lost some EHS functions (which are part of the former release) in release change to ECC 6.0; these functions (yes they still exists but..) are only ! part of EHS after ! an "activation" of Enh. Pack 3)
c.) at the end you get all  enlargements which are part of Enh. Pack (without a choice!
In most cases the benefit is higher compared to the "technical" risks of the activation (on long term approach).
Details of the functionality of OPS_EHS_CI_1 and/or LOG_EHS_CI_2 (what are the changes etc.) are explained on high level in help.sap.com and on detailed level on SAP marketplace; therefore I will not enumerate them.
On SAP Marketplace you find a number of OSS hints "how to use Enh.Pack" / "How to activate" / Master Insturctions (Set up etc.) etc.
Personally my impression is: both Enh.PAcks (3 + 5) contain usefullnew functions which could give benefit on mid and long term in using EHS.
Keep in mind the SAP strategy: new functions  (PS: Enh. Pack 6 will get in Ramp Up this year (to my recent knowledge) and will contains further EHS extensions) will always be part of enh. pack. Only if the function is needed because of legal change a new function is delivered as SP (no activation necessary).
With best regards
C.B.
Edited by: Christoph Bergemann on Apr 9, 2011 8:31 AM
Edited by: Christoph Bergemann on Apr 9, 2011 8:36 AM
Edited by: Christoph Bergemann on Apr 9, 2011 8:37 AM
Edited by: Christoph Bergemann on Apr 9, 2011 8:37 AM
Edited by: Christoph Bergemann on Apr 9, 2011 8:39 AM

Similar Messages

  • PO Mass change for Net Price

    Dear Experts,
    Please help.
    I want to change net price of POs, i tried to use MEMASSPO but there's no field for net price which is the one i want to change.
    Kindly help and advise if there's another for PO net price mass change.
    Thank you very much.
    Zhie

    Answer is in SAP note [501853|https://service.sap.com/sap/support/notes/501853] :
    The ME_LIMIT_FIELDS_PO function module basically contains all non-changeable fields for the mass change of the purchase order. In addition, the following item fields cannot be changed with existing items:
    Material number (EKPO-EMATN)
    Material short text (EKPO-TXZ01)
    Order quantity (EKPO-MENGE)
    Order unit (EKPO-MEINS)
    Net order price (EKPO-NETPR)
    Purchase order price unit (EKPO-BPRME)
    Plant (EKPO-WERKS)
    As of R/3 SAP Release 4.6C, you can run the mass maintenance using the PurchaseOrder.Change method (BAPI_PO_CHANGE). For more information about this, read Note 545754.

  • F4 HELP for standard field..

    i want to put F4 help for standard field FERTH in mm01 and mm02 ...
    is there any way to put F4 help for this field..

    try this
    1. First go to SE11 and create your own search help( if you dont know how to create a search help please feel free to ask me, it is very easy).
    2. Now in your module pool program program go to the layout of your screen.
    3. Now when you see the attributes of this field in the Dict tab you will find the field Search Help. Now here you can specify the name of the search help you created in SE11.
    There is also another mehtod to create the dynamic search help. eg:- in a posted document data get the Document nos related to that company code.
    The sample code is like this:-
    First of all declare the module below in the flow logic of your screen then create it in your main program.
    You declare the module in the PROCESS ON VALUE-REQUEST.
    PROCESS ON VALUE-REQUEST.
    FIELD TXT_DOCNO MODULE VALUE_BELNR.
    You also need to create an internal table where you wil store results of the select query fired below in the module.
    here you will get a F4 help on the filed Document Number(TXT_DOCNO) based on the field Company code (TXT_CODCO)
    MODULE VALUE_BELNR INPUT.
    progname = sy-repid.
    dynnum = sy-dynnr.
    CLEAR: field_value, dynpro_values.
    field_value-fieldname = 'TXT_CODCO'.
    APPEND field_value TO dynpro_values.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
    tabname = 'BKPF'
    fieldname = 'BUKRS'
    dynpprog = progname
    dynpnr = dynnum
    dynprofield = 'TXT_CODCO'.
    CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
    dyname = progname
    dynumb = dynnum
    translate_to_upper = 'X'
    TABLES
    dynpfields = dynpro_values.
    READ TABLE dynpro_values INDEX 1 INTO field_value.
    SELECT BUKRS BELNR
    FROM BKPF
    INTO CORRESPONDING FIELDS OF TABLE it_doc1
    WHERE BUKRS = field_value-fieldvalue.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'BELNR'
    dynpprog = progname
    dynpnr = dynnum
    dynprofield = 'TXT_BELNR'
    value_org = 'S'
    TABLES
    value_tab = it_doc1.
    ENDMODULE. " VALUE_BELNR INPUT

  • How to change search help for standard field in me51n.

    hi frnds,
              I want to change search help option for 'Advice code' field under Additional DFPS tab in me51n. But i dont know how to change or add search help for standard field. so plz help..
    best regards,
    sudip biswas

    Hi Abhi,
    Try using any one option:
    Create a Search Help in SE11.
    Now Goto SE11 -> Enter Ztable -> Select that field -> Click Search Help and try to assign the created Search help to that field in your Ztable explicitly
    OR
    Create a Zdata element in SE11.
    In Data Element, under Further Characteristics tab, enter Name  Parameters of Search Help.
    Assign this data element to that field in ur Ztable.
    OR
    Create a Zdomain and maintain a Value Table or Fixed Values for it.
    Assign this domain to that field in ur Ztable.

  • Search Help for standard field in WEB GUI

    Hello Experts
    There are F4 help for Business Partners (street and district that are standard address fields) and it is visible from SAP GUI. However in WEB UI there are no input help (although they are standard) for these fields.
    Is there customizing step for it or do we need to write some codes (get_v, get_p methods) in order to get F4 help.
    Thanks in advance,
    Erkan

    Try creating design layer in SPRO>CRM>UI FRAMEWORK>UI FRAMEWORK DEFINITION>MAINTAIN DESIGN LAYERS
    Enter component for business partner and define new design layer. To this layer assign a field by which you want to search.
    Then go to SPRO>CRM>UI FRAMEWORK>UI FRAMEWORK DEFINITION>CONFIGURE USER INTERFACE. Again enter the same component and go to the relevant context node and then field. Then assign to that field newly created design layer.
    Info about components, context nodes and fields you get by pressing F2 on thous 2 fields in WEB UI.

  • Custom seach help for standard field in Web dynpro application

    Hi All,
    I have a requirement in SRM portal where in I have a to add a custom search help to the 'WBS_ELEMENT' field in the the 'ACCOUNT ASSIGNMENT' tab of the Shopping cart creation screen with some input parameters on the search help.
    As the SRM Shopping cartcreation screen is a standard web dynpro application.
    Can anyone help me in this regard for addition of search help for a field with some custom fields in the Search help screen.
    Any inputs will be very helpful.
    Thanks in advance.
    Regards,
    Ahmed.

    Hi Ahmed,
    If it is an standard application then you will have to do ENHANCEMENT in the component. And for using customised value help you will have to declare attribute in CONTEXT and dynamically change the binding of the Value property of UI element inside post-method of WDDOMODIFY. You can create your own customised value help for newly added attribute.
    Thanks,
    Vishesh

  • MASS MAINTENANCE FOR MATERIAL-RELATED EXCISE DUTIES FIELDS

    Dear Experts,
    Is there any separate t code available to MASS MAINTENANCE FOR MATERIAL-RELATED EXCISE DUTIES FIELDS ?
    I got this POINT from ECC 6.0 features in Solution browser.
    Please help me on this.
    MASS MAINTENANCE FOR MATERIAL-RELATED EXCISE DUTIES FIELDS:
    Functionality Enhancements
    Provides a specific transaction for mass maintenance of material related excise duties fields
    Business Benefits
    Mass maintenance can now be performed in one step for material-relevant excise duties fields, instead of maintaining the excise duties fields in each material master record separately.
    Regards
    Soundar.G

    Dear Ravi,
    I have already created LSMW for this in Material master and J1ID.
    But i have checked in ECC 6.0 feature, there they are mentioning New t code is available for MASS maintenance of excise duty fields.
    Regards
    Soundar.G

  • MASS MAINTENANCE FOR MATERIAL-RELATED EXCISE DUTIES FIELDS - T CODE

    Dear Experts,
    Is there any separate t code available to  MASS MAINTENANCE FOR MATERIAL-RELATED EXCISE DUTIES FIELDS ?
    I got this POINT from ECC 6.0 features in Solution browser.
    Please help me on this.
    MASS MAINTENANCE FOR MATERIAL-RELATED EXCISE DUTIES FIELDS:
    Functionality Enhancements
    Provides a specific transaction for mass maintenance of material related excise duties fields
    Business Benefits
    Mass maintenance can now be performed in one step for material-relevant excise duties fields, instead of maintaining the excise duties fields in each material master record separately.
    Regards
    Soundar.G

    Dear Ravi,
    I have already created LSMW for this in Material master and J1ID.
    But i have checked in ECC 6.0 feature, there they are mentioning New t code is available for MASS maintenance of excise duty fields.
    Regards
    Soundar.G

  • F4 Help for a standard field in transaction FD32

    Hello Expert,
    i need to create a list selection for the standard field "KNKK-DBPAY" in the transaction FD32, program "SAPMF02C" dynpro 1090, is it possible ? if yes can you show me how to do?
    thank you in advance that will be very helpful.

    Hello
    Refer:
    http://help.sap.com/saphelp_nw04/helpdata/en/e9/635fa6e01e11d195490000e82de14a/frameset.htm
    Re: adding field to screens

  • Search criteria for standard field

    Hi All,
    we have a requirement in loyalty management employee search screen we couldn't find a custom field called occupation, But in create employee screen it's come. please suggest solution for add this standard field in search criteria.
    Regards
    Praveen.

    Hi praveen,
    I am providing some screen shots
    click on new entries after that will get below screen some times check box checked so only i told to check if it is unchecked is not an issue so  u need to check in structure level.

  • How to add search help for standard field LIKP-TRAID

    Hi friends,
    How to add search help for standard field LIKP-TRAID ,
    refer screen
    Program Name       SAPMV50A  
    Screen Number      2108      
    TrnsIDCode ( LIKP-TRAID ) ..
    I need to add a search help, so that i can retrieve data from Ztable.
    Thanks.
    Abhi

    Hi Abhi,
    Try using any one option:
    Create a Search Help in SE11.
    Now Goto SE11 -> Enter Ztable -> Select that field -> Click Search Help and try to assign the created Search help to that field in your Ztable explicitly
    OR
    Create a Zdata element in SE11.
    In Data Element, under Further Characteristics tab, enter Name  Parameters of Search Help.
    Assign this data element to that field in ur Ztable.
    OR
    Create a Zdomain and maintain a Value Table or Fixed Values for it.
    Assign this domain to that field in ur Ztable.

  • Search Help for standard field

    I need to enhance the existing collective search help provided for a certain standard field(ex.Field XXX).
    However while providing this additional search help, I need to show XXX data along with YYY( this is maintained in some other table but linked to XXX) .Is it possible.

    Hi,
    You can create view and join both tables. Then use this view in search help.
    Krzys

  • ABAP question: define a custom foreign key for a standard field??

    Hi,
    I want to use the field ADDR1_DATA-STR_SUPPL3 for customer use. I must to define a foreign key against a Ztable (as verification table) for this standard field. Also I must to define a custom search help.
    To defining a foreign key for this field, I must be in change mode, so the system ask to me for registering the object. That means this action is a modification. My question is the following: is there any way to do so without SAP standar modification??
    For instance, using BDT events...but how?
    Thanks in advance.
    Regards,
    Rosa

    Hi Rosa,
    Changing SAP Standard dictionary elements is not possible with out changing the same. To change these elements, we dont have any other method apart from SAP standard modification.
    Cheers
    Pavan

  • Mass changing for accrual object assignments part of the field profit_ctr

    Hi Experts,
    Does any one know about mass changing for accrual object assignments part of the field profit_ctr (profit center).
    How can we do this?
    Best Regarts.

    Hi,
    I have equal problem. How did you save him?
    Regards,Irena

  • SAP Standard Field Attributes for ME21n and ME

    Hi,
    Can anyone suggest me where i can see all the display,Hidden,Mandatory, optional SAP Standard field attributes for ME21N and ME51N.
    I looking for Configuration settings
    Thanks
    Venki

    Hi ,
    All i see is Field Label                    Reqd.entry  Opt. entry  Display for ME21N and ME51N
    I want to see what SAP Standard Fields are Hidden for these T-codes.
    I want to use and Non Used Field ( Hidden SAP Field) for new Enhancement instead of creating a custom Tab
    Thanks
    Venki

Maybe you are looking for

  • Certain songs won't sync

    Iphone 5s. Just changed to a new computer. All of the songs are in the Library and in the correct play list. They are also recognized and playing via Apple TV.  However, around 60 songs, most of which are recent purchses, will not sync to the Iphone.

  • Issue with Adobe and Fonts

    I type my papers for university out in Pages, and then export them to PDF using the free Adobe. It ALWAYS changes my font from Times New Roman to Helvetica. Every time. This is really bad because graduate applications need the font to be TNR. I despe

  • How do I browse an OPC Server's Namespace with Teststand ActiveX Steps?

    Hello I use Teststand as the client of an OPC Connection. At the Moment I'm trying to realize an browse funktionality by using the "OPC Automation 2.0" automation server in the ActiveX adapter. What I can create is the OPCBrowse object by using the "

  • Purchase req: allow a customer to view purchase req info via portal

    I would like to know what is the best way to setup a view to allow a customer to view their purchase reqs. Is their a webservice to push info to their portal page or should we setup an ivew and allow them to view PR information. Should I use webservi

  • Declare variables in function module

    hi gurus, i am making a function module in which i need to make some performs so as to do code reusability. but for that i need to declare variable globally. As i am working wth function modules for the fisrt time. can anyone please help me with that