Article master Purchasing view not showing up

We are using SAP retail and just created some articles using MM41. However, when I go to MM42 the purchasing view is not showing up. What could be the reason? Need help
Raj

HI,
May be while creating a Material initially they have not selected purchasing view when they created the material.
If you want the purchasing view then we have to extend the material to the purchasing views which is done b MM50. select purchasing view and then maintain the relevant data for the material.
Thanks & Regards,
Kiran

Similar Messages

  • Material Group field is Missing in Material Master - Purchasing view ?

    Hai Experts,
                      I want to configure to bring back Material Group field is Missing in Material Master - Purchasing view.  It is mandatory to Create & save a master. I cant save a master in sandbox. Need Help..

    I make all field as Optional & Create master successfully.. Thanks.. I even verfied in J1ID Master for assesable value &  Chapter ID Combination.. But in Cenvat Determination Field,  How i can set Default Indicator for Modvat "tick" & how can i set Excise Intimation Date also.
    I checked Material Master in mm03 [ Display].
    I clicked More & Pre Vals. option in  Foreign Trade Import.
    For More, It shows this error.
    Record 21 MORE  does not exist in table T133E
    Message no. M3748
    For Pre vals., It shows this error.
    Record 21 J1PR  does not exist in table T133E
    Message no. M3748
    Kindly guide me..
    Thanks & Regards
    Swetha

  • Creation of Article with purchasing view.

    Hi,
    I am using BAPI_MATERIAL_MAINTAINDATA_RT  to create Article. I am able to create article using Basic view, Log. DC view etc.
    There is no purchasing view in HEADDATA. Also  fields like Purchase organization, net price etc are not present in any structure.How to create an Article  with purchasing view using this BAPI.
    Please help me in this regard.
    Regards,
    Kiran.

    Hi,
    I am using BAPI_MATERIAL_MAINTAINDATA_RT  to create Article. I am able to create article using Basic view, Log. DC view etc.
    There is no purchasing view in HEADDATA. Also  fields like Purchase organization, net price etc are not present in any structure.How to create an Article  with purchasing view using this BAPI.
    Please help me in this regard.
    Regards,
    Kiran.

  • BAPI_MATERIAL_MAINTAINDATA_RT ---Article with purchasing view

    Hi,
    I am using BAPI_MATERIAL_MAINTAINDATA_RT  to create Article. I am able to create article using Basic view, Log. DC view etc.
    There is no purchasing view in HEADDATA. Also  fields like Purchase organization, net price etc are not present in any structure.How to create an Article  with purchasing view using this BAPI.
    Please help me in this regard.
    Regards,
    Kiran.

    Hi,
    I had the same problem with this bapi. To activate the purchasing view
    I used WRF_MATERIAL_MAINTAINDATA_RT to create the materials.
    You must put attention how works the mm41 and fill the segments in this
    that you need.
    *& Report  ZTEST_BAPI_EXTENDEDUPDATE
    REPORT  ztest_bapi_extendedupdate.
    DATA: headdata TYPE bapie1mathead.
    DATA: return TYPE STANDARD TABLE OF bapireturn1.
    DATA: lwareturn TYPE bapireturn1.
    DATA: organizational_level TYPE wrfscreenvalues.
    DATA: clientdata  TYPE STANDARD TABLE OF bapie1marart WITH HEADER LINE.
    DATA: clientdatax TYPE STANDARD TABLE OF bapie1marartx WITH HEADER LINE.
    DATA: addnlclientdata TYPE STANDARD TABLE OF bapie1maw1rt  WITH HEADER LINE.
    DATA: addnlclientdatax  TYPE STANDARD TABLE OF bapie1maw1rtx WITH HEADER LINE.
    DATA: unitsofmeasure  TYPE STANDARD TABLE OF bapie1marmrt  WITH HEADER LINE.
    DATA: unitsofmeasurex TYPE STANDARD TABLE OF bapie1marmrtx WITH HEADER LINE.
    DATA: salesdata  TYPE STANDARD TABLE OF bapie1mvkert WITH HEADER LINE.
    DATA: salesdatax  TYPE STANDARD TABLE OF bapie1mvkertx WITH HEADER LINE.
    DATA: inforecordgeneral  TYPE STANDARD TABLE OF bapieina WITH HEADER LINE.
    DATA: inforecordpurchorg  TYPE STANDARD TABLE OF wrfbapieine WITH HEADER LINE.
    headdata-material = '000000000000400121'.
    headdata-matl_type = 'ZMES'.
    headdata-matl_group = '101210501'.
    headdata-matl_cat = '00'.
    headdata-ref_matl = '000000000000448590'.
    headdata-basic_view = 'X'.
    headdata-list_view  = 'X'.
    headdata-sales_view = 'X'.
    headdata-logdc_view = 'X'.
    headdata-pos_view = 'X'.
    organizational_level-material = headdata-material.
    organizational_level-matl_type = headdata-matl_type.
    organizational_level-matl_group = headdata-matl_group.
    organizational_level-matl_cat = headdata-matl_cat.
    organizational_level-ref_matl = headdata-ref_matl.
    organizational_level-purch_org = 'SPC1'.
    organizational_level-vendor = '20400353'.
    organizational_level-info_type = '0'.
    *organizational_level-plant = ''.
    *  Llena clientdata
    clientdata-material  = headdata-material.
    clientdata-base_uom  = 'ST'.
    APPEND clientdata.
    clientdatax-material  = headdata-material.
    clientdatax-base_uom  = 'X'.
    APPEND clientdatax.
    addnlclientdata-material    = headdata-material.
    addnlclientdata-sales_unit  = ''.
    addnlclientdata-li_proc_st  = 'B1'.
    addnlclientdata-li_proc_dc  = 'B1'.
    addnlclientdata-list_st_fr  = sy-datum.
    addnlclientdata-list_st_to  = '99991231'.
    addnlclientdata-list_dc_fr  = sy-datum.
    addnlclientdata-list_dc_to  = '99991231'.
    addnlclientdata-sell_st_fr  = sy-datum.
    addnlclientdata-sell_st_to  = '99991231'.
    addnlclientdata-sell_dc_fr  = sy-datum.
    addnlclientdata-sell_dc_to  = '99991231'.
    APPEND addnlclientdata.
    addnlclientdatax-material    = headdata-material.
    addnlclientdatax-sales_unit  = 'X'.
    addnlclientdatax-li_proc_st  = 'X'.
    addnlclientdatax-li_proc_dc  = 'X'.
    addnlclientdatax-list_st_fr  = 'X'.
    addnlclientdatax-list_st_to  = 'X'.
    addnlclientdatax-list_dc_fr  = 'X'.
    addnlclientdatax-list_dc_to  = 'X'.
    addnlclientdatax-sell_st_fr  = 'X'.
    addnlclientdatax-sell_st_to  = 'X'.
    addnlclientdatax-sell_dc_fr  = 'X'.
    addnlclientdatax-sell_dc_to  = 'X'.
    APPEND addnlclientdatax.
    unitsofmeasure-material   = headdata-material.
    unitsofmeasure-alt_unit   = 'ST'.
    unitsofmeasure-ean_upc    = '7702111342224'.
    APPEND unitsofmeasure.
    unitsofmeasurex-material   = headdata-material.
    unitsofmeasurex-alt_unit   = 'X'.
    unitsofmeasurex-ean_upc    = 'X'.
    APPEND unitsofmeasurex.
    "inforecordgeneral-info_rec ='5300002556'.
    inforecordgeneral-material = headdata-material.
    inforecordgeneral-mat_grp = headdata-matl_group.
    inforecordgeneral-vendor = organizational_level-vendor.
    inforecordgeneral-po_unit = 'ST'.
    *inforecordgeneral-base_uom = clientdata-base_uom.
    APPEND inforecordgeneral.
    inforecordpurchorg-material = headdata-material.
    inforecordpurchorg-vendor = organizational_level-vendor.
    "inforecordpurchorg-info_rec = '5300002556'.
    inforecordpurchorg-purch_org = organizational_level-purch_org.
    inforecordpurchorg-info_type = '0'.
    inforecordpurchorg-pur_group = 'GC1'.
    inforecordpurchorg-currency = 'MXN'.
    APPEND inforecordpurchorg.
    BREAK-POINT.
    CALL FUNCTION 'WRF_MATERIAL_MAINTAINDATA_RT'
      EXPORTING
        headdata             = headdata
        organizational_level = organizational_level
        badi_callmode        = '99'
      TABLES
        return               = return[]
        clientdata           = clientdata[]
        clientdatax          = clientdatax[]
        addnlclientdata      = addnlclientdata[]
        addnlclientdatax     = addnlclientdatax[]
        unitsofmeasure       = unitsofmeasure[]
        unitsofmeasurex      = unitsofmeasurex[]
    *    plantdata             = plantdata[]
    *    plantdatax            = plantdatax[]
    *    salesdata             = salesdata[]
    *    salesdatax            = salesdatax[]
        inforecord_general    = inforecordgeneral
        inforecord_purchorg   = inforecordpurchorg
    BREAK-POINT.
    READ TABLE return INTO lwareturn WITH KEY type = 'E'.
    IF sy-subrc NE 0.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = 'X'.
    ENDIF.

  • An app that I purchased will not show up on my phone

    An app that I purchased will not show up on my phone.  I have tried deleting the app and reinstalling it with no success.  The app shows up in itunes but cant and it shows i transfered it but will not show up on the phone.  Please HELP!!!!!

    If it's an iPad only app that is whats would happen
    Otherwise it sounds like the iPhone and the iTunes Appleid are not the same

  • I've just enabled match and now my new purchases do not show up on my i tunes account. i can only play them buy going in to purchased playlist.

    I've just enabled match and now my new purchases do not show up on my account. I can only access them buy going into purchase playlist?

    SADLY  not as i downloaded an upgrad to my original PAGES/
    i have in the meantim had to open www.icloud. then from there import the file that i am working on and then check on ipad if it uploaded/ yes it did.
    but what a waste of time as it doesn not save any changes done automatically back in the cloud....
    i am now downloading the new LION and hope that it will fix the problem
    i cant find any other way. I was lead to believe that you wrote, it saved automatically, on to the cloud, you then opened anohter device in anotother country even, and the new file was there, waiting, in its latest version.......
    and the same magic was supposed to happen in reverse.
    It doesn't/
    if i have to open a browser, go to www.icloud....why on earth did they not just leave us an icon to drop it in in that case?
    I hope the new lion will help resolve the isssue/
    any other ideas> keep em coming...thank you so much.

  • I purchased a movie and a book and my purchases do not show up on my iPad

    I purchased a movie and a book and my purchases do not show up on my iPad

    Welcome to the Apple Community.
    Audiobooks are not currently part of the content that can be re-downloaded. You should sync your audiobooks to other devices via iTunes on your computer. If your audiobook didn't download correctly or has other problems, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.
    To copy the audiobooks from one computer to another, use homesharing, put them on a memory stick or use your Dropbox if your computers are networked.

  • My itunes tv and movie purchases are not showing in my video app

    my itunes tv and movie purchases are not showing in my video app, iphone 5s, and this has happened since ios 8 was installed

    Were they previously downloaded/synced to your iPhone, and if they were have you got them in the TV Shows and Movies parts of your computer's iTunes library. When you update via a computer the device is backed up, the iOS version is updated, and your content is then restored to the device - but none of your iTunes downloads are included in the actual backup (just your documents, notes, calendars, app settings etc), instead it looks to get the apps, music, films, TV shows from your iTunes library.
    If the 'show all' setting isn't showing them then what country are you are in, you are logged in with the same account that you bought them with, you haven't changed countries since buying them and they aren't hidden : iTunes Store: Hiding and unhiding purchases ?

  • New purchases are not showing up in smart playlists

    New purchases are not showing up in smart playlists. About a week ago the smart playlists stop add newly purchase music.The smart playlists  will add items that are added the the library. Any ideas?

    Everythig is turned on as well.

  • HT1351 4 purchased songs not showing in my 'purchased' library

    4 purchased songs not showing in my 'purchased' library

    Try a Reset [Hold the Home and Sleep/Wake buttons down together for 10 seconds or so (until the Apple logo appears) and then release].

  • Why do views not show up in HTML DB?

    All,
    When I create a new view with SQL/Plus why doesn't it show up in HTML DB? Views that were created previously (before install of HTML DB) are visable.
    Thanks

    Just FYI, I had a problem with views not showing up when using the wizards. Reported the problem and was told it was a bug. Workaround was to create my pages from scratch and explicitly reference the tables instead of the views.
    Although HTML DB could handle some views, views that were based upon other views or where there were several layers of views seem to give HTML DB a problem.

  • TS1702 Why is the icon for street view not showing up on the left side of the location on the maps app?

    Why is the icon for street view not showing up on the left side of the location on the maps app?

    Because the included Maps app no longer gets the maps data from Google, so no more street view.
    You can get a free Google Maps app from the iTunes App Store.

  • My purchase does not show on my creative cloud account but i am being billed for it

    my purchase does not show on my creative cloud account but i am being billed for it

    Some general information for a Cloud subscription
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    or
    This is an open forum, not Adobe support... you need Adobe staff support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • A movie i purchased does not show up in  the download after it suddenly stopped while downloading over half way through

    a movie i purchased does not show up in  the download after it suddenly stopped while downloading over half way through.. help!

    I totally agree, I am not going to discredit your comment as everyone is entitled to their opinion as I am BUT, I will not bad mouth other members, especially since  may have not have written my initial statement in a logical manner so Ill try and answer them in order to your response.
    1. I DO LIKE iTunes in general and on the whole  BUT I dislike the new update, iTunes 11, it has completely buggered everything up.
    2. Prior to the update, everything worked brilliantly, including Apple TV. It was user friendly and was easy to use. The new update is counter-intuative and is hard to find, fix anything and as I have had to find out at my cost, reset my Apple TV and start downloading all over again. So let me reaffirm, it is iTunes11 I find hard to fathom, not the old iTunes.
    3. No I am not a developer but I have been using PC's for over 20 years so I do know how one works.
    4. Good Question about who would help me, again, it is someones opinion against someone elses. One day, I may write something that generally people agree with, another they may not, depends on the subject.
    5. " I do not love Apple" ?yet I have an iPhone 4s, iPad and Apple TV, find that an illogical comment!
    6. I have made a General Search on the forums on the subject and the general consensus is that the new update is one update to far.
    7. Oh, I am not a genius otherwise I would have solved the issue in the first place!
    Just to re-iterate, I am not bad mouthing Apple in general, all I am saying is that iTunes 11 is one update to far and I am not the only one saying it.... some have gone a lot further than I have, again, their opinion and who am I to argue with them as I have an opnion as you do and I will most deffinatly not bad mouth a member because I disagree with them for the above reason, debate it, yes, not belittle them.
    Hope these have cleared up my initial statement?

  • Why does Group created on Master console does not show any device count mapped on the managed Amp?

    Q: Why does Group created on Master console does not show any device count mapped on the managed Amp?
    A: When a group is created on master console it will be pushed to all the managed amp which is added with Manage group configuration enabled. The Group pushed to the managed amp will be created as Global group and you can create subscriber groups for the global group to which you will add the device into since we cannot add any devices into global group directly.
    Hence there is no device added to the global group, on the master console it does not show any device count for the groups that are created on master console. 

    Laura Quitugua wrote:
    Hi,
    I have syced my outlook email with my iphone 4s and ipad.
    Note that only the email account info (username, login, server)  is sync'd.
    The actual emails are not sync'd.
    Opening an email on one device does nothing on teh other devices.

Maybe you are looking for