Add additional tab on item level in contract for customer fields

Hi Guys,
Does anyone know if the following is possible in SRM 7.0, and if so can you please give a very short description how to accomplish this -
In addition to the standard tabs available in the contract (general data, notes, conditions etc.), is it possible to add a new customer specific tab on item level, in a central contract and add some customer fields to this tab?
I know it is possible to add customer fields in SRM, but I am curious if I can create a new tab for these fields, so that I can group all customer fields together in one place.
Thx.
Kind Regards,
Skander

Yes. it is possible but you have to take care of in the back end too and how these fields comes and sit in ECC. so that you may need to map in the IDOC or XI data . so that these information must be pssed to ECC and available  and accordingly you need to change in purchase order too since all these data will be copied into purchase order too.
for example :- if you add one field in header level /item level of contract
and it must be coppied into Backend contract as well as your next consecutive docuemnt like Purchase order must be taken care. hope you understand now.
Muthu

Similar Messages

  • ME51n additional tab in item level after customer tab

    hi all,
    I have already added Customer data tab in me51n item level, using screen exit SAPLMEGUI in enhancement MEREQ001. Can i add one more tab after customer data .
    Regards
    Nitin

    Hi Nitin,
    You can implement BADI ME_PROCESS_REQ_CUST to add additional tab. Read example implementation by going into menue Goto>Sample Code>Display .
    Thanks & Regards,
    Faheem.

  • Additional tab item level on MIGO supresses the excise tab at item level

    Hello Experts,
    I have used MB_MIGO_BADI to add an additional tab at item level.It is working properly.
    But now Iam facing a problem the additional tab supresses the excise tab that comes up dynamically at the item level,.
    Now how do i reslove this problem.
    Since excise details are entered later and the tab comes up dynamically my tab should not supress the excise tab at item level
    it should come after the excise tab.
    Now do I set this.
    Please help . highly appreciated. 
    Regards,
    Ranjith N

    Hi Balu,
    Thanks for your reply.
    I dint get you what you have explained.
    Hope you are clear with my problem.
    I have created a subscreen 'ZMIGOITEM' with screen number '9000'.
    In the PBO of BADI MB_MIGO_BADI I have displayed this subscreen.
    This is getting displayed at item level when I call Tcode 'MIGO'.
    After fillin up the details for performing GR..and when I check it it gives me a warning to fill in the excise details when I fill in the excise details at header level and check as per the standards an excise tab at item level should come up right ?
    Since i have added a additional tab the excise tab doesn't come up....the additional tab supress it ...
    Regards,
    Ranjith Nambiar

  • PCUI:Add REF_TO_HEADER to pcui(CRMD_BUS2000112) BILLPLAN TAB at item level

    Hi ,
    We are trying to add Header billing plan check box REF_TO_HEADER (Billplan Tab) TO pcui application service contract'S(CRMD_BUS2000112) BILLPLAN TAB AT item level.
    1.Append the structure CRMT_BSP_SRC_SERVICEDATA_2_IL  with REF_TO_HEADER field
    2.IN CRMC_MAP Txn(Table: CRMC_MAPPING) for structure CRMT_BSP_SRC_SERVICEDATA_2_IL we added entry
    UL Field:REF_TO_HEADER      Object:BILLPLAN     Object.Field REF_TO_HEADER
    3.Changed field group SRC_BILLPL_2 with new entry for REF_TO_HEADER as check box.
    4. It is showing correctly like same as in SAP GUI but it's not saving the data from PCUI.
    Please help us to trace the problem .We debugged Modify method of CL_CRM_BSP_AM_ITEMFM_1O class but we couldn't figure out the issue.
    Thanks,
    SAP FAN

    Hi ,
    The first thing to check in modify method is whether the correct value for the field REF_TO_HEADER  is being received by your MAC .
    If 'yes' then you have to make sure that this gets saved and when 'READ' is called then this field would have to be populated by you.
    Then the changed value will be visible in the browser.
    Note : When you change the value of a field and then press <enter> or SAVE or whatever .. there is a server roundtrip.The MODIFY method passes data from framework to application .The application saves this data and then sends it back to framework using the READ method.Then framework shows it on browser.
    Regards,
    Satyadeep

  • Additional tab at header level  in ME21N through BADI ME_GUI_PO_CUST

    Hi,
    I want to have additional tab at header level  in ME21n through BADI ME_GUI_PO_CUST.  But after all effort I am not getting display of  tab.  Let me explain what i did till now
    1. Appended  table EKKO with field
    2. Create one function Group -under that
    A. Created one Include u2013Paste the code given
    DATA: call_subscreen   TYPE sy-dynnr,
          call_prog        TYPE sy-repid,
          call_view        TYPE REF TO cl_screen_view_mm,
          call_view_stack  TYPE REF TO cl_screen_view_mm OCCURS 0,
          global_framework TYPE REF TO cl_framework_mm,
          global_help_view TYPE REF TO cl_screen_view_mm,
          global_help_prog TYPE sy-repid.
    FORM SET_SUBSCREEN_AND_PROG *
    --> DYNNR *
    --> PROG *
    --> VIEW *
    --> TO *
    --> CL_SCREEN_VIEW_MM *
    FORM set_subscreen_and_prog USING dynnr TYPE sy-dynnr
    prog TYPE sy-repid
    view TYPE REF TO cl_screen_view_mm.
    call_subscreen = dynnr.
    call_prog = prog.
    call_view = view.
    ENDFORM. "set_subscreen_and_prog
    B. Created one screen  (9000)
    3. Implemented BADI ME_GUI_PO_CUST and paste the code.
    data: ls_subscribe like line of re_subscribers.
    CHECK im_application = 'PO'.
    CHECK im_element = 'HEADER'.
    CLEAR re_subscribers[].
    ls_subscribe-name = ' ZMMSCR1'.
    ls_subscribe-dynpro = '9000'.
    ls_subscribe-program = ' ZMMSCR1'.
    ls_subscribe-struct_name = 'EKKO'.
    ls_subscribe-label = text-001..
    ls_subscribe-position = 15.
    ls_subscribe-height = 7.
    append ls_subscribe to re_subscribers.
    Please help me what s going wrong .and what else I will do to get success.
    Edited by: Vishal A Vijaywargia on Jul 29, 2009 2:24 AM

    Hi Prosengit,
    I am not aure about u r BADI,
    BUt last week i have custom tab in the PO header data using this enahncement 'MM06E005'.
    IN thi senhancement u have thrre screen exits.In this enhancement
    SAPMM06E        0111 CUSTSCR1 SAPLXM06        0111 Subscreen: PO item
    u can add subscreen and u can add u r own fields here .
    and u can write u r code in 'EXIT_SAPMM06E_006'.
    if u want to change the title of the program.
    Go to program SAPLXM06 then go to text element give text symbol no as '111' and u can change the title of u r tab.
    I hope this solves u r problem.

  • Inter company PO Shipping Tab in item level.

    Hi Everybody,
    I want to make Inter company PO but I am not getting the Shipping Tab in item level. All Sales view is maintained in Material Master for both the Plant and Material. Could anybody help regarding the Settings of Shipping point to get Shipping tab while creating the PO.
    If any Sales module setting if required please inform.
    Already for one Plant it is getting, but same I have to maintain for another Plants.
    At backend supply plant & receiveing Plant for Doc type is maintained and checking rule is also assinged.
    regards,

    have u dont the setting for shiping date for plants
    do the setting for the plant
    create a customer for a plant and assign in following
    spro-- mm-purcpur ordset up sto
    Define Shipping Data for Plants
    ur issue will be solved
    Message was edited by:
            Umakant Bhangale

  • Suppressing tabs at item level in sales order

    16.07.2008
    Hi friends,
    How do i suppress tabs like say the condition tab or the billing plan tab at item level for a Sales document type and for certain users when the user is using transaction code va02?. My requirement is certain users should not be able to change date in these tabs.
    Please suggest.
    Regards,
    Uday

    Hi,
    You can control it through user-exit USEREXIT_FIELD_MODIFICATION in program MV45AFZZ by using following coding. You have to create database table <ztable> where you will maintain user who are not allowed to change the billing date.
      tables: <ztable>
      case screen-name .
        when 'VBKD-FKDAT'.
          if vbak-vbtyp eq 'C'.
            select * from <ztable>
               where user_name eq sy-uname.
               if sy-subrc eq 0.
                  screen-input = 0.
               endif.
          endif.
      endcase.

  • Adding a new tab on item level in me21n tcode

    Hi all.
    i am adding a new tab on item level in me21n tcode.
    i want to make this tab to be shown on the screen when the order type is UB is stock purchase order.i dont know how to make this condition and where should i place it so that this tab can come in effect only when the stock purchase order appears.
    please help.thanks

    hi
    chk this
    Re: New tabs in the header tab-sheet of ME21N/ME22N/ME23N
    hope this helps
    regards
    Aakash Banga

  • User EXIT to suppress or disable  "Conditions" tab at item level in va02

    hi gurus,
    well i have very urgent requirement to suppress Condotion tab at item level in va02 based upon authority object, did you know where i can disable the function code "T\05" or suppress subscreen.
    my requirement is that when a user press on condotion tab he should not be able to see pricing detail data.
    will reward points for sure
    mandy

    Hi Mandy,
    I think you can do through SHD0 Transaction by creating transaction variants.
    If not possible there could be some customization from SPRO, consult with your functional guy.
    Check this enhancement MV45AFZZ
    PERFORM USEREXIT_FIELD_MODIFICATION, I think in this perform you may disable, check this
    Regards,
    Satish
    Message was edited by:
            Satish Panakala

  • Proble in VA01, cant see condition types in condition tab at item level

    Hi
    Well i am facing a strange problem in VA01, i am not able to see condition type whole grid under Condition tab at item level in VA01. actually i was given a project to hide pricing data from particular users based upon Authorization object value. initially i though it might be because of that so  i revert back all the changes but the problem remain Intact.
    well do you have any idea which user exit or enhancement may affact this or do you knoe if it can be because of  SD configuration changes.
    i mean can be hide condition type in VA01 through pricing condition.
    the other thing is its working fine in VA02.
    i made changes in following include
    MV45AFZZ
    MV45AFZB
    LV69AFZZ
    RV60FUS4
    any help will be highly appreciated .
    rewards for sure
    mandy
    Edited by: mandy on Jan 15, 2008 2:11 PM

    use this
    INCLUDE MV45AFZZ. include.
    u will find  FORM USEREXIT_PRICING_PREPARE_TKOMK  
    where u can change
    princing
    i am puting my code which i did
    ok
    DATA : WA_KOMV LIKE XKOMV,
           WA_ZPRICING LIKE ZPRICING1.
    IF SY-TCODE = 'VA01'.
    IF VBAK-AUART = 'YYOR'.
    LOOP AT XKOMV INTO WA_KOMV where KPOSN = VBAP-POSNR.
    IF WA_KOMV-KSCHL = 'ZABS'.
    SELECT SINGLE *
           FROM ZPRICING1
           INTO WA_ZPRICING
           WHERE VKORG = VBAK-VKORG
           AND VKBUR = VBAK-VKBUR
           AND VTWEG = VBAK-VTWEG
           AND MATNR = VBAP-MATNR.
    IF SY-SUBRC = 0.
    delete XKOMV.
    ENDIF.
    ENDIF.
    ENDLOOP.
    ENDIF.
    ENDIF.

  • I'm looking for a software that allows me to add accessories or furniture items in the picture for interior design purposes. Is photoshop cc able to do this?

    I'mI looking for a software that allows me to add accessories or furniture items in the picture for interior design purposes. Is photoshop cc able to do this?

    photoshop is able to do it.. the question is if you are able to do it with photoshop.
    it´s called compositing and if you want it too look real it depends on user experience if it´s a scuccess or not.

  • Item level physical inventory for warehouse in SAP IS retail

    Hi, Can you pls let me know whether its possible to do item level physical inventory for warehouse  in SAP Retail, without implementing extended warehouse management. I could understand that SAP is allowing to do bin level physical inventory only in warehouse.
    Thanks,
    Rajesh

    I am not working in retail, but the docu found in the initial screen clearly says it is without special stock.
    however, it says as well, if you need functions that are not provided, then you shall use MI31 instead.
    first I would open a call at SAP and tell them that WV31 does include consignment despite of different info in the docu.
    if it is a bug, then SAP will fix it.
    If it is design, then you have to use MI31, and SAP may change the docu in future releases.

  • SAP CLM: Modifying Item detail to include a custom field

    Hello,
    Is it possible to modify the line item page to include another custom field ?
    I navigated through Extension Definition configuration but there is no Class for Line Item. Is this even possible?
    Thanks,
    Arijeet

    Hi Prasad,
    Thank you for your help. But I am unable to find out the correct class to include the extensions. As per the Reference Guide the class ID is 1604 but I am unbale to see this while trying to add the fields in Extension Definition Configuration.
    It would be great if you could provide some more concrete steps.
    Thanks,
    Arijeet

  • Sales order: How to add pricing conditions at item level in BDC of VA01

    Hello Experts,
    Am writing BDC for sales order, in this process I need to add ITEM PRICING CONDITIONS, so, am selecting item and pressing the DOLLAR symbol button and am adding the conditions by pressing PLUS button in loop!! but am getting this erorr- Field KOMV-KMEIN (2) is not an input field!! when I execute it in we19-BACK GROUND only!! if I execute the same CODE IN we19-Fore ground, I dont have any issue!!  I checked this SDN (field status in config), Google, but did not helped me!
    Pls. let  me know is there any other way to add conditions at item level in VA01 in BDC code?
    THank you

    Hi,
    It is happening because the second row of the item level data screen is becoming display only. Please check whether In foreground mode you are pressing an extra enter to give data in the second row of the item level data after giving data in the first row and in BDC recording you have not recorded that 'Enter'.
    Regards,
    Gargi

  • Excise tab at item level in MIGO screen

    Dear Gurus,
    Am getting excise invoice tab at header level, but not at item level. Because of that I am facing so many problems like posting on assesable values, manually changing those values etc..
    Let me know what else required to be configured to get the same at item level.
    Satish

    Hello,
    Excise invoice tab will be available only in MIGO header during GR creation.
    Once Excise Part - 2 is done, details of the same will be available in the MIgo line item excise tab.
    Note: you should not change the value of the assessable value and all during GR at excise tab. (Only rounding off is advsed).
    if u r changing the values means, PO value is mismatching with the excise invoice value, here u need to ask the Buyer to change or amend thee Purchase order
    Regards
    Shenoi.

Maybe you are looking for

  • Vendor Evaluation error

    Hi, During maintaining a vendor evaluation, I am getting the following error message: "System settings for purchasing org 0001 incomplete". I've maintained the following settings in Customizing: 1) Define weighting keys 2) Define criteria 3) Define s

  • Customer texts to delivery document item level

    Hello friends, My requirement is for some customers I maintain load number in customer master texts field, for some customers I am not going to maintain.When I am creating delivery document if that load number is not triggered at item level, I should

  • Need help on accessing transaction?

    Hi, I am doing an SOD audit and come across one role where the user is given authorization to ME21N (create purchase order) for example in auth object S_TCODE. But he has been given display (and not create) authorization in Document Type in Purchase

  • Why do we use Handling Unit management  in SAP

    Hi Experts, I would like to know about the handling unit management. What is the use of using/implementing handling unit  management in SAP. What is the need and what are the benefits.

  • Spamhaus PBL

    I have determined that my Verizon IP address is on the Spamhaus PBL list.  Many of my outgoing emails (multiple accounts) are being blocked because they initiate from the "Verizon" listed IP address.  This is a Verizon IP issue.  I don't send SPAM or