How Can I know, Material status does not allow purchase??

Hi Experts,
Pls. clarify me that, How Can I know/track the follwoing things? Which tables I hv to see?
I hv a list of materials, some r good , some r bad. So, I hv to trace out the bad materials depending on the criteria, So, pls. let me know Which tbls I hv to look?
1) Material does not exist in plant 1500
2) Material status does not allow purchase
3) Decimal places on the quantity may not be supported by unit of measure
thanq

thanq
MATNR status:
In our system the values for MARC-BESKZ are
E     In-house production
F     External procurement
     No procurement
X     Both procurement types
My requirement: I need to trace the MATNR from matnr_list for Material status does not allow purchase
So, am thinking to write IF condn as,
IF my_itab-matnr <> 'F' or my_itab-matnr <> 'X'.
--> this matnr is Material status does not allow purchase
ENDIF.
Am I correct?
3) Decimal places on the quantity may not be supported by unit of measure
This can be retrieved from table T006
I hv seen but, DO NOT UNDERSTAMD THIS TABLE entries, bcoz, there r values of 0 & 1 for the DECIMAL PLACES filed, partcularly for EA unit - devciaml places value is 0?
pls. clarify,
thanq

Similar Messages

  • How can I use Bluetooth it does not detect others iPhone

    How can I use Bluetooth it does not detect others iPhone

    The bluetooth functionality on the iPhone is limited. It's basically limited to audio devices (headsets, for instance), although certain apps allow greater functionality. Search the app store for "bluetooth share"

  • I can not find out how to copy and paste firefox does not allow it

    Firefox does not allow me to highlight html documents when on line and then copy and paste
    When I left click to highlight it just moves a ghost copy of the whole document away from where you begin.
    I can not find out how to copy and paste firefox does not allow it

    What is your Operating System?
    How do you highlight the HTML document and copy the selected text to the clipboard?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.

  • I brought apple lightining cable from authorised shop , but my i phone is not getting charged with that how can i know its orginal or not there is no printing on that cable and the wire is little harder than which i was using before it came along pho

    I brought apple lightining cable from authorised shop , but my i phone is not getting charged with that how can i know its orginal or not there is no printing on that cable and the wire is little harder than which i was using before it came along with phone.., Please let me know is the cable is orginel or not ..

    the phone says it is not charging even though it actually is. Check and see if that's the case. A very underhanded trick by Apple so they can charge 10 times what the cable is worth. They do not win admirers by that proprietary trickery.

  • BAPI_DOCUMENT_CHECKIN2-Status does not allow you to change certain data

    Hi Gurus,
    I am uploading the DIR attached files for the Documents in PLM. We have a custom program written to upload the attached files. When I tried to upload the file I am getting the BAPI Return error as "Status does not allow you to change certain data". The status of all the documents is "RL"
    File format is
    Doc type  Document No   Rev           File Name
    JPS          0021581PS,     X,       /in/PLM/JAPAN/Files/0021581PS.xls
    Please help me I need to upload the data.
    Thanks,
    Deepthi

    Check the status network for your doc type in config. You may find that the current status may not allow you to make changes. You may need to change the current status to another status before you can make the changes you would like.
    The config settings will tell you the status you may set in order to make your changes, if they are allowed.

  • How to Uninstall Yosemite?  System does not allow Erase the HD, nor does it allow re-install of original O/S Disc (10.6.7).  I want Mavericks or even Lion Back.   Thanks.

    How to Uninstall Yosemite?  System does not allow Erase the HD, nor does it allow re-install of original O/S Disc (10.6.7).  I want Mavericks or even Lion Back.   Thanks.

    Start with reinstalling Snow Leopard:
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. After you finish Setup Assistant will complete the installation after which
             you will be running a fresh install of OS X.  You can now begin the update process
             by opening Software Update and installing all recommended updates to bring your
             installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1 Access the App Store to download Mountain Lion or Yosemite. Mavericks is no longer available since the release of Yosemite. If you purchased Mountain Lion from the App Store, then you can redownload it via your Purchases page in App Store. If not, then you will need to purchase it from Apple;
    Purchase a redemption code at the Online Apple Store: OS X Mountain Lion. Mountain Lion is $19.99 plus tax. Use the code to redeem a download of Mountain Lion from the App Store. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.

  • HOW CAN WE KNOW THE STATUS OF CHECK BOX?

    Hi All,
    How can i know status(ie if user is selected or not) of an checkbox.
    is there any method.?
    Regards,
    Ravi

    Hi Ravi,
    First bind the Checked Attribute of type WDY_BOOLEAN of Checkbox and try below code:
      DATA lo_nd_main_values TYPE REF TO if_wd_context_node.
      DATA lo_el_main_values TYPE REF TO if_wd_context_element.
      DATA ls_main_values TYPE wd_this->element_main_values.
      DATA lv_checked LIKE ls_main_values-checked.
      navigate from <CONTEXT> to <MAIN_VALUES> via lead selection
      lo_nd_main_values = wd_context->get_child_node( name = wd_this->wdctx_main_values ).
      lo_el_main_values = lo_nd_main_values->get_element(  ).
      get single attribute
      lo_el_main_values->get_attribute(
        EXPORTING
          name =  `CHECKED`
        IMPORTING
          value = lv_checked ).
      IF lv_checked = 'X'.
    >>>Do some Code
    ENDIF.
    Regards,
    Ravin

  • How can I know the status of a Row?

    Hi,
    a "Row" (oracle.jbo.Row) has a method "setNewRowState" to change is status to either STATUS_NEW or STATUS_INITIALIZED.
    But I can't find out how to check the current status of a Row. Is it possible?
    The problem is that I have created a page with some field associated to a VO based only on SQL (not on one EO).
    On submit I should check if the user has changed some values in order to decide what I have to do. How can do that?
    Thaks.
    Bye
    Raffy

    There is no method in VO to figure this out, in most cases where the VO is based on a EO, the EO state (getEntityState) can let you know about VO changes, but since your VO is not based on EO, this is a problem.
    I can think of two workarounds:
    1. use isDirty() method on OADBTransactionImpl to find out if some VO has changed, but this would return true if there were multiple VOs and even if some other VO which you dont want to refer is changed.
    So this solution holds good if the AM has only your VO which only can make the transaction dirty.
    2. Another solution is, have a original copy of the VO prior to submit and on submit you can compare the copy with the current VO attributes to figure out if something changed.
    Thanks
    Tapash

  • How can I know my Mac is not "hacked" by malware

    Opening a Safari window recently I got a message from an unknown source that somebodu wanted to become my sexbuddy. I was supposed to OK it which of course I didn't . Meanwhile all my functions in Safari were frozen. The only thing that worked was a force quit from the Apple menu. The following days the same happened every time I opened Safari. I even reinstalled Maverick hoping to get rid of the thing but that didn't seem to help. Finally it disappeared, I guess when I succeeded in stopping Safari to open with the most recent window.
    However I am not absolutely certain my Mac is clean and not hacked by somme vilain through some malware. How can I be sure?
    Tha,ks for the help!

    Anything coming via Safari is not malware but phishing attempts.
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
              Mac OS X Snow Leopard and malware detection
              OS X Lion- Protect your Mac from malware
              OS X Mountain Lion- Protect your Mac from malware
              About file quarantine in OS X
    If you require anti-virus protection I recommend using VirusBarrier Express 1.1.6 or Dr.Web Light both from the App Store. They're both free, and since they're from the App Store, they won't destabilize the system. (Thank you to Thomas Reed for these recommendations.)

  • How can i set the signature to not allow to delete?

    I tried to set the widget annot flag's 8th bit to 1.
    This bit is used to lock the annot,but it has no effect. I can delete the signature either.
    If i want to user can not delete my signature ,how can i accomplish this?
    Thanks!

    Also the NoZoom does not work.
    If i set NoZoom flag,the signature appearance can be zoomed still,but the signature position and dimension is not change,so when the appearance is zoomed, may be only a part of appearance can be show.

  • Document fields are changable though status does not allow

    Hi All,
    our HR dms consists of three status for any doc types :
    (1) in-preparation IA  (2) to-approve   (3) approved FR
    > in-preparation : is changeable only via the creator profie "one who creates/uploads the documents"
    > to-approve : status type is set to S "locked status" no changes can be done except status change, and this is assigned to the profile of the approvee "one who's approving the documents"
    the status to-approve is custome created
    when this approvee person opens any to-approve document he's unable to do any changes except status change either to (1) or (3) "all other fields are grayed out" However, i have noticed that if he change status to (1) then prior saving the document he clicks the enter key then all the feilds are returned back to updatable ! i know status (1) allows update, but this user has no change authority over status (1) and this has been tested separately and proved that can't change status 1 documents, why only at this situation system is allowing this change.

    hi,
    Daher,
    Please crate networl like this,,
    Doc type -DOC STDescAbbr--
    St Type
    TES--     AA     Work Request     WR--
         I
    TES--     FR     Released     RE--
         S
    TES--     IA     In Work     IW--
         C
    Previous 1, 2, 3,
    1.--     Work request-- AA-----[WR]--     --FR -
    <i>
    2.--     InWork  IA -[IW]---AA,  FR--
    [C]
    3.--     Released -FR -[RE]--     IA,   AA--
    [S]
    benakaraja ES
    Edited by: benaka rajes on Jun 11, 2009 5:38 PM

  • How can i do so itunes does not play some songs?

    ...there used to be a button for that, but now i can´t find it, any help?

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes forums.
    Regards.

  • Firefox seems to keep my microsoft security essentials from updating. how can i know for sure? not a problen until lately.

    what more can i say. when automatic updates occur, none of the microsoft security essentials are successful; but failed.
    help please.

    Firefox are not the culprit for this kinda issue, contact microsoft support for more help

  • I have made and submitted iphone webapp, but don't know what is its status. How can I know its status? And what should be the next step

    I have submitted the webapp which is shown here : https://developer.apple.com/submission/iphone/manage_subs.php
    But now I don't know the next step. Please somebody let me know.
    Thanks.

    Wait for the blurb and link to show up on Apple's site. Be sure it is ready on yours.

  • How can we know a particular maintenance plan is stopped

    Hi All,
    Suppose a particular maintenace plan BP-P-0108 which is monthly recurring plan is created in 01/01/2008 and scheduled from 01/01/2008. Subsequesnly, the maintenace plan was stopped in 01/01/2011.How can I know this maintenance plan is stoppped from scheduling?
    Thanks
    ebenalfa

    HI Pete,
    Thanks for your response.
    I am in the process of migrating maintenance plans which has been created already in the past 10 to 12 years. During this period, many maintenance plans were cretaed and scheduled. Some of the maintenance plans might have become obsolete and need not be migrated.  The maintenance plans may not have scheduled in the near past. How can I know that these are not scheduled in the near past?
    If the user sets deletion flag or deactivate it. i may not have the scheduling happen.
    Apart from these two statuses of maintenance plan, is there any way I can identify a stopped maintenance paln schedlue ?
    If so, Which SAP table will give me the required information
    Thanks, ebenalfa

Maybe you are looking for

  • GIF decoding

    This works on WinXP but not Linux. Why? It takes the first frame of an animated gif and writes a thumbnail.             GifDecoder d = new GifDecoder();                 try {                 fis = new FileInputStream(file);                          

  • HT1338 mail wont work since update

    My mac did an update for iphoto and since then my mail wont open it says that this version of mail wont work with this system and to use the mail icon located in applications tried that and it still wont work HELP!!!!

  • Firefox Embedded Flash swf not shown in asynchronous desktop

    Hi all, in a jsp I embed a binary property of a content node that includes a flash .swf file. All that in an asynchronous desktop, using Firefox. I use the follwing code: "<embed scale="exactfit" quality="high" menu="false" width="600" height="400" h

  • Error creating view with tables of other user

    I am creating of view containing two tables of another user. I am a dba-user. The statement looks like this: CREATE VIEW TEST (SELECT ... FROM DWH.TABLE_A A, DWH.TABLE_B B WHERE A.ID = B.ID) I get an error-message (ORA-00942: Table or view not found)

  • Kernel compile problem

    in arch 0.7, when i compile redhat hat kernel 2.4.21-27.0.1.EL, gcc 3.4.3 complains: gcc -D__KERNEL__ -I/data/linux-2.4.21-27.0.1.EL/include -Wall -Wstrict-prototypes -Wno-trigraphs -O3 -fno-strict-aliasing -fno-common  -Wno-unused -funroll-loops -fo