How to uplaod contact as well as Material master in to CCM 2.0

Hi All,
Do we have any programme to uplaod existing contracts as well as material master directly into Catalog?
Please let me know,
Thanks,
NR

Hi,
Thanks,
Hey but I wanted complete steps after this,
Actully my requirement is like this,
We have CCM and SRM on same client.
We have around 10000 (Stock material + Non stock materials) and 5000 Text Item.
We have around 1000 Vendors. Here we do not want to send CSV files to Vendor for update and we would like to have a list of all materials in catalog by running just any programe.
When user will create shopping cart through catalog then it should consider vendor and create PO automatically.
Now again questions are like:
1. Can we use BBP_CCM_TRANSFER_CATALOG this programe when SRM and CCM in same client?
2. If we run above said programe then it will create one std extracted catalog in CCM screen, is this catalog will work as supplier catalog or here also we have to create separate supplier catalog?
3. Now problem is that if we create supplier catalog then we have to put one supplier catalog which will again be a specific to that catalog only but here we do not want to create number of supplier catalogs, is it possible?
4. We need tax code should be work at material level and not at material group level (which normally work in std SRM), so for that can we add any new characteristic in CSV file so that it will get add direclty into catalog itself.
Please let me know , really will be great help.
If possible can you tell me how to contact you so that I can discuss things more properly.
Thanks,
NR

Similar Messages

  • How to cancel serial no. profile from material master ?

    dear all SAP experts,
                I have 1 mateial in which i assign serial no. profile in work scheduling view in material master. So how can cancel serial no. profile from material master ?
    Suggest me
    regards,
    Nitin Nerkar

    As long as no serial numbers exist for the material you are able to cancel or change the serial number profile.
    As soon as serial numbers exist for the material and you want to change or delete the serial number profile, you must note the following:
    The previously assigned serial numbers are no longer suited to the current serial number profile.
    The indicator for the stock check may have changed. If this is the case, you can copy the profile settings in the serial number using the executable report program RISERNR9. However, you should only start this program once the changes have been updated in the material master record.
    You can no longer delete the serial number profile in the material master record. Instead of this, you create a serial number profile without serialization procedures in Customizing and enter this in the material master record.

  • How can we update insp. type in material master on mass basis.

    Hi Team,
    We are using LSMW for material master. I was told that we can not update inspection type  through LSMW. Is it possible thru LSMW if not, how can we update insp. type in material master on mass basis.
    Is there any T-Code to update mass chages for inspection type in material.
    Please suggest.
    Thanks

    Hi,
    You can use  TCode -QA08.
    This Tcode have facility to Inspection Type activation in single  / mass material.
    Also useful for deactivation, special setting at Inspection Type level.
    Regards,
    JM

  • Please guide me how to include storage location to existing material master

    Hi Guru's,
    Please guide me how to include storage location to existing material master....
    please provide step by step process or provide any documentation that would be helpfull to me...
    please let me know of my question is not clear..
    Thanks in advance and will give full points....
    Srinivas...

    Hi
    First :- You can define the storage loctions in the plant under the customization :- SPRO -> Enterprise Structure ->Definition -> Materials Management ->Maintain storage location
    Once defined under the plant, you can create the same storage locations in the material master
    Second :- Under SPRO -> MM -> Inventory -> palnt parameters, for your plant check the field " Create Storage locations Automatically" . This will lead to create new storage locations at the time of GR, even if you have not maintained under step 1.
    Hope it answers your question.
    Regards,

  • How to change the current period in material master

    hi everybody,
    as i have installed sap 4.7 ides version on my home pc for practice , but hwenver i am creating the new material  master in the system , i observe that in accounting1 tab the current period is 12 2002 , how should i change the current posting period so that i can start the transaction in current uear 2009 and then later i can work in 2010 ....
    i have tried  the transaction mmrv, mmpv, mmpi through some resources but i didnt know how to do the settings in the system in IMG (SPRO) kindly help me through , i have wasted lot of time in this..
    i hope MM team will help me out of this...
    AMIT BATHLA

    Hi,
    Check in OMSY Transaction that, Which current month and year is having your comapny code.
    and go to T.Code MMPV
    enter Next Month of that cureent period and Year
    and Execute. You find the message that your current period has changed.
    Do the same process month by month till reaches to current period and year.
    Let me know if you have further queries.
    Padma.

  • How to add  basic data text into material master?

    Hi anybody,
    I want update only basic data text into material master. how to update basic data text ?
    is it any bapi or functional module is there in abap?
    anybody please tell me.
    tks
    s.muthu

    Hi Subramanyan,
    Check this function module:
             CREATE_TEXT
    Check out this sample program:
    REPORT ZMM_INSERT_LONGTEXT.*Internal table to hold long text...
    DATA:
      BEGIN OF T_UPLOAD OCCURS 0,
        MATNR LIKE MARA-MATNR,             " Material number
        ID(2) TYPE C,                      " Identification
        LTEXT LIKE TLINE-TDLINE,           " Long text
      END OF T_UPLOAD,*Internal table to hold long text....
      T_LINE LIKE TLINE OCCURS 0 WITH HEADER LINE.DATA:
       W_GRUN LIKE THEAD-TDID ,            " To hold id
       W_OBJECT LIKE THEAD-TDOBJECT VALUE 'MATERIAL',
                                           " To hold object id
       LV_VALUE(70).                       " Value to hold material number
    START-OF-SELECTION.* This perform is used to upload the file
      PERFORM UPLOAD_FILE.* This perform is used to place the text in MM02 transaction
      PERFORM PLACE_LONGTEXT.
    *&      Form  create_text
    This routine used to create text in MM02 transaction
    Passed the parameter w_grun to P_C_GRUN
                    and lv_value to P_LV_VALUE
    FORM CREATE_TEXT  USING    P_C_GRUN
                               P_LV_VALUE.  DATA:
        L_ID LIKE THEAD-TDID,
        L_NAME(70).  MOVE : P_C_GRUN TO L_ID,
             P_LV_VALUE TO L_NAME.  CALL FUNCTION 'CREATE_TEXT'
           EXPORTING
             FID               = L_ID
             FLANGUAGE         = SY-LANGU
             FNAME             = L_NAME
             FOBJECT           = W_OBJECT
         SAVE_DIRECT       = 'X'
         FFORMAT           = '*'
           TABLES
             FLINES            = T_LINE
          EXCEPTIONS
            NO_INIT           = 1
            NO_SAVE           = 2
            OTHERS            = 3
      IF SY-SUBRC <> 0.
        CLEAR LV_VALUE.
      ELSE.
        DELETE T_LINE INDEX 1.
      ENDIF.ENDFORM.                    " create_text&----
    *&      Form  upload_file
    This routine is used to upload file
    No interface parameters are passed
    FORM UPLOAD_FILE .  CALL FUNCTION 'UPLOAD'
       EXPORTING
        CODEPAGE                      = ' '
        FILENAME                      = ' '
          FILETYPE                      = 'DAT'
        ITEM                          = ' '
        FILEMASK_MASK                 = ' '
        FILEMASK_TEXT                 = ' '
        FILETYPE_NO_CHANGE            = ' '
        FILEMASK_ALL                  = ' '
        FILETYPE_NO_SHOW              = ' '
        LINE_EXIT                     = ' '
        USER_FORM                     = ' '
        USER_PROG                     = ' '
        SILENT                        = 'S'
      IMPORTING
        FILESIZE                      =
        CANCEL                        =
        ACT_FILENAME                  =
        ACT_FILETYPE                  =
        TABLES
          DATA_TAB                      = T_UPLOAD
         EXCEPTIONS
           CONVERSION_ERROR              = 1
           INVALID_TABLE_WIDTH           = 2
           INVALID_TYPE                  = 3
           NO_BATCH                      = 4
           UNKNOWN_ERROR                 = 5
           GUI_REFUSE_FILETRANSFER       = 6
           OTHERS                        = 7
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.  SORT T_UPLOAD BY MATNR ID.
    ENDFORM.                    " upload_file
    *&      Form  place_longtext
    This routine places the text in MM02 transaction
    No interface parameters are passed
    FORM PLACE_LONGTEXT .  LOOP AT T_UPLOAD.    T_LINE-TDFORMAT = 'ST'.
        T_LINE-TDLINE = T_UPLOAD-LTEXT.
        APPEND T_LINE.    IF T_UPLOAD-ID EQ 'BT'.
          MOVE T_UPLOAD-MATNR TO LV_VALUE.
          MOVE 'GRUN' TO W_GRUN.                   "Test ID for Basic data text
          PERFORM CREATE_TEXT USING W_GRUN LV_VALUE.
        ENDIF.    IF T_UPLOAD-ID EQ 'IT'.
          CLEAR W_GRUN.
          MOVE T_UPLOAD-MATNR TO LV_VALUE.
          MOVE 'PRUE' TO W_GRUN.                      "Test ID for Inspection text
          PERFORM CREATE_TEXT USING W_GRUN LV_VALUE.
        ENDIF.    IF T_UPLOAD-ID EQ 'IC'.
          CLEAR W_GRUN.
          MOVE : T_UPLOAD-MATNR TO LV_VALUE,
                 'IVER' TO W_GRUN.                    
                                                      "Test ID for Internal comment
          PERFORM CREATE_TEXT USING W_GRUN LV_VALUE.
        ENDIF.
      ENDLOOP.ENDFORM.                    " place_longtext
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • How to Remove batch mangement indicator from Material Master

    Hi
    I am trying to remove batch mangement indicator from Material master..but system does not allow
    Before this .. I have done all activities also ...clear open SD documnets ,deliveriy documents ,PO documents ,Process order teco and . reservations and activae deletion flag in  batch  ... and made current period  stock an previous period  stock zero... i have cleard all documnets ...still system does not allow remove indicator..could you please guide in this issue ..how to remove batch indicator.
    Regards
    Sasi

    Hi,
    Please refer the below links.
    Re: untick Batch Manegement Indicator on Material Master
    Remove batch management flag and deletion of material documents
    How to remove Batch Management in the Material
    Re: How to remove Batch Management Check in the Material
    Thanks.

  • How to config Define basic materials in material master

    Hi Guru
    IN SPRO Logistic General-Basic Setting -Material Types-Setting of key field-Define Basic material
    Can you guide me how to confige &check with warning error mesage by maintaining test data in material master.

    Hi,
    Path  for Basic Material: SPRO >IMG< Logistics - General > Material Master > Settings for Key Fields > Define Basic Materials
    for maintain " Basic Data 2" view of Material master  Tcode : OMS2
    Select  material type and double click on it. And chose  Basic Data 2 in user departments .
    Hope it helps you
    Thanks.

  • How to Hide fields at Costing2 in Material Master

    Dear Experts,
    One of my requirement is, i want to hide 3 fields in Material Master costing2 tab. The fields are Planned Price1, Planned Price2, Planned Price3.
    Can any one guide me how to hide those fields through SPRO. Otherwise how to approch this requirement?
    Thanx and Regards,
    Mohana

    Hi,
    My requirement is, Customer dont want Planned price1, planned price2 and planned price3 in costing tab2 in Material Master. They required this 3 fields with 7 more fields in one more tab.
    So our Tech consultants are created one more view next to costing tab2. They made the remaining 7 fields into 'Z' table and these 3 fields i need to move from Costing tab2 to costing tab3.
    Kindly help how we need to achive this.
    Mohana

  • How to maintain translation of views in material master

    Hi,
    How we can maintain translation of views in material master
    E.g.
    Basic Data
    Classification
    Purchasing
    MRP1
    MRP2
    Ect…
    We want to maintain translations in different languages.
    Thanks
    Sudhir

    Dear Sudhir,
    Check this link may be help you.
    https://help.sap.com/saphelp_nw70/helpdata/en/ad/06dcf1c4be11d291c70000e8a5f6e6/content.htm
    Regards,
    PK.

  • How to activate the new fields on material master(MM01/MM02/MM03) for existing Materials

    Hi,
    We have a requirement to add  some custom fields as a new tab in additional data option(Descriptions, Unit of measure, etc.) in Basic data of Material master (MM01/MM02/MM03). I have successfully added and these custom fields and they are not part of standard(MARA, MARC) but a custom table and the updates are also done in custom table.
    For new materials, I can see the new tab in additional data screens of basic data view and I could successfully create/change/display using MM01/MM02/MM03. However I cannot see the new tab/fields for existing materials in the system in all 3 tcodes (MM01/MM02/MM03). This is not a main view in material master so that I can extend it by MM01.
    Is there any setting or mass generation program I have top perform so that I can see and maintain these new fields for existing materials. Appreciate any leads or help on this.
    Thanks,
    Harry

    Hello Harry,
    Goto t.code SPRO ---> Display IMG --->  Logistics - General --> Material master --> Configuring the material master --> Create program for customized screens
    Use the above path and create the screen and assign it to the sequence using the below link as reference.
    **************** - Tips - Implementing screen exits for MM01/MM02/MM03
    Regards,
    Thanga

  • How to view previous standard price in material master?

    Dear expert,
    in material master Costing tab 2, i can view the current and future cost estimate price. but i want to view the previous month standard cost estimate price in material master?
    For these, is there any configuration setting needed?
    Thanks for advance

    Hi
    When you re-release a Std Cost - The Future cost would become the CURRENT cost and the Existing curent cost would become the PREVIOUS cost.... You can then see the Previous cost estimate in material master
    br, Ajay M

  • How can you set up ECCN in Material Master if not using Foreign Trade

    After many years, we now have the need to store ECCN codes on our Material Masters.  Although I see on the Foreign Trade view of the Material Master under Legal Control what appears to be a way to set this up, the fields are grayed out and do not seem to have an option to add?  We use Commodity Codes, and we need to just store the ECCN like we do the Commodity Code.  Any ideas?

    Hi,
    Please check this path.
    SPROSales and distribution-Foreign trade/customs---legal control .
    Here yiu can define the ECCNS and Legal requirements and license types and their groupings, asign to depature countries etc to see that they get defaulted at MM01 screen salesgeneral plant data.
    Regards,

  • How to remove sr. no. profile from material master

    Dear all,
    I have maintained serial no. profile-Q001 in plant data/stor.2.
    But now I want to remove serial no. profile from material master.
    but it showing message serial no. already assign to this material.
    Pls suggest
    Thanks
    Shabbir.Kureshi

    Dear Thyagarajan,
    I have got the solution.
    Thanks a lot.
    Thanks & Regards
    Shabbir Kureshi

  • How to un hide Industry type in material Master - mm01

    Dear All Experts
    Kindly help to unhide Industry Type field in Material Master .
    Regards
    Alok

    Edited by: Sridhar Jayavarapu on Aug 4, 2011 5:17 PM

Maybe you are looking for