How to activate a material once it is created using MM01 in ECC 6.0

Hi,
How to activate a material once it is created using MM01 in ECC 6.0.
i am encoutering a error " the material test1 does not exist or is not activated " when i want to display it in MM03.

hi,
the material might not be created.
check updation might be failed.
before saving check for incomleteness.
try to create again and check.

Similar Messages

  • How to activate FACE UNLOCK feature in Xperia S using ICS??

    How to activate FACE UNLOCK feature in Xperia S using ICS??
    i am from INDIA

    You write about it:
    http://talk.sonymobile.com/message/182589

  • How can i reuse same variables that i create using c:set var="index" /

    hi all,
    please some one helpme!!!!!!
    how can i reuse same variable that i create using
    <c:set var="index" value="${0}"/>
    cause later in the program i use index to do some condition and based on that i increment ...
    so for example if i say...
    <c:if test="${index==0}">
    <c:set var="index" value="${index+1}"/>
    </c:if>
    will it be like
    if(index==0)
    index++;
    can i do like i did be4. if not what do i need to do to reuse. cause i use the variable atleast 5 time and its keep changing on diff condition level.

    Have you tried it?
    It should work, provided you are on the same page.
    The c:set tag creates the variable in pageScope by default.
    If you forward to another JSP you need to set the scope to be "request" so that it is still available.

  • How do I return material agaisnt a scheduling agreement using 161 movement

    Hi!
    How can I return material against an SA by 161 movement ?
    Thanks and regards,
    Suranjana

    Hi
    Is there an "Returns Item" check box in SA?, i guess, you'll have to create a separate PO with "Returns Item" checkbox inorder to receive goods with movement type 161.
    Thanks
    E.Avudaiappan

  • How to activate a specific profile of the Firefox using java coding?

    Hi Folks,
    I have some query regarding activating the Profiles of the Firefox. Whenever i open the Firefox, the profile manager will be prompting for the profile to be activated. I want to perform such similar operation through java coding. Let us assume, I have three profiles named default, office and personal. I need to invoke the Firefox with a specific profile, office. How to proceed further? Your suggestion will be highly appreciated...
    Thanks in Advance,
    RealStuff, Mike

    String s = "Less than 20";
    while(s.length() < 20) {
         s += " ";
    System.out.println(s + " " + s.length());Mark

  • How to rename a file once it is created with util_file utility.

    Hi,
    A flat file is generated with util_file utility, now we want to rename the file using utilities available with Oracle. Can any body give any solution..?, Any package is available...?
    Regards,
    G. Rajakumar.

    Hi Raja
    If you are using Oracle 8i or later version you can easily do it writing a Java stored procedure and calling it,
    in your PL/SQL wrapper function.
    I recently had a similar problem and did it successfully.
    If you need the code along with the wrapper function, I can send it to you on your e-mail.
    Qurashi

  • How to get the vendor number that was created using xk01..?

    Suppose i am creating a vendor with all the information by using a bdc program.
    In the same program if i want to go to the XK02 of that particular vendor that was created recently....how it possible..?
    Means how to get that particular vendor number that was created recently...?

    Hi...
    You Can Get the Vendor number after Calling the Transaction 'XK01' as below.
    <b>Declare a table for Collecting messages :</b>
    DATA: T_MSG TYPE TABLE OF BDCMSGCOLL,
              WA_MSG TYPE  BDCMSGCOLL.
    <b>Then Call Transaction Statment:</b>
    CALL TRANSACTION 'XK01'
               USING T_BDCDATA
               MODE 'N'
               MESSAGES INTO t_msg.
    if sy-subrc = 0.
      READ TABLE T_MSG INTO WA_MSG WITH MSGTYP = 'S'.
                                                                    MSGID = 'F2'
                                                                    MSGNR =  '175'.
    <b>Note: Bcoz the XK01 will issue this message</b>
      if sy-subrc = 0.
      write: / WA_MSG-MSGV1.  "This will contrain Vendor Number
    endif.
    endif.
    And you can also Try the Other method i.e. after the Call transaction statement
    <b> GET PARAMETER ID 'LIF' field V_LIFNR.
      WRITE:/ V_LIFNR.</b>
    Reward if Helpful.

  • How can I cancel an order, that was created using Guest Checkout? Or how can I associate in with my account?

    Wanted to buy ipod nano, but got a problems with payment information. And now can't cancel an order.

    Where did you try and order it?  From Apple's website? Perhaps this page can help.
    Viewing & Changing Orders
    B-rock

  • How to Delete of an order ATPCAT BF created by CIF from ECC

    Hello,
    We created a transfert order in ECC transfered to APO through CIF ang got in APO an order of ATP category BF.  The order no more exist in ECC but is still existing in APO.
    We want to clean it in APO. The standard transactionj /SAPAPO/RLCDELETE does not work with this ATPcategory. Could some body help to make the deletion?
    Kind regards,
    Aurélien Le Goff

    Bonjour Daniel,
    Merci pour ta réponse.
    Nous avons réussi avec la transaction /SAPAPO/CCR.
    Aurélien, & Christine Macaudière
    Edited by: Gilles JACOB on Aug 10, 2011 5:04 PM

  • How to include Search Help which has been created using SE11

    Hi all,
    I have created the custom search help in SE11. What is the way to include it in my code? Thanks in advance.

    Hi Mil,
    There are different ways of using the search help created by SE11 depending on the kind of application you are using.
    1. Search help can be attached to a <i><b>DATA ELEMENT</b></i> under the tab <i><b>FURTHER CHARACTERISTICS</b></i>.
    Now wherever this data element will be used, automatically the search help will be available on the output screen. e.g. in selection screen using parameters statement etc.
    <i>PARAMETERS: P_VAL1 TYPE Z_DATAELE.</i>
    2. Search help can be also attached to <i> database table fields</i> directly in the tab <i>Entry help/check</i>. Now wherever this database table field is used e.g. in SELECT-OPTIONS statment, the search help will be automatically available on output selection screen.
    3. Also, search helps can be directly used in the programs using function modules and event.
    <i><b>PROCESS ON VALUE-REQUEST.
      FIELD <f> MODULE <mod>.</b></i>
    Here in the module, you can use following function module for fetching the search help on the screen.
    <i><b>F4IF_FIELD_VALUE_REQUEST</b></i>
    4. Search help can be direclty attached to the selection screen statements like SELECT-OPTIONS using MATCHCODE object extension
    <i><b>SELECT-OPTIONS: LP_STATS  FOR TJ30-ESTAT MATCHCODE OBJECT ZH_TJ30 NO-EXTENSION NO INTERVALS.</b></i>
    Hope this sort out your issue.
    PS If the answer solves your query, plz close the thread by rewarding each reply.
    Regards
    Message was edited by:
            Sapna Modi

  • How to block a material that not to creation of service notification thru-IW51

    Hi All,
    I have tried in all over areas ( MM02 level and MM06 level ) to block a material that not to create service notification with that material but didn't get a solution.If any one knows solution for this kindly provide me.
    "How to block a material that not to create a service notifcation thru IW51?"
    Best Regards,
    Narendra Konnipati

    Narendra,
    1. I do not see any possibility without using this exit. It is a very simple and effective thing for your ABAPer and you too.
    2. In case of many Materials-Notification type combinations, you can maintain similar code by joining several elseif s.
    3. Alternatively, you can maintain a Z Table as under:
    QMART
    MATNR
    S3
    10000000099999
    S3
    10000000099988
    S1
    10000000088988
    S2
    12000000088988
    Means, for every Notification type there will be one or more prohibited materials. The coding will not be difficult, but will have around 15/20 lines.Finally, if you have to get your issue resolved, I feel this is the way and also easy way through your ABAPer.
    Tell me in case of any further opinions.
    Best of Luck
    KJogeswaraRao

  • How to activate split valuation for existing material having stock open PO,

    Hello,          
    How to activate split valuation for existing material in plant having stock and open PR,PO and Production order.
    Regards

    Hi
    It is not possible to activate in such case, u should not have any stock.
    With regards
    Pavan

  • How to activate material ledger field under accounting data

    Hi
    can any body give me solution for following
    i am creating a MIGO for capital Purchase order for (Project capital material-PROJ) with WBS ELEMENT.
    While clicking check button while doing migo error is showing
    "Material xxxx for plant xxxx material ledger not activated"
    when i am trying to change mode under accounting view
    ML ACTIVE FIELD is grey. How to activate this field.
    Please give me solution.
    Thanks
    Nirmal

    tx. OMX1

  • How to activate field in Material Master

    Hi,
    Can anybody tell me how to activate BRAND_ID field in the material master?
    Thanks in advance.
    Samir Bhatt

    To activate this field i.e you want this feild to appear in your material master screen.You have to follow :
    Logistics - General>Material Master>Field Selection>A
    ssign Fields to Field Selection Groups
    Here you will find that your Feild MARA-BRAND_ID has selection Group 200
    Maintain Field Selection for Data Screens  in this Step check fo r the Selection group :200   You will get the feild  Brand there  in the selection group 200.
    you can make setting of the feild accordingly as hide /display /........etc

  • How to activate price tab in material component

    Dear All,
    Actually i need to assign price for my issuing material, but i am not able get the price tab in material component its only showing general data here i able to assign the quantity. I need help for how to activate the price tab.
    Regards,
    S.Suresh.

    Hi,
    if you take non stock material component ( item category as "N") then system allows you to change the price.
    for this click on material component then, click on Purch.data tab...here you can chnage the price.
    But this is not happening with stock material ( item category as "L").According to me this will not happen with stock material.
    sandeep

Maybe you are looking for

  • Admin Console browser problem

    Hi, This is a peculiar problem that I am facing. I am working with iPS3.0SP3 on solaris8. My installation went fine. But when I try to access Admin console(thru Netscape 4.7 or 4.75), I have the login screen displayed. But, after I provide User and P

  • How do I move my photo library to a different disk partition?

    How do I move my iPhoto library to a different disk partition?

  • Best way to set up slideshow on main page with auto start & fading??

    I would like to build a main page that has 3/4 of the page a photo slideshow. I want the photos to fade in and out and for it to auto start. I saw a website like this but it kept my computer humming along the whole time. http://www.paragoncustom.com/

  • IPhone 4s not alerting for new texts

    In the last week my phone has stopped alerting me for new texts. I have it turned on in notifications and have not changed ANY settings. I cleaned out my texts and memory to see if that would help but it did not. Any advice?

  • Aperture 3 don't allow same reference file mgmt?

    With Aperture 2, I've kept all masters in Nikon Transfer folders. When reviewing and editing photos, I used Aperture to delete all unnecessary photos - it allowed me to choose if I want to delete version or both version and master (where ever that mi