Is there any FM or BAPI to get list of all sales orders

Hello all,
        I have the requirement like below.
Is there any FM if i Pass Drawing document no, type,part,revision level which gives
the output list as.
1) all sales orders, where the above drawing document no is attached to the materials
and these materials are used as one of the lower level components in the Sales order BOM,
I need to show all those sales orders along with SO number,item,Material,Plant and BOM Item no,
2)all sales orders, where the above drawing document no is attached to the materials
and the same material is one of the item in sales order.
3)all sales orders, where the above drawing document no is used as one of the component in Sales order BOm's
Addition of 1,2,3 will be the o/p.
are there any FM or BAPI to get the above list.
Basically the above report is concatenation of report outputs of t-code CSD5 and CS15.
Awaiting reply.
Thanks.

Hi venkatesh,
   You can use the BAPI
BAPISDORDER_GETDETAILEDLIST
to get list of all sales orders.
Here is a lik which provides you BAPI'S regarding everything.
[http://www.saptechies.com/sap-bapi-list/]
Hope this will help you.
Regards,
Pavan.

Similar Messages

  • Is there any way to have a COMPLETE list of all samples and loops ( Logic 8

    I'm sure it's been posted previously, but anyway, I'm looking to buy new Apple Loops libraries and I have faced the fact , that many of the sounds and loops produced by third parties manufacturers have been already included in Logic installation discs.
    I have a list of Apple Loops DVD's that have been included with Logic somewhere, the problem is, Apple didn't post ( I believe) the credits of all 3rd party manufacturers that have produced these libraries that are included with Logic or Garage band. Is there any way to have a COMPLETE list of all samples and loops that are included with Apple DAW's so I wouldn't duplicate anything ? I'm pretty much positive that Apple had other companies to sound design and sample all libraries for them, so is there also a way to have a list of those manufacturers? Again, the objection is to start upgrading the sound library without any possible duplication?
    Thanks in advance!

    Chris, I certainly don't mind additional questions and postings.
    I believe there are many issues with Apple Loops and Logic that need to be resolved and people need to be aware of that. Unfortunately, in opposite to the old "german" version of Logic , there's no lifetime tech support, you can't even call and ask the question after 60 days , which isn't right for a professional software of this level, especially considering the fact that many things still remain vague in Logic even for developers and tech support people!( believe me, I've called and asked!)
    Issues like that need to be resolved over the phone with the company, period!
    One thing I also learned over the years as a Mac OSX user, if something doesn't work, don't mess with it. Delete your drive and re-install everything. This is very frustrating , I know, but unfortunately this is the only way to deal with OSX issues, if you got a problem with your system, don't try to fix it. It's never gonna be the same again. I know , it's off the topic a little bit, but if your content is missing from the system files, before installing your new Logic, back up your important files, wipe up your drive and clean install Mac OSX , run updates and then install the Logic. Most likely , everything will be in it's place, at least 90% or more. I gave up trying to make two system in my house to be compatible 100% , but it's OK if they're 90% or more identical. I spent enormous amount of time trying to find out what's missing and where, I visited most of the forums and there's no clean answer.
    Message was edited by: Moderator

  • Is there any report in SCCM 2012 to list out all the physcial machine and all the virtual machine?

    Is there any report in SCCM 2012 to list out all the physcial machine and all the
    virtual machine?
    and list all VMs for each physical server.

    Hi,
    there is no such builtin report but you can easily crete one as all information is in the database.
    http://www.scconfigmgr.com/2014/01/24/create-custom-reports-for-configmgr-2012-with-report-builder/
    Regards,
    Jörgen
    -- My System Center blog ccmexec.com -- Twitter
    @ccmexec

  • BAPI to get delivery number and Sales order

    Dear all,
    Is there a standard BAPI that would help me get the delivery number and sales order number when Shipment number is given as an input?
    Regards,
    Neha.

    BAPI_SALESDOCU_CREATEFROMDATA  Creating a Sales and Distribution Document
    BAPI_SALESORDER_GETSTATUS      Sales Order: Display Status  
    BAPI_SALESORDER_SIMULATE       Sales Order: Simulate Sales Order
    Reward Points if useful.

  • Is there any plist file that show the list of all OD joined computers?

    I am trying to find out if there is anyway to remove previously join computer from OD Master instead of using Workgroup Manager to remove. I am getting "Unable to add server" error after re-building a client server when I try to add it to the OD Master. I have tried everything including adding manually but authentication just does not work. I was told that if I can delete the previous record of my client server I should be able to re-join to OD Master but I don't see the client server name from Workgroup Manager. So, I am looking to see if there is any other list that I should delete to re-join client server to the OD Master.
    Thank you for any help.

    Hi Mariana,
    SAP CRM has Trade Promotion Management (TPM) integrated into campaign automation. Which does some of activities you have mentioned.
    Follow the SAP link : http://help.sap.com/saphelp_crm50/helpdata/en/4a/c9523e83464644e10000000a114084/frameset.htm
    <b>Reward if helps</b>
    Regards
    Paul Kondaveeti

  • Is there any Fm or Bapi available to see the direct reportees of a manager

    Is there any Fm or Bapi available to see the direct reportees of a manager
    i have the managers id could i get the employees under that manager
    is there any SAp fm for the same

    Like Aditya, I have not seen such a function module. However, there is a standard evaluation path which may be suitable for your purpose. It is called BOSSORG and will give you all the employees under a manager.
    Use it with function module RH_GET_STRUCTURE or RH_STRUC_GET. The latter lets you specify parameters directly, while the former takes them in container form. None of them are released for customer use unfortunately, but I haven't found a corresponding function module that is released.

  • Is there any fuction or bapi that can print the report automatic?

    Dear All
    I want to print the report( generated by command write ) automatic.
    Is there any function or bapi that can do it?
    Thank you in advance.

    Hi,
    Please try this.
    report ztest_auto_print.
      DATA:L_PARAMS TYPE PRI_PARAMS,
           L_VALID TYPE C.
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
           EXPORTING
             IMMEDIATELY                  = 'X'
             LINE_SIZE                    = 220
             RELEASE                      = 'X'
             MODE                         = 'CURRENT'
             NO_DIALOG                    = 'X'
           IMPORTING
    *     OUT_ARCHIVE_PARAMETERS       =
             OUT_PARAMETERS               = L_PARAMS
             VALID                        = L_VALID
           EXCEPTIONS
             ARCHIVE_INFO_NOT_FOUND       = 1
             INVALID_PRINT_PARAMS         = 2
             INVALID_ARCHIVE_PARAMS       = 3
             OTHERS                       = 4.
          IF SY-SUBRC <> 0.
          ENDIF.
    "But it will take default printer from user settings
          NEW-PAGE PRINT ON   PARAMETERS L_PARAMS NO DIALOG.
           write : 'print is on'.
          NEW-PAGE PRINT OFF.
    Regards,
    Ferry Lianto

  • I accidentally formatted my portable hard drive when setting it up for time machine. Is there any way for me to get back my lost files?

    I have an external hard drive of the brand Western Digital.
    Before I got my iMac I moved a lot of my important files from my PC to the hard drive and today I went on and connected it to my iMac to move my files over to it.
    When it had connected a window popped up that asked if I wanted to use this hard drive with the program Time Machine and create backups. Without thinking it trough enough and reading the warning properly (I'm stupid I know) I clicked "yes". I then realised how stupid it was and cancelled the formatting of the hard drive. But somehow the program still managed to delete all my important files and can't find any way to get them back. Neither can I connect the hard drive to my PC anymore so I can't check if the files are still there (which I doubt they are since I can't see them on my iMac either).
    And now I wonder: is there any way for me to get back my lost files or are they lost forever?
    Thank you in advance!
    //Gina

    A data recovery specialist or some data recovery programs should be able to help.  Most format simply rewrite the directory tree saying no files are on this disk.  The bits that represent the files are still flipped appropreiately so they still exists, you just don't have the location info to get at them.  Secure formats and erases rewrite each bit to a zero or 1 or random so the data is then truely gone.  This type of format takes a long time to complete.
    I'm not making a recomendation of a particular program but here is one company that does what you ask:
    http://www.remosoftware.com/mac-recovery  The cost is pretty high but I'm sure they don't sell many copies and need to cover their development costs.
    Good luck and don't write anything on the freshly formatted disk until you decide what to do.

  • Is there any way for me to get my music off of my iPod?  I had to get a new computer and no longer have my files...but most are cds

    Is there any way for me to get my music off of my iPod? I had to get a new computer and no longer have my files, most of it is cds...

    Your iPod can only be synced with one computer at a time.  If you try to sync it with a new computer/iTunes library, it will replace the contents of the iPod with whatever is in the new library. You should probably disable the autosync functionality first by going to Edit -> Preferences, clicking the Devices tab, and enabling the prevent iPods,iPhones, and iPads from automatically syncing option.
    Before doing anything else,  authorize the new computer with your iTunes Account.  In iTunes, choose Store -> Authorize This Computer and enter in the correct credentials. Either copy a backup file from your old computer to your new one or create a new backup of your iPod in iTunes before letting it sync.
    Then right->click on your iPod Touch from under the Devices section in the left hand pane of iTunes and choose Backup. You might also want to take a look at this article to see what it all included in the backup.
    iOS: How to back up
    Now onto synced content such as music, videos, photos, etc.  For iTunes purchases you can copy them back into iTunes by choosing File -> Transfer Purchases.  For all other nonpurchased iTunes content, see this excellent user tip from another forum member turingtest2 outlining the different methods and software available to help you copy content from your iPod back to your PC and into iTunes.
    Recovering your iTunes library from your iPod or iOS device
    Once the backup has been made and all other synced content such as music, videos, and photos are back in your iTunes library, restore your iPod from that backup you made earlier.  Here is more on backing up and restoring your iPod.
    iTunes: Backing up, updating, and restoring iOS software
    If you do happen to lose any purchased content, you can always redownload it from the iTunes Store again at no cost via iCloud.  See this article for information.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    B-rock

  • I accidentally deleted my entire iTunes library after updating my iTunes.  Is there any way that I can get these songs back?

    After clicking on an update for iTunes, the only change I noticed was the addition of about 9000 sound bytes, which was ridiculous and wasteful.  I started to delete all the sound bytes, but that was going to be a huge chore.  Instead, I moved the songs I had in my library to a playlist called "backup library."  I then chose to "select all" under edit to highlight the rest of the 9000 soundbytes and delete these in one click.  At first, this seemed to work.  I still had the saved songs in my playlist, and the 9000 sound bytes went to the recycle bin.  I then emptied the recycle bin to get rid of the sound bytes.  When I checked iTunes again, there were no songs anywhere in the library or playlists.  Is there any thing you can do to help restore all of these songs (and none of the sound bytes) to my IPOD Classic?  Is my account saved with a back-up of everything I had saved in my iTunes library and playlists?
    I have about 1500 songs in my IPOD Classic that are not affected by this error.  Is there a way that I can transfer all of these songs back into my iTunes library? 
    I would appreciate any help with this problem.

    Hello bigali,
    Your options are kinda limited. I would use this first:
    Downloading past purchases from the App Store, iBookstore, and ...
    Then check here for the non-purchased items:
    https://discussions.apple.com/thread/2452022
    You want to rebuild the library first, then sync the ipod.
    Here is a good idea for when your done:
    How to back up your media in iTunes
    Hope this helps.
    ~Julian

  • I recently gave my old iPhone to my nephew, he switched it to his phone account, but somehow I now have his contacts on my new iPhone 5. When I look at my iCloud account, it lists his contacts. Is there any way for me to get my contacts back?

    I recently gave my old iPhone to my nephew, I did not clear out my old phone before I gave it to him, when he transferred to his account, he had my iCloud info on the phone, and it updated the contacts on my new iPhone 5 to his contacts. Is there any way for me to get my contacts back?

    This is caused by using the same iCloud account on both phones.  When you do this any data you sync with the shared iCloud account such as contacts is merged and will appear on all devices connected to the account.  To fix this you both need to have separate iCloud accounts (you can continue to share the same Apple ID for purchasing from the iTunes and app stores). 
    Decide which iPhone will be keeping the current iCloud account.  On the one that will be changing accounts, if you have any photos in photo stream that are not in your camera roll or backed up somewhere else save these to your camera roll by opening the photo stream album in the thumbnail view, tapping Edit, then tap all the photos you want to save, tap Share and tap Save to Camera Roll. 
    Once this is done, go to Settings>iCloud, scroll to the bottom and tap Delete Account.  (This will only delete the account from this phone, not from iCloud.  The phone that will be keeping the account will not be effected by this.)  When prompted about what to do with the iCloud data, be sure to select Keep On My iPhone.  Next, set up a new iCloud account using a different Apple ID (if you don't have one, tap Get a Free Apple ID at the bottom).  Then turn iCloud data syncing for contacts, etc. back to On, and when prompted about merging with iCloud, choose Merge.  This will upload the data to the new account.
    Finally, to un-merge the data you will then have to go to icloud.com on your computer and sign into each iCloud account separately and manually delete the data you don't want (i.e., deleting your nephew's data from your account, and vice versa).
    As for recovering your lost contacts, if they aren't on icloud.com when you check from your computer, you will have to recover them from a backup source.  You could try restoring to your last backup but this doesn't always work for contacts.  (Chances are you nephew deleted your contacts from his phone, not realizing it would also delete them from yours.)

  • Is there any way that I can get back my iPhoto?  After having hard disk replaced (no backup) and the operating system has been updated to Lion (no disc) I am wondering if iPhoto can be reinstalled with my Leopard discs?

    Is there any way that I can get back my iPhoto?  After having hard disk replaced (no backup) and the operating system has been updated to Lion (no disc) I am wondering if iPhoto can be reinstalled with my Leopard discs?

    As Niel pointed out, yes.  The disk probably will look like the MBP disk (4) in this screenshot;
    OT

  • I forgot to save a file in Numbers. Is there any way I can possibly get it back?

    I forgot to save a file in Numbers. Is there any way I can possibly get it back?

    Do a search in Finder for Untitled.Numbers. If you find such a file, or some variation, try to open it and see what's there. That's if you never saved.
    Mavericks is pretty good about autosaving, so you chances are not too bad. In the future though, never write a thing in a new document until you give it a name and a place.
    Jerry

  • Is there any chance that I can get a video chat

    Is there any chance that I can get a video chat (like I recorded) that I had a few days ago? It is very important for me, please reply me back if you know something, thanks

    This is the only Moto phone when it comes out that can be used on Verizon Prepaid..
    http://www.droid-life.com/2013/11/13/moto-g-is-coming-to-verizon-prepaid-in-q1-2014/

  • Is there any chance that FM reception gets made available on the next iPhone model?

    Hi,
    I did buy an iPhone 3G then upgraded iPhone 4 but always felt that Apple's devices missed a very useful function (and hoped that it would eventually be made available), FM reception! Now I have that cool iPhone and yet I have to have my iPhone to listen to my MP3s and a FM radio to be able to listen to the gym FM broadcasting or listen to my favorite FM station which doesn't broadcast on the internet! And I definitely don't see myself forking away a hundred on an iPod Nano just because of its FM receiver!!!
    Is there a hardware limitation preventing iPhone 4 from receiving FM broadcasting?
    Is there any chance that FM reception gets made available on the next iPhone model?
    Please give your iPhone customer FM reception!!! PLEASE!!!!!!

    We're all just fellow users here and have no idea what Apple might have in mind for future iPhone versions. You can offer your suggestion to Apple via their feedback page, if you wish:
    http://www.apple.com/feedback/iphone.html
    Regards.

Maybe you are looking for

  • Library Tables in Report Painter ?

    Hello, can we use two tables while creating a library for the report painter ?  mmy guess is on using a view ?? If views, then how to use them in the libray while defining the characteristics n all ?? Hope i am comprehendable .. Thanks. Shehryar

  • Customized notification message template in Workflow Builder for iExpense

    Hi Gurus! I have a few requirements to change the notification format of the AME Expense Report Approval Message and one of which is to add a due date of the notification in the subject line of the email. So i have created a new message template, add

  • Belkin stereo doesn't work on iPod Touch 2g??!!

    Hi, I just bought that little Belkin stereo attachment for audio recording using my iPod Touch 2g, but it doesn't seem to work! Or at least I don't know how. The manaul for the stereo only has directions for using it on iPod nano 2g, iPod nano 3g, iP

  • Can Quicktime 7.6 record internet audio?

    I need a software that can record any audio sound includes internet radio and stuff. and must capable of converting file directly into MP3 or AAC during or after recording. Can Quicktime pro do that? I'm just about to buy it, but I won't if it can't

  • Working with Nested Sequences

    I'm working with a 1 hour, 20 minute multi-cam (2 cameras) Sequence of a concert, with many edits. One of the music pieces was complicated, so I separated it out into a separate Sequence, and did the editing. Later, my occasional fcp tutor created a