Func MD_MRP_LIST_API = MD06 list, but is there a function for MD04 ?

Dear all SAP gurus.
Func MD_MRP_LIST_API = transaction MD06
...but is there a function for MD04 ?

Hi,
Try FM MD_STOCK_REQUIREMENTS_LIST_API
Cheers,
Surinder

Similar Messages

  • I'm sure your'e going to tell me I just need a new phone but maybe there is hope for my iphone 4.  It will not charge past 66% (it's not the charger), it turns off when unplugged, and it will not even let me turn my wi fi to the on possition.  Help!

    'm sure your'e going to tell me I just need a new phone but maybe there is hope for my iphone 4.  It will not charge past 66% (it's not the charger), it turns off when unplugged, and it will not even let me turn my wi fi to the on possition.  Help!

    Hi there 8472kck!
    I have some information for you that can help you troubleshoot this issue a little further. That information can be found right here:
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 15 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    and that information comes from this article:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

  • Is there any functionality for AVERAGE in ALV, like do_sum, subtot?

    Hi Experts,
    In my_alv report, am doing sub/totals for prices, by using do_sum, subtot functions.........fine. But, I need to do/display the AVERAGE value for Discount % column?
    Is there any functionality for AVERAGE in ALV, like do_sum, subtot?
    thanq

    hi
    check these links out
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    regards
    vijay
    reward points if helpful

  • Album art not showing in album list but is there

    In the list of albums, some of the album art is not showing, but when I click to view the song list, it is there. See screenshot which explains it much  better.
    Any ideas on how to fix. (Reimporting album art does not work)

    Gonna give this a bit of a bump - sorry.

  • I cannot download photos from my digital camera to Iphoto (version '09). I have been able to successfully do this up to 4 days ago but not yesterday. My camera/device is recognized in the Source List but photos won't download for me to import to library.

    I cannot download photos from my digital camera (via a cable) to Iphoto (version '09). I have been able to do this successfully up til 4 days ago but not yesterday (Dec. 25th). My camera/device is recognized in the Source List, but when it tries to download the photos, all I get are the words "Loading Photos" in the area where the thumbnail pictures usually display. The little "gear" symbol next to the words but it just goes round and round. Nothing ever downloads, and instead of showing me how many pictures there are to import it just says "No photos". So therefore I cannot import the photos to my library since they won't even download.
    I was getting an error message a few days ago that my Iphoto library was getting full, so I emptied my trash in both Iphoto and on my computer. I had this same problem back in October and emptying the trash and getting rid of some photos did help (can I really be using that much storage space for the pictures?). But it didn't help this time.
    Any suggestions as to what to do to solve the problem? I would try taking the SD card out and inserting that into the slot on the computer to see if I could load pictures that way; but the last time I did that, they wouldn't load. Not sure if I lost pics from the disc or not.
    Thank you,
    Novice50

    1. You did not get an error message telling you that your iPhoto library was getting full. You got a message telling you that your HD was getting full, right?
    OS X needs about 10 gigs of hard drive space for normal OS operations - things like virtual memory, temporary files and so on.
    Without this space your Mac will slow down as the OS hunts for space on the disk, files will be fragmented, also slowing things down, apps will crash and the risk of data corruption - that is damage to your files, photos, music - increases exponentially.
    Your first priority is to make more space on that HD. Nothing else can be done until you do.
    Purchase an external HD and move your Photos and Music to it. Both iPhoto and iTunes can run perfectly well with the Library on an external disk.
    Your Library has been damaged from being run on an overfull disk.
    How much free space on it now?

  • I defaulted input help field (pick list) but SAP CRM still asking for one

    We are running SAP CRM 7.0.
    Some fields as you know are dialog / pick list fields.
    What I mean by this is they are input help fields where you
    can click a little square (in sap crm 7.0) to the right of the text box
    and it brings up a dialog screen of values that you can select from.
    Here is an example screen shot of what I am talking about:
    http://img834.imageshack.us/img834/5676/imageschak.png
    So what I have done is implemented the GETTER function for this input help field so that by default it has a value.
    The code is like so:
    method GET_CURRENCY.
    CALL METHOD SUPER->GET_CURRENCY
      EXPORTING
        ATTRIBUTE_PATH = attribute_path
       ITERATOR       = iterator
      RECEIVING
        VALUE          = value.
          if value eq ''.
            IF sy-langu EQ 'E'.
              VALUE = 'USD'.
            elseif sy-langu EQ 'D'.
              VALUE = 'EUR'.
            ENDIF.
          endif.
    endmethod.
    Here even is a link to this method that I created: Field Currency of Context Node BTADMINH - How to set default
    The method works great it sets the default of the currency to say USD.  When I click the create button to create an opportunity the field currency is set to USD, this is great because it makes my job easier that I dont have to click the input help button and select a currency, it is already there.
    But once I click the "Save" button for an opportunity I get a small error in the error notification box that tells me I need to select a currency!  But why is this happening a currency already exists?  So If I click the input help (the little button) and reselect the currency value USD then save my opportunity this error goes away.
    The question is why does this happen?  I need it so that the default currency value is recognized by the SAP CRM system.  Why do I have to go back in and re-select the currency if it is already set?  Is there some sort of consistency check or something I need to do to eliminate this problem? 
    Here is a screen shot after creating an opportunity with the default Currency set to USD (this means I did not select USD in the dialog input help it was defaulted by the getter method:
    http://img832.imageshack.us/img832/3011/enteracurrency.png
    Only if I go back into edit mode and actually click the little square to bring up the dialog of values and select USD does this error go away.  Why does this happen ?

    I called SET_CURRENCY right after setting my value and the error is now gone. 
      SET_CURRENCY( EXPORTING ATTRIBUTE_PATH = ATTRIBUTE_PATH
                    iterator = iterator
                    value = value ).
    Got the tip from Pieter who has a good blog on SAP CRM: http://sapcrmweblog.blogspot.com/

  • Just bought my wife a new iPhone 3G... she loves it but is there an app for

    ...helping her keep the camera more steady to allow her to take better pictures that are not so blurry? I am sure it is not a lowlight device, but it seems to suffer from a lot shake, etc. If I could control the f-stop thent that might be a different story. Any suggestions for a cool app to help would be great!

    I have been using "Darkroom Premium" for 5 months. It has adjustable stabilization and allows pictures that are a lot better than the crappy iPhone 3g software.
    Picture with iPhone 3g and "Darkroom Premium"
    http://img.photobucket.com/albums/v174/Satch0922/Jake4-10.jpg
    Message was edited by: Hb Mckinney

  • Why is there no functionality for multiple select of continuous icons in icon view?

    I have just switched to my first mac.  I admit I am experiencing growing pains switching over from a PC.  I am already overcoming many of these, but I have one issue in particular that for the life of me, I don't know why apple engineers left out.
    Why is it that I can select continuous multiple items by clicking "shift + first icon" and "shift + last icon" in the finder in list, column, and cover flow views, but NOT in the icon view?
    I realize a work-around for this would be to use a selection box and then to de-select the images I don't want.  This is the best option I have at this point, but honestly, I am extremely dissapointed that I have to even have a "work-around."  Simply put, this should not be an issue.
    I prefer icon view when superficially browsing my photos because I can see all my photos at the same time and change the thumbnail size.  There is no view besides icon view that has easy access to changing thumbnail size.  Therefore, there is no view at all that offers the functionality of changing thumbnail size AND selecting multiple items.  This functionality is standard in PC operating systems for icon view.  The multiple select in combination with changing thubmnail size is also extremely useful for me when transferring select files to external devices.  For example...I may be giving files to a family member on their jump drive.  As a teacher, I am often exchanging jump drives with other teachers for class photos, documents, etc., and being able to visually spot the items I want and to use continuous select is sometimes the easiest way to search within a folder.
    I called in to apple technical support and most of the people I spoke with were surprised to see that this functionality had been "left out" of the icon view in the finder.
    If the multiple select functionality cannot be added to icon view, it would be nice if the slider for changing thumbnail size was available in list or column view.  That way, I could at least have multiple select functionality in conjuction with the option of enlarging items.
    Please participate in this thread if you want this functionality added to the finder icon view!

    Matthew Morgan wrote:
    PVfanatic wrote:
    I realize a work-around for this would be to use a selection box and then to de-select the images I don't want.  This is the best option I have at this point, but honestly, I am extremely dissapointed that I have to even have a "work-around."  Simply put, this should not be an issue.
    I don't think that Apple thinks that's a workaround.  It is the way one goes about selecting multiple icons.
    It's a Mac/Windows difference that can be frustrating to new comers to the Mac.  I can promise you that, with time, you'll get used to it!
    Still, as macjack suggests, let Apple know what you think.
    Matt
    It may be a Mac/Windows difference, but Apple are not being consistent with their UI because in both Aperture and iPhoto you can do Shift-click to select multiple items in thumbnail view which, apart from the name, is the same interface type as icon view in Finder.
    Like the OP, I find this frustrating, not because I use Windows as well (at work) but because of the above and because it just seems illogical not to be able to do this when you can in all the other views in Finder. Oh, and Linux allows Shift-click multiple select too.

  • Is there any function for the Batch assignment of production order

    There is one function in the CO02(Production Order) which named "BATCH ASSIGNMENT".
    CO02 -> Components -> Batch assignment
    But the function only can assign one material one time.
    This is very boring.
    So we are planning to create a new program for it.
    But I can't find any function moudle or BAPI can be used.
    Could anybody give me some function moudle or BAPI for it?
    Tks

    Hello~~~Is there any body here?

  • Like Ini related functions, is there any functions for reading other functions like .c, .h file

    Hi,
          For reading the *.ini file there are many Ini realted functions. Like that I need in built function in CVI to read the files like
    *.c, *.h line by line. Actually string searching function is not helping me as I want to read it line by line and perform
    the operations in which I am interested.
    Can anyone help me on this?
    Thanks and Regards
    Nagraj B

    It's not clear to me what you are aiming to, but reading a text file line by line can be accomplished by ReadLine () function.
    Parsing the line read to intercept special keyword can be done via regular expression instrument driver, which is included in CVI distribution.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Is there a function for generating a triangle waveform that has both offset and delay?

    I want to have a triangle waveform in which I can set a delay and the width of the waveform (I can achieve this by using  Triangle Pattern.vi). Also I want to be able to give custom values for the min and max amplitude. example I want to be able to set the min amplitude to -1 and max to 6, or any other combination?
    Solved!
    Go to Solution.

    It sounds to me like you are struggling with basic arithmetic. Calculate the amplitude by subtracting the min from the max. Then, from the waveform array, add the min (or subtract the max).
    Message Edited by Dennis Knutson on 01-15-2010 03:46 PM
    Attachments:
    CreateWaveform.png ‏22 KB

  • Is there a function for delay?

    We used Labview to control the current injecting into the resistor and using Keithley multimeter (2000) to measure the voltage across the resistor. We would like to detect the voltage across the resistor after we've injected the current, however the program that we've written can't measure the correct voltage across the resistor. We are thinking of delaying the measurement of the voltage across the resistor so that it will only measure the voltage after a current is passed. What can we do to our existing program to accommodate this function?
    Attachments:
    6053_resfinal.vi ‏30 KB

    cloudies,
    I would suggest one of two things.
    1. Use sequence structures to do the following:
    a) Set up both instruments
    b) Inject current
    c) Measure voltage
    2. Create a State Machine that has the same sequence as suggestion 1. The advantage of the state machine is that you can jump around in it. This is good if an error occurs and you need to restart the experiment. I would implement this suggestion.
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

  • Ive got an mac book pro i bought the lead to connect to tv but is there a lead where you can have the sound from the tv and not through the laptop?

    ive got a mac book pro i bought the lead to connect to the tv but is there a lead for the sound to come out of the tv and not the laptop?

    Depends which Macbook Pro, depends what cable you have. MBPs from 2010 onwards can transmit audio through their Displayport connectors if you have an HDMI input on your TV and an adaptor which also transmits audio. Not all Displayport-HDMI adaptors do this. If you're trying a VGA input on your TV, that will not carry audio.
    If your MBP is older than 2010, you will need to use a separate audio cable to connect from your computer's 3.5" mini audio connector to the appropriate audio input on your TV.
    Matt

  • IS THERE A FUNCTION TO RETURN THE NUMBER OF MONTHS OR DAYS?

    I know that you can do a months between function between 2 dates divided by 12 and get years but is there a function that can return the number of months between 2 dates or the number of days between 2 dates in a select statement for a report? These 2 dates are entered in an Oracle forms.
    I have 2 dates.
    BEG_SVC_DT 30-JUL-1995 DATE FORMAT
    END_SVC_DT 981007 VARCHAR2 FORMAT Positions 5 and 6 are the days.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    In PLSQL I add 31 to 07 and get 38. I subtract 30 from 38 and get 8.
    or I have 2 dates
    BEG_SVC_DT 10-JAN-2003 DATE FORMAT
    END_SVC_DT 050924 VARCHAR2 FORMAT Positions 5 and 6 are the days.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    In PLSQL I subtract 10 from 24 and get 14.
    In both scenarios the end_dt field must be VARCHAR2 because the user has to enter the word 'PRESENT' . Is there a function in SQL that would compute the
    number of days between 2 dates?
    Is there a function to get the number of months between 2 dates?
    I have 2 dates.
    BEG_SVC_DT 12-JUL-2004 DATE FORMAT
    END_SVC_DT 050807 VARCHAR2 FORMAT Positions 3 and 4 are months.
    I must subtract BEG_SVC_DT from END_SVC_DT
    JUL is the 7th month.
    In PLSQL, I subtract 07 from 08 and get 01
    Or I have 2 dates
    BEG_SVC_DT 13-NOV-2004 DATE FORMAT
    END_SVC_DT 050429 VARCHAR2 FORMAT Positions 3 and 4 are months.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    NOV is the eleventh month. 04 is less than 11.
    In PLSQL I have to add 12 to 04 and subtract 11 from 16 to get 05.
    In both scenarios, the end_dt field must be VARCHAR2 because the user has to enter the word 'PRESENT'. In SQL, is there a function to compute the number of months between 2 dates?
    I am doing my calculations this way because this is the way that the user has been doing them when they created the report manually.
    The database that I am using is Oracle 9.2.0.6
    Report Writer Report Builder 6.0.8.22.0
    Forms 6.0.8.22.1

    In your example:
    BEG_SVC_DT 30-JUL-1995 DATE FORMAT
    END_SVC_DT 981007 VARCHAR2 FORMAT Positions 5 and 6 are the days.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    In PLSQL I add 31 to 07 and get 38. I subtract 30 from 38 and get 8.
    Where is the "31" depending on, on year and month of BEG_SVC_DT or END_SVC_DT?
    What would be the answer for the following example
    BEG_SVC_DT 25-FEB-1995 DATE FORMAT
    END_SVC_DT 980407 VARCHAR2 FORMAT
    Do I add 28 (=number of days in FEB-1995),
    or 30 (=number of days in APR-1998),
    or 31 (= max number of days in any month?)

  • Is there a need for the i.p. to change?

    I see that the i.p. is set to change every 4 hours by default for all my Macs but is there a need for this? Is there a way to set it so it doesn't change? Or is that a bad idea?
    PowerBook 15", 1.67 GHz   Mac OS X (10.4.3)  

    Thanks for the info Frank.
    I'm using a Widget for a software called Indigo wich controls my X10 lighting system and the Widget needs a static i.p.
    I changed the i.p. to all 4 Macs and they work fine.

Maybe you are looking for

  • How can I use iTunes in 2 desktops simultaneously?

    I wonder if I could have iTunes Visualizer running on one desktop and streaming to my TV via AppleTV and at the same time be able to use a second desktop on the same computer or on the laptop to switch songs without interrupting Visualizer. Is there

  • Can we generate code for Oracle 10g Release2

    hi, We have ODM Java Code Generator for model build using Oracle 10g Release1. Do we have ODM Code genrator for model build on Oracle10g Release2 using Oracle Data Miner 10.2. What version of JDeveloper will be required.

  • Purchase Quotation from Order Recommendation

    Hi Is there a way to directly generate purchase quotation's from the order recommendation's of MRP? Thanks Franz

  • Logged Changes in Infotype

    Dear Team: The transaction (S_AHR_61016380)Logged Changes in Infotype Data doesnu2019t  pick up any changes in info type ( 0021). Please advise me why the report is not retrieving any information on the same. Regards Team Member.

  • Programmatically cancel and order

    Has anyone written a procedure to programmatically cancel an order or a single order line? I see some of the Oracle packages where they have cancel_order and hold order procedures written. Has anyone ever used these with a customization? null