Adding customized additonal view to MM01

Hi all,
Is it possible to add an additional customized view to MM01, For example i want add an Basic Data 3 view to MM01. Is it possible?
Regards
Vijay

goto SPRO and check for the project name which can be searched using F4 help...If any project component has screen exit FM u can use it...
Adding Views in Material Master
I am trying to add views using MM02.  It is showing me just 3 views ...BASIC DATA1, BASIC DATA2 &  CLASSIFICATION..... I want to add other views but am not able to do it.
There are 2 ways to add views to the existing material master:
1.  Go to mm01 
    - Enter the material for which you want to add the views. 
    - Then you enter the same material in copy from material 
    - Then you may find all the view 
    - Then select the views you want to add and make entries in the same view and save it 
    All this is done in mm01.
or
    You can mass extend views for a material in tcode mm50. 
    Select the maintenance status as V for e.g. if you want to add views of sales.  *-- Chirag
2. If the default setting is done in the material of the material type then you may not find the new views in mm01 
    If that is the case, then you go to spro  >> log general >> mat master >> basic sett >> material  types >> 
    define attributes of materisl types.
    - Select material type of the material in which you want to make the change
    - Double click on the same, then on right hand side, you will find user parameters under which you will find the views 
    - Select the view you want and save your settings
    - Then go to mm01 and do the way it is mentioned in the first step.
Message was edited by:
        Ramesh Babu Chirumamilla

Similar Messages

  • Adding custom fields to table view assignment block

    Hi All,
      I want to add two news fields to 'Service Contract Item Level' in 'Object List' assignment block. How can i add these two custom fields to table view assignment block using AET. I have tried to add new fields using AET but there is no business object supports to my requirement.
    Thanks & Regards
    Nitish

    Hi Nitish,
    As naveen sadid use Cutomer_i object . I guess it will be more appropriate.
    And following link will be helpful for AET creation.
    CRM 7.0 How to --4 Adding Custom Fields With The New Application Enhancement Tool (AET)
    Regards
    Loks

  • Adding Custom buttons to ECL Viewer

    Hello Everyone,
    We have a requirement where I need to add a custom button on the Redlining section of the ECL Viewer. Like currenty, SAP provides tools like Drawing a line or Square or Rectangle and also Insert Image kind of functionality when doing Redlining. So, the question is in this section along with SAP buttons, can I add a custom button out there which helps to provide my own functionality like adding custom drawing tools?
    Please let me know if thats possible or does it requrie modifying some of the SAP DLL files.
    Thanks,
    Shashidhar.

    Dear Shashidhar,
    regarding your request I have to inform you that the ECL Viewer is developed by a third-party vendor company and so from SAP point of view there is no chance to enlarge the buttons for redlining in the ECL Viewer.
    Best regards,
    Christoph

  • Added custom screen in PO using BADI ME_GUI_PO_CUST and ME_PROCESS_PO_CUST

    Hi All,
    I have added custom screen with two z fields at item level using BADI ME_GUI_PO_CUST and ME_PROCESS_PO_CUST i can see my screen in tcodes ME21N , ME22N , ME23N but I am not able to save data.
    and also screen is coming in change mode even in ME23N .
    thanks.

    Hi,
    I have added two xfields at item level.
    This is the code i have added in zimplementation ZME_GUI_PO_CUST .
    IN Zimplementation ME_PROCESS_PO_CUST I have added code only in method FIELDSELECTION_ITEM . after doing this I can see only screens in ME21N, ME22N, ME23N but when enter data in zfields and trying to save it is giving me message no data has changed.
    method IF_EX_ME_GUI_PO_CUST~SUBSCRIBE.
    DATA: ls_subscriber LIKE LINE OF re_subscribers.
    we want to add a customer subscreen on the item detail tab
      CHECK im_application = 'PO'.
      CHECK im_element     = 'ITEM'.
    each line in re_subscribers generates a subscreen. We add one subscreen in this example
      CLEAR re_subscribers[].
    the name is a unique identifier for the subscreen and defined in this class definition
      ls_subscriber-name = subscreen1.
    the dynpro number to use
      ls_subscriber-dynpro = '0001'.
    the program where the dynpro can be found
      ls_subscriber-program = 'SAPLYMEPOBADIEX'.
    each subscreen needs his own DDIC-Structure
      ls_subscriber-struct_name = 'MEPO_BADI_STRUCT'.
    a label can be defined
      ls_subscriber-label = text-001.
    the position within the tabstrib can be defined
      ls_subscriber-position = 4.
    the height of the screen can be defined here. Currently we suport two screen sizes:
    value <= 7 a sevel line subscreen
    value > 7  a 16 line subscreen
      ls_subscriber-height = 7.
      APPEND ls_subscriber TO re_subscribers.
      ENDIF.
    method IF_EX_ME_GUI_PO_CUST~TRANSPORT_FROM_MODEL.
      DATA: l_item       TYPE REF TO if_purchase_order_item_mm,
            ls_mepoitem  TYPE mepoitem,
            ls_customer  TYPE mepo_badi_exampl.
    system asks to transport data from the business logic into the view
      CASE im_name.
        WHEN subscreen1.
    is it an item? im_model can be header or item.
          mmpur_dynamic_cast l_item im_model.
          CHECK NOT l_item IS INITIAL.
    transport standard fields
          ls_mepoitem = l_item->get_data( ).
    transport customer fields
          CALL FUNCTION 'YMEPOBADIEX_GET_DATA'
            EXPORTING
              im_ebeln = ls_mepoitem-ebeln
              im_ebelp = ls_mepoitem-ebelp
            IMPORTING
              ex_data  = ls_customer.
    store info for later use
          MOVE-CORRESPONDING ls_mepoitem TO dynp_data_pbo.
          MOVE ls_customer-badi_bsgru TO dynp_data_pbo-badi_bsgru.
          MOVE ls_customer-badi_afnam TO dynp_data_pbo-badi_afnam.
        WHEN OTHERS.
      ENDCASE.
    endif.
    method IF_EX_ME_GUI_PO_CUST~TRANSPORT_TO_DYNP.
      CASE im_name.
        WHEN subscreen1.
          CALL FUNCTION 'YMEPOBADIEX_PUSH'
            EXPORTING
              im_dynp_data = dynp_data_pbo.
        WHEN OTHERS.
      ENDCASE.
    ENDIF.
    endmethod.
    method IF_EX_ME_GUI_PO_CUST~TRANSPORT_FROM_DYNP.
      CASE im_name.
        WHEN subscreen1.
          CALL FUNCTION 'YMEPOBADIEX_POP'
            IMPORTING
              ex_dynp_data = dynp_data_pai.
          IF dynp_data_pai NE dynp_data_pbo.
    something has changed therefor we have to notify the framework
    to transport data to the model
            re_changed = mmpur_yes.
          ENDIF.
        WHEN OTHERS.
      ENDCASE.
    ENDIF.
    endmethod.
    method IF_EX_ME_GUI_PO_CUST~TRANSPORT_TO_MODEL.
    DATA: l_item       TYPE REF TO if_purchase_order_item_mm,
            ls_mepoitem  TYPE mepoitem,
            ls_customer  TYPE mepo_badi_exampl.
    data have to be transported to business logic
      CASE im_name.
        WHEN subscreen1.
    is it an item? im_model can be header or item.
          mmpur_dynamic_cast l_item im_model.
          CHECK NOT l_item IS INITIAL.
          ls_mepoitem = l_item->get_data( ).
    standard fields changed?
         IF dynp_data_pbo-matkl NE dynp_data_pai-matkl OR
            dynp_data_pbo-plifz NE dynp_data_pai-plifz OR
            dynp_data_pbo-webaz NE dynp_data_pai-webaz.
    update standard fields
           ls_mepoitem-matkl = dynp_data_pai-matkl.
           ls_mepoitem-plifz = dynp_data_pai-plifz.
           ls_mepoitem-webaz = dynp_data_pai-webaz.
            CALL METHOD l_item->set_data( ls_mepoitem ).
         ENDIF.
            CALL FUNCTION 'YMEPOBADIEX_GET_DATA'
              EXPORTING
                im_ebeln = ls_mepoitem-ebeln
                im_ebelp = ls_mepoitem-ebelp
              IMPORTING
                ex_data  = ls_customer.
            ls_customer-badi_bsgru = dynp_data_pai-badi_bsgru.
            ls_customer-badi_afnam = dynp_data_pai-badi_afnam.
            CALL FUNCTION 'YMEPOBADIEX_SET_DATA'
              EXPORTING
                im_data = ls_customer.
         ENDIF.
        WHEN OTHERS.
      ENDCASE.
    ENDIF.
    method IF_EX_ME_PROCESS_PO_CUST~FIELDSELECTION_ITEM.
    DATA: l_persistent TYPE mmpur_bool.
    CONSTANTS:
    FIELD-SYMBOLS: <fs> LIKE LINE OF ch_fieldselection.
    l_persistent = im_item->is_persistent( ).
    *IF l_persistent EQ mmpur_yes.
    READ TABLE ch_fieldselection ASSIGNING <fs> WITH TABLE KEY
                         metafield = MMMFD_YYMAN_NUM."fd_cust_01.
    IF sy-subrc IS INITIAL.
    <fs>-fieldstatus = '*'. " Display <-- this one was as per the sample code given.
    <fs>-fieldstatus = '+'. " Input <-- this i added to make the field mandatory.
    ENDIF.
    READ TABLE ch_fieldselection ASSIGNING <fs> WITH TABLE KEY
                         metafield = MMMFD_YYMAN_DES."fd_cust_01.
    IF sy-subrc IS INITIAL.
    <fs>-fieldstatus = '*'. " Display <-- this one was as per the sample code given.
    <fs>-fieldstatus = '+'. " Input <-- this i added to make the field mandatory.
    ENDIF.
    *ENDIF.
    ENDIF.
    endmethod.

  • Adding custom fields to Article Master (MM41/MM42)

    Hi  ,
    I have a requirement of adding custom fields to Basic data of Article creation in MM41 . I appended the fields to
    MARA table using Append structure . I followed the steps given in note 44410 . But i am unable to find an EXIT/BADI
    /ENHANCEMENT to populate the values of custom fields which get triggered during MM41/MM42 .
    But the Exit EXIT_SAPLMGMU_001 gets triggered only during MM01/MM02 . Kindly guide me to solve this .
    Thanks and Regards,
    S.Sivakumar

    Hi,
    Business Requirement:
    As per the client Business critical requirements, additional fields are
    required in the Article Master. This is because the existing fields in
    the Article master are not adequate to capture the data.
    We have referred the SAP Note 925424 (Table MAW1) and 44410 (MARA) for
    this.
    Based on the above note 44410, we have added fields in MARA table,
    since Manufacturing
    activities are envisaged in future instead of proceeding with 925424.
    Whether, MAW1 (925424) also to be considered?  
    Since this is very critical requirement from client, we cannot avoid
    and do not have any
    alternate solution.
    These fields will be used in reports and pricing in sales &
    distribution.
    Apart from this, are there any other SAP notes to be referred?
    Is there any restrictions there in length for fields to be used in MARA table .
    By referring note 44410 , i added 20 fields in MARA table, in which some 4 fields are more than 40 characters .
    All custom fields are updated in MM41 and MM42 .
    Shall i proceed by this approach .Kindly guide me on this .
    Thanks and Regards,
    S.Sivakumar

  • Custom Folder View w/ Movable Columns

    Question1:
    =======
    I created very simple custom folder view. How can I make my custome folder view to display Movable Columns?
    When adding elements into Folder View, the section Standard Form Elements does contain only the element Discussion Folder (Standard View), no movable columns
    I need in my custom folder view movable columns, Heeeeeeeeelp!!
    Question2:
    =======
    In Folder Options in Configure Columns, one can choose what columns of an entry to display.
    I found the order of chosen columns inconsistent.
    Is there a way how to specify the order of the chosen columns?

    1. When in the folder, click on Manage > Configure. Do you not see an option for selecting the default folder view?
    2. No, currently there is no way to specify the column order.
    -- Khurram

  • Adding field to std screen mm01

    Hi folks,
      i want to add a feild( idnlf ) to mm01 transaction.iam able to add the feild, bt data is not updating in mara table.iam using enhancement mga00001.in enhancement i wrote code as:
    Tables: Mara.
    Data: idnlf type mara-idnlf.
    if sy-ucomm = 'BU' or sy-ucomm = 'YES'.
    import mara-idnlf from memory id 'IDNLF'.
      move mara-idnlf to cmara-idnlf.
    endif.
    and in function group screen :
    MODULE ASSIGN_DATA INPUT.
    if sy-tcode = 'MM01' or
       sy-tcode = 'MM02'.
    export mara-idnlf to memory id 'IDNLF'.
    endif.
    ENDMODULE.        
    My question is if im adding custom field the data is updating.but if iam using standard field(idnlf) the data is not updating.please let me know can we add standard field and update if so how.
    please do needful.
    Thanks,
    Neelima.N

    Hi,
    Did you check Re: Screen Exit for MM01.
    Hope this helps you
    Raj

  • Adding custom columns to the tasks tab in UWL

    Hi Experts,
    We have UWL configured for GP in CE 7.1.
    Currently we have standard columns like Subject, From, Sent Date etc. only
    I need to add some columns like Project No., Customer No.(GP parameters) to the 'Tasks' tab in it.
    These columns are required for all the Work items that appear in UWL.
    I have read about adding custom view for a specific task , but not sure how it can be done in my case.
    Kindly provide inputs for this.
    Thanks and Regards
    Aanchal

    Hi Aanchal,
    i have posted exactly the same problem a few months ago, and no one answered me.
    I couldn't find any documentation on how to add custom GP parameters in the universal worklist, in the examples on customizing the UWL XML they always refer to parameters from the r/3 webflow, never GP.
    I really can't believe that nobody ever tried to do this and faced this problem!
    Please let me know if you find something..
    Regards,
    Marco.

  • Adding custom fields to shopping cart in SRM 7.0

    Hi My dear Experts,
    I am having big doubt also a lot of confussion as per my understanding regarding adding custom fields to SC.
    I believe,
    i) It can be achieved by configuration in spro with respect to Meta data frame.
    i,e  Configure field control->configure control for fields on Header/Item level
    after that
    configure customer fields->Define cistomer fields on Header/Item level.
    ii) I also doubt fields can be added through Webdynpro enhancement of standard component.
    Pls clarify my doubt with little detail which is the best way to achieve my requirement ??
    Is Webdynpro Enhancement  really needed ??

    Hi ,
       Example for  Adding fields in SC accounting Tab ...follow the below example
    1. Add custom field ZZTESTACCT  in   structure   INCL_EEW_PD_ACC_CSF by  using  append structure.
    2. Spro ->Supplier Relationship Management u2192 SRM Server u2192 Cross application basic settings u2192 Extensions and field controls (personalization) u2192 Configure field control ->Configure Control for Fields of Substructures
    then click on  "Metadata for Fields of Substructures and Table-Like Enhancements"
    add the below entry
    Bus. Object Set Type  : 31
    Structure Field Name  : ZZTESTACCT
    Bus. Object Type       : BUS2121
    Set Level                    : Item
    Field Visible :  Check box should be checked
    Field Enable :  check box should be checked
    if you create the above entry then you can see ZZTESTACCT field in the accounting tab.
    Second point :
    WD_BADI_DOMODIFYVIEW  is a Badi you can implement this badi for the WD component and View to handle the UI elements.
    regards,
    Devi

  • IC_BASE, Page Fragments : root_content.htm adding custom code in standard .htm

    Hi All,
    I am adding custom code in Page Fragments : root_content.htm of bsp application : IC_BASE, for particular business purpose but after activating
    its asking to select page fragments. here its showing IC_BASE and etc.. could you pls guide me how to check which page fragment for this
    root_content.htm. and also i am adding custom code in mail.htm under page with flow logic of same bsp application. so here i am assuming page
    fragment is IC_BASE.
    Jimmi.

    Hi Jimmi,
    In General if you want to modify standard BSP component, you need to enhance the component first and then you need to enhance the particular view you want to modify. You can directly modify the .htm page in view after enhancement.
    Regards,
    Dharmakasi.

  • Sequencing of views in MM01

    Hi Gurus
    Customer Requirement is to maintain the sequencing of views in MM01.
    say sequence is KTEN...
    If we try to maintain view N after K then there should be error..
    any idea welcome..
    Thanks in advance

    Hi
    It is always better to maintain the sequence like this (same as MM01 sequence)
    Basic Data 1
    Basic Data 2
    Classification
    Sales: Sales Org. Data 1
    Sales: Sales Org. Data 2
    Sales: General/Plant Data
    Foreign Trade: Export Data
    Sales Text
    Purchasing
    Foreign Trade: Import Data
    Purchase Order Text
    MRP 1
    MRP 2
    MRP 3
    MRP 4
    Forecasting
    Work Scheduling
    Production Resources/Tools
    General Plant Data / Storage 1
    General Plant Data / Storage 2
    Warehouse Management 1
    Warehouse Management 2
    Quality Management
    Accounting 1
    Accounting 2
    Costing 1
    Costing 2
    Sometimes it creates problem when you won't follow this
    for example
    If you wants to come to Sales data2, without entering the basic sales data in 1 then it will be a problem.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • How to add three views in MM01

    How to add three custom views in MM01 based on material type.
    Regards,
    Malla

    hi,
    This will solve your problem.
    [https://forums.sdn.sap.com/click.jspa?searchID=19403068&messageID=5708251]

  • Unable To Capture View in MM01

    Dear All,
    I am unable to capture the 'Accounting' view in MM01.
    In recording in SHDB, I find the accounting view cannot be captured.
    Please advice.
    Regards,
    Prosenjit.

    Hi Prosenjit,
    try to do this it may be help full to you...
    while selecting the views in MM01 at the time of recording. If you want to capture Accounting view after selecting required views please press PAGE DOWN button in the key board then select Account view by doing this you can capture the Account view.....
    please reward if this helpfull.

  • Adding tabs to View based application in mobile project

    Hi,
    I wanted to if tabs can be added to a view based (ViewNavigatorApplication) ? I need tabs few of my views also tabs will be different in different views.
    If using TabbedNavigatorApplication is the only option how do I create a first view without tabs and different tabs in different section of the application.

    on what page of the app (P-Track, right?)... I assume you desire to see them listed in the project details, page 200? If so, the source for the query for that region has a where clause hard-coded for m.milestone_status='Open' ... removing it would get what you want there (they will still be color coded). I've modified this application extensively such that I have an actual control on the region(s) to allow the user to choose "open/all" (for milestones and actions)
    Otherwise, you can adjust the search filter 'status' option on page 35 to 'all' (the default is 'open') and click go.. (and/or add a new list option in that control for 'closed'..)
    does that help?

  • In A3, How Do I Apply One Of My (many) Custom Metadata Views To The Viewer?

    In A3, it appears that both the Viewer and Browser are limited to just 2 views: Basic and Expanded.
    In A2, I had many custom metadata views that I could easily change via the Metadata-pane (now gone) in Prefs. depending on the type of workflow, customer needs, etc.
    Now, if I'm limited to just 2, I'll have to go in and manually change the composition of A3's 2 views for each workflow. If this is the case, I see it as a big step backwards. This is the type of limitation that iPhoto often has, and flexibility is what I expect from a Pro-App.
    I spent a great deal of time developing custom metadata views for various workflows so that I could align the various displays in Aperture to each workflow. What do I do now?

    Just stumbled over this thread:
    Yes, its the truth. There is no way to quickly change the display of Metadata in Browser or List View.
    You can tell from the form of the Settings - Window (Command - J) that there is no way anymore. You have one Standard View, and one Extended.
    Strange. I did not use it a lot, I always display pictures to customers with no metadata, except when we do a selection on site (and then its standard with only rating).
    wok4

Maybe you are looking for

  • Photoshop cs 4 wont run after installation on mac book pro

    I recently brought the adobe design premium package with flash, illustrator, indesign, photoshop etc... after installation all other application works but just photoshop, it just wont start at all... it will pop up on the deck for a second or two and

  • List of standard Interim storage types - WM

    What are the standard Interim storage types In my system people have created few starting with 9 hence not able to diffrentiate which are standard and which are non-standard Thanks

  • Validate System Configuration?

    Hi I was installing e bussiness suite good and on Post-Install Checks I have Validate System Configuration with next > ok-Database Availiability ok-Configuration upload ok-Environment file ok-DBC file not ok -HTTP Failed-level1 HTTP checking URL =htt

  • Oracle Personal 9i for XP download doesnt work

    When I download any of the Oracle Personal 9i files to my drive and try to open them I get a "Cannot Open File, It doesnt Appear to be a valid archive" error. I tried opening the file on win2000 and winxp operating systems with WinZip installed and g

  • How can I get an image from Aperture to PS?

    When I execute the command Open in External Editor (set up in the Preferences as Photoshop CS) Photoshop opens, but the Aperture image is not there. (This started happened after I had to re-install Aperture.) Any advice on how to fix this? Thanks, Su