What are the bapi available of md07

Hi friends.
what are the bapi available for 'MD07'. actually i need particular material no details for open stock and closing stock and Ist RDS and 2nd RDS value.
anybody tell usefull answer.
regards
pauldharma

Hi Dharma,
  Check out this:
BAPI_MATERIAL_STOCK_REQ_LIST
Thanks
Gurjot S

Similar Messages

  • What are the attributes available on Task Status Notification?

    Hi,
    I need to send the information below when a task is completed or rejected. So I would like to know if they are available. I think so because I've got them from Task Status Notification (OIM standard email definition). If not, what are the attributes available on Task Notification?
    <Tasks.Task Name> is <Task Details.Status>.
    <Task Details.Status>
    <Resource.Resource Name>
    Target User: <Users.First Name> <Users.Last Name> [<Users.User ID>]
    Assigned to: <Task Information.Assignee First Name> <Task Information.Assignee Last Name> [<Task Information.Assignee User ID>]
    Response Code : <Responses.Response>
    Response Description : <Responses.Description>
    Error Details : <Task Details.Reason>
    Thanks,
    Renato.
    Hi,
    I have implemented some java code to workaround the problem below... But I don't believe this does'n work in OIM :-):-):-):-) Please, tell me if you are using task status notification in OIM and if your email defintion has the variables below.
    Thanks,
    Hi,
    One of OIM email templates is Task Status Email Notification. I am trying to notify the user (Notification tab) using this template but it didn't work. Even when I set the Object Name and Process Name values for an email definition, it does not work.
    How have you implemented task status notification in your workflows? I think if this template exists in OIM, by default, so it is posible to have the information below during notifications.
    I think I'll have to call Oracle's Support.
    =======================================================
    Subject: Process task <Tasks.Task Name> is <Task Details.Status>.
    Body:
    The Process task <Tasks.Task Name> is <Task Details.Status>.
    The details of this process task are as follows:
    Process Task Name: <Tasks.Task Name>
    Process Task Status: <Task Details.Status>
    Resource Name: <Resource.Resource Name>
    Target User: <Users.First Name> <Users.Last Name> [<Users.User ID>]
    Assigned to: <Task Information.Assignee First Name> <Task Information.Assignee Last Name> [<Task Information.Assignee User ID>]
    Response Code : <Responses.Response>
    Response Description : <Responses.Description>
    Error Details : <Task Details.Reason>
    =======================================================
    As I've said, the e-mail was sent but in blank:
    The Process task is .
    The details of this process task are as follows:
    Process Task Name:
    Process Task Status:
    Resource Name:
    Target User: []
    Assigned to: []
    Response Code :
    Response Description :
    Error Details :
    Is it possible to have those fields available on notifications?
    Thanks,
    Edited by: Renato.Guimaraes on 23/10/2009 08:05
    Edited by: Renato.Guimaraes on 24/10/2009 15:57
    Edited by: Renato.Guimaraes on 26/10/2009 13:31
    I didn't get any answer until now.. Below it is what I've done.
    a) Create an entity adapter that is assigned to the post-update of the Specific Task Info data object.
    b) Select the task information searching by SCH_KEY, for example (I have to do more tests)
    SELECT
    sch.sch_key, sch.sch_status, sch.sch_note, mil.mil_key, rsc.rsc_data, rsc.rsc_desc
    FROM
    osi, sch, mil, rsc
    WHERE
    mil.mil_key = osi.mil_key and
    osi.sch_key = sch.sch_key and
    sch.sch_key = ? and
    rsc.rsc_key = osi.rsc_key
    c) Load the e-mail definition template and replaces the fields
    d) Sends the e-mail
    With that I solved another problem: I have to send an e-mail always the assignee adds a note to the task.
    Edited by: Renato.Guimaraes on 28/10/2009 08:51. How I did that
    Edited by: Renato.Guimaraes on 12/11/2009 12:19
    Edited by: Renato.Guimaraes on 13/11/2009 07:22 Changed the Thread Subject

    Hi Experts,
    I want to extend my doubt a little more.
    I have a requirment  as below.
    User will enter a range of Date say 01.06.2011 to 25.06.2011.
    I need to show him data in two columns one cloumn for the entered day range and second column for prevoius month date rangei.e(01.05.2011 to 25.05.2011)
    can i achive this without  using Customer Exit.
    Regards
    Laxman

  • What are the methods available to modify standard reports?

    What are the methods available to modify standard reports?

    <b>Hi,
    I think you can copy those reports into Zreports</b>

  • What are the commands available to read a file from application server and

    What are the commands available to read a file from application server and store the file into an internal table?

    Hi,
    To read a file from an Application Server to an Object there is a command in ABAP called <b>READ DATASET</b>. After that file is transported to that object you have to do a loop and put that data in an Internal Table.
    This statement exports data from the file specified in dset into the data object dobj. For dobj, variables with elementary data types and flat structures can be specified. In Unicode programs, dobj must be character-type if the file was opened as a text file.
    For dset, a character-type data object is expected - that is, an object that contains the platform-specific name of the file. The content is read from the file starting from the current file pointer. After the data transfer, the file pointer is positioned after the section that was read. Using the MAXIMUM LENGTH addition, the number of characters or bytes to be read from the file can be limited. Using ACTUAL LENGTH, the number of characters or bytes actually used can be determined.
    In a Unicode program, the file must be opened with an arbitrary access type; otherwise, an exception that cannot be handled will be triggered.
    If the file has not yet been opened in anon-Unicode program, it will be implicitly opened as a binary file for read access using the statement
    OPEN DATASET dset FOR INPUT IN BINARY MODE.
    . If a non-existing file is accessed, an exception that can be handled can be triggered.
    Influence of Access Type
    Files can be read independently of the access type. Whether data can be read or not depends solely on the position of the file pointer. If the latter is at the end of the file or after the file, no data can be read and sy-subrc will be set to 4.
    Influence of the Storage Type
    The import function will take place irrespective of the storage type in which the file was opened with the statement OPEN DATASET.
    If the file was opened as a text file or as a legacy text file, the data is normally read from the current position of the file pointer to the next end-of-line marking, and the file pointer is positioned after the end-of-line marking. If the data object dobj is too short for the number of read characters, the superfluous characters and bytes are cut off. If it is longer, it will be filled with blanks to the right.
    If the file was opened as a binary file or as a legacy-binary file, as much data is read that fits into the data object dobj. If the data object dobj is longer than the number of exported characters, it is filled with hexadecimal 0 on the right.
    If the specified storage type makes conversion necessary, this is executed before the assignment to the data object dobj. Afterwards, the read data is placed, byte by byte, into the data object.
    System Fields
    sy-subrc Meaning
    0 Data was read without reaching end of file.
    4 Data was read and the end of the file was reached or there was an attempt to read after the end of the file.
    Thanks,
    Samantak.
    <b>Rewards points for useful answers.</b>

  • What are the frameworks available out there

    I just want to know what are the frameworks available out there for Desktop application ?

    I want to create a standalone application in Java and I heard that I can make it easier if I follow a framework.
    After having a look at frameworks for Java, it just completely confuse me, as it is very different from frameworks for Flash (which I do most).
    The java framework covers much more stuff than what Flash framework covers (which mainly regulate the way how the SWF communicate with the server and the design of the classes )
    I still wonder what is the definition of framework in Java ? Do I really need one for a standalone application, or I just need to follow the MVC design for my classes ?
    I just need to get it right before I actually work on my program.
    Thanks.

  • What are the enhancements available for LIS?

    What are the enhancements available for LIS?

    Hello,
    Check if this weblog may help you:
    /people/vikash.agrawal/blog/2006/12/18/one-stop-shop-for-all-your-lo-cockpit-needs
    There, you have a good article about this on link: Enhancing LO DataSource Step by Step
    Kind regards,
    Edited by: Bruno Garcia on Jun 3, 2008 12:24 PM

  • What are the tools available for gps NMEA  data streams reception ?

    Since no software for bluetooth connection for my Holux GPS device to my iPad2, I plan to write one myself. What are thr tools available and what is the simplest development platform just for this simple task? That is just to read the NMEA ASCII stream from the Bluetooth device.

    It depends on what 'interprocess communication' your "app" program has available.
    I regulary use DDE to control a PLL App which controls our PLL via the LPT Port. This is only a write process, but works very easily. The read is equaly easy. You need to know the various "keywords" like service, topic and instruction which the "app" will respond to.
    Generaly I found ActieX to be more extensive, meaning its probably going to take longer and more steps to achive similar simple results.
    The file does not seem to be the best way.
    Hope that helps a bit.

  • What are the Connectors available for KM file repository?

    Hi All,
    Which are different connectors available for KM?
    Apart from below list
         Windows File Server
         Web Servers (HTTP)
         WebDAV compliant servers (MS Sharepoint, MS Exchange Public Folders, LiveLink)
         mySAP PLM DMS
         SAP Knowledge Warehouse
         Lotus Notes
         3rd Party DMS (Filenet, IXOS)
         EP KM repository
    is any of above connector is not used now a days??
    These are the list given in documentation of EP 6.
    So if in EP 7, if they have included more or removed any then please let me know
    Regards,
    Purav

    Hi
    There is another connector for KM
    DMS CONNECTOR FOR KM
    Thanks

  • What are the css available in OAF?

    Hi,
    We use CSS in item static styled text.
    For example CSS=OraInstructionText.
    May I know like that what kind of CSS available.
    Thanks,
    Lavan

    Hi Lavan,
    •OraFieldText :Updatable Fields
    •OraDataText :Display Only Fields
    •OraPromptText :Used for Prompts, Checkboxes
    •OraLinkText :For Links/URLs
    •OraInstructionText :For Plain Text Instruction
    Please refer below link for more detail.
    http://www.scribd.com/doc/62704815/CSS-Styles
    Thanks,
    Dilip

  • What are the plugins available in XI

    I would like to know are there any plugins available in XI

    Hi Ashok,
    This description enables you to develop adapters and modules for SAP Exchange Infrastructure (XI). To do this, you use the Adapter Framework in the Partner Connectivity Kit (PCK).
    http://help.sap.com/saphelp_nw04/helpdata/en/8b/895e407aa4c44ce10000000a1550b0/frameset.htm
    The Adapter Framework is part of the Adapter Engine and the PCK. It provides interfaces for configuring, managing, and monitoring adapters. The Adapter Framework is used to connect any external system to SAP Exchange Infrastructure.
    Reward points if this helps.
    Regards
    Vani.

  • What are the methods available for passing data between Labview 6.0 VI and another custom windows program

    The big picture is that I'm trying to use labview to interface to a DSP board.
    I already have a small windows application "app" which communicates with the dsp. Now I want Labview to grab data from the "app" and plot/analyze ... etc.
    I'm a novice at this 'interprocess communication stuff", what can I use to pass data back and forth between between the "app" and LV?
    use ActiveX, DMA, streams, etc.?
    In a crude sense I could just have the "app" write the data to a file and then have LV read the file. (can two applications read the file at the same time?), but
    this seems very slow and clumsy. I'd rather have a RAM based FIFO which both could access.
    Thanks!
    G
    Details:
    Pentium120 Windows 95 Host
    Spectrum TMSC30 DSP
    VC++6
    LV6

    It depends on what 'interprocess communication' your "app" program has available.
    I regulary use DDE to control a PLL App which controls our PLL via the LPT Port. This is only a write process, but works very easily. The read is equaly easy. You need to know the various "keywords" like service, topic and instruction which the "app" will respond to.
    Generaly I found ActieX to be more extensive, meaning its probably going to take longer and more steps to achive similar simple results.
    The file does not seem to be the best way.
    Hope that helps a bit.

  • What are the variables available on 0CALDAY

    HI EXPERTS,
    I want to know the list of variables on a 0calday.How can i know?
    Can i get this information for all the standard characteristics / time chars.?
    Beacause ,when i open my query designer ,i see only few variables under the characteristic 0calday.
    For example,
    when user enters a date, i need to show him both entered date   and entire months in next column.
    so i need to find.Is there any SAP variable available already for this purpose?
    I aslo have some columns.........etc,,
    Can any one help. me..
    Regards
    Laxman

    Hi Experts,
    I want to extend my doubt a little more.
    I have a requirment  as below.
    User will enter a range of Date say 01.06.2011 to 25.06.2011.
    I need to show him data in two columns one cloumn for the entered day range and second column for prevoius month date rangei.e(01.05.2011 to 25.05.2011)
    can i achive this without  using Customer Exit.
    Regards
    Laxman

  • What are the routines available in abap

    hi all,
    I have found 2 routines so far widely used in abap.
    They are conversion routines in data element and user defined routines in lswm.Can anyone let me know is there any other routines apart from the above 2 routines specified.
    thanxs
    hari

    Some of the conversion routines
    CHAR_HEX_CONVERSION
    CHAR_INT_CONVERSION
    CHAR_NUMC_CONVERSION
    CHAR_PACK_CONVERSION
    CONVERSION_EXIT_PARVW_INPUT
    to know about conversion routines, check this link
    http://help.sap.com/saphelp_47x200/helpdata/en/cf/21ee19446011d189700000e8322d00/content.htm
    Thanks
    Seshu

  • What are the features available in redwood

    Dear Friends,
    Is it possible to findout list of features available  in redwood??
    I have to findout features to implement it.
    thanks in advancce.
    Regards
    Jiggi

    Hi Jiggi,
    There is a lot of information on features as well as implementation available on the SDN, on
    Scheduling
    Regards,
    Anton Goselink.

  • What are the servers  available

    1) what is application server ? give Example
    2) what is web server Give Example
    #) how we have to choose the server

    Ah ok! Thanks! Out of two reasons why I wouldn't like to give you direct answers:
    1. These may be homework questions, and it wouldn't be so good to simply give answers.
    2. I would search for it myself, because I'm not sure whether I would be able to give you a correct answer. So, instead of giving you a fish - I'm telling you more on how to catch the fish yourself! I hope that's ok!
    This is how I would go about it:
    Your questions asks for a definition of something. The best place to start is Wikipaedia! They've got information on just about anything. There's a search box where you can type your term. Try it.
    For definitions, there's also a way on google - into the search box, type
    definition:and your search term(s). This brings up a host of sites that give a definition of your term.
    Success!!

Maybe you are looking for

  • IOS 8 find friends on same icloud account with multiple devices

    This has been bugging me and I have not found a workable answer to it anytime I have searched. iOS seems to have broken a simple functionality of find my friends. I have 2 iPhones on my iCloud account, in iOS 7 it was simple to share the location in

  • Non US-ASCII characters in download file names

    I am trying to implement a simple file download in a JSP, and trying to get IE, Firefox and Opera to all display and handle non US-ASCII characters in the suggested download file name. Only concerned with Windows platform for now. Here's the code I a

  • MBA won't connect to the internet

    I am having a problem that I cannot figure out. I've searched Google as well as the Apple discussion boards, and I have found nothing that addresses my problem. Yesterday, I was able to turn on my airport in my iMac (which is connected to a cable mod

  • ITunes will not open, not enough memory???

    I keep getting this message. I have nothing else running and have tried restarting with no luck. What is the problem? It just started happening all of a sudden after turning mac on for 1st time today.

  • Rounding a quantity field to one decimal place. PLEASE URGENT

    I have a quantity field with three decimal places. I have to print this field with only one decimal place. This is in a smartform. suppose: qty = 45.678 I want it to be printed as 45.7 Thanks in advance.