Open PO report showing "Sent" or "Not Yet Sent"

Can someone direct me to the T-Code for a report that shows what POS have been sent to the supplier and which ones have not?
Thanks for any help you can give me.

there is no such report in SAP, you have to develope it yourself
in ME9F you can do the message output, here you can select according to processing status
you can only know whether a message was created and outputted, but not whether it was sent.
Sending is something a subsystem or a human does. this activity is not recorded in the PO.
if you fax a PO message out of SAP. then the green light in the PO next to the message just tells you that SAP has succesfully given the message to the fax server. but it does not tell you whether the fax was successfully send. this can be found e.g. in SOST transaction.

Similar Messages

  • All computers showing no status, not yet reported!.

    I have reinstalled WSUS role on Server 2008 R2 , but it shows all computers with no status, ip address unknown, operating system Windows 0.0 , and not yet reported. I have installed it 7 days ago. I also installed kb2720211.   At download status it
    is downloading 9319 mb of 63256 mb (at this moment) . Do i have to wait till it finish downloading all updates and than thay will start replying or is any problem with WSUS ?
    1122

    A few questions here...
    Why did you destroy the content store when you uninstalled WSUS?
    Why are you downloading ==63GB== of files????? (How many updates did you approve???)
    Are any of the client systems Windows 8 or Windows Server 2012?
    Did you install KB2720211 before launching the synchronization or after? before approving the multitude of updates, or after?
    If it's showing NoStatus/NotYetReported for the clients, and the server has been online seven days (and still only downloaded =9GB=?), then you need to start by looking in a WindowsUpdate.log and see why the client(s) are failing to communicate with the
    WSUS server.
    My guess would be that the installation of KB2720211 did not complete successfully.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Error While Executing Report - "Field symbol has not yet been assigned."

    Dear All,
    I am using Cube 0PP_C01 which filled with data Source 2LIS_04_P_MATNR.
    Based on this Cube I had developed a report.
    0MRP_CONTRL characteristic filled using 0MATERIAL master data.
    Authorization in this report is based on Characteristic 0MRP_CONTRL & 0PLANT.
    While running report User gets error u201CField symbol has not yet been assignedu201D & Analyzer just quit.
    Also getting dump in tcode ST22.
    This problem occurs when limited authorization of 0MRP_CONTRL & 0PLANT assigned to user & if I provide full authorization 0BI_ALL then report runs fine.
    When I will remove 0MATERIAL characteristic from report then Report runs fine & at a time when I put 0MATERIAL in the report its gives error.
    Please suggest me what to do as I can not give user 0BI_ALL right in RSECADMIN.
    Please help.
    Regards,
    Divyesh Khambhati.

    Hello Shashank,
    Thanks for your reply.
    No material is not checked for authorization relevant.
    Is it required to make 0MATERIAL to be checked as Authorization relevant ??
    I had make 0MATERIAL authorization relevant & assign all material Authorization to User but still error coming..
    I do not have any idea regarding this colon authorization, if possible can you explaine me how I can use this colon authorization ?
    Divyesh Khambhati
    Edited by: Divyesh M Khambhati on Oct 2, 2010 10:29 AM

  • TS3623 I have been using apple TV for a 2+ years now an I just purchased several new TVshows that started in Sept 2013.  In the past shows I have not yet watched had a green dot by them, but now this does not exist and i forget which show i have already w

    I have been using apple tv for 2+ years and i just purchased several new shows that began in Sept 2013.  In the past, episodes I have not yet watched were marked with a green dot, but now that dot is not there. 

    Wow, Karan Taneja, you've just embarrassed yourself on a worldwide support forum.  Not only is your post ridiculous and completely inappropriate for a technical support forum, but it also shows your ignorance as to whom you think the audience is.  Apple is not here.  It's users, like you. 
    If you would have spent half the time actually reading the Terms of Use of this forum that YOU agreed to by signing up to post, as you did composing that usesless, inappropriate post, you (and the rest of us on this forum) would have been much better off.

  • Custom Report - Show Deployed, But Not Installed, Security Updates

    I'm trying to create a custom report that will show all patches that have been deployed, but have not been installed for a particular collection. Any ideas?

    Answered my own question.
    This will pull all Security Updates that have been Deployed but are still Required (not installed) for the All Systems collection (SMS00001). You can directly modify the code to limit it to the All Servers or All Workstations depending on your site code. You
    can also change the CategoryInstanceName filter to see different Update Classifications.
    select distinct
    sys.Name0,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    ui.Title as Title,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as UpdateClassification,
    CASE ((ui.IsDeployed))
    When 0 Then 'No'
    Else 'Yes' End as 'Deployed',
    CASE((ui.Severity))
    When 2 Then 'Low'
    When 6 Then 'Moderate'
    When 8 Then 'Important'
    When 10 Then 'Critical'
    Else 'NA' End as 'Severity'
    from v_UpdateComplianceStatus css
    join v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join v_R_System sys on css.ResourceID=sys.ResourceID
    join v_ClientCollectionMembers ccm on ccm.ResourceID=sys.ResourceID
    join v_CICategories_All catall on catall.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and catinfo.CategoryTypeName='Company'
    join v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID and catinfo2.CategoryTypeName='UpdateClassification'
    where css.Status=2
    and ccm.CollectionID='SMS00001'
    and ui.isDeployed=1
    and catinfo2.CategoryInstanceName='Security Updates'
    and catinfo.CategoryInstanceName = 'Microsoft'
    order by sys.Name0, ui.ArticleID
    select distinct
    sys.Name0,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    ui.Title as Title,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as UpdateClassification,
    CASE ((ui.IsDeployed))
      When 0 Then 'No'
      Else 'Yes' End as 'Deployed',
    CASE((ui.Severity))
      When 2 Then 'Low'
      When 6 Then 'Moderate'
      When 8 Then 'Important'
      When 10 Then 'Critical'
      Else 'NA' End as 'Severity'
    from v_UpdateComplianceStatus css
    join v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join v_R_System sys on css.ResourceID=sys.ResourceID
    join v_ClientCollectionMembers ccm on ccm.ResourceID=sys.ResourceID
    join v_CICategories_All catall on catall.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and catinfo.CategoryTypeName='Company'
    join v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID and catinfo2.CategoryTypeName='UpdateClassification'
    where css.Status=2
    and ccm.CollectionID='SMS00001'
    and ui.isDeployed=1
    and catinfo2.CategoryInstanceName='Security Updates'
    and catinfo.CategoryInstanceName = 'Microsoft'
    order by sys.Name0, ui.ArticleID

  • Open order value showing in VA05 not matching .

    Hi Guru ,
    In VA05 open order value in not matching with open order value in FD33 in cretit master .
    Please provide input .
    Edited by: Ravi Deolalikar on Jun 16, 2010 5:24 PM

    1/ Check your credit control area settings
    2/ Check your sales order config, if it works for one sales order type and not the other compare the two/

  • My macbook pro is getting really hot when I leave it running but put the screen down.   When I open it only shows password box not rest of screensaver.  I'm not doing anything differently

    The past 2 days my MacBook pro has been running really hot, especially when I close it.  When I open it the screensaver doesn't show completely.  Yesterday when I moved the mouse it made spiral trails with the graphics, very strange.  I'm really concerned!  Help... I've restarted it, powered it off last night, etc.

    You can always take your Mac in and give it a check-up for free. What will cost you is the repairs you select to have preformed. I recommend shutting your Mac down before you go to bed. Problem solved. There is no need for you to keep it running if all applications are quit. Why do you need it on?

  • Wifi is shown as connected on my i phone , but when i open safari it shows safari can not open

    wifi is shown as connected
    but while opening safari page it says it can not be opened
    why ?

    Are you sure you're router is connected to the internet?

  • I am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier

    i am having macbook air recently my iphotos did not open and was showing report apple and reopen but i came to know that by pressing alt and iphotos i open an new photo library and stored the pics but now how can i get the pics which i had in the earlier photo please help me to recover my photos

    Well I'll guess you're using iPhoto 11:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Spool Req showing as 'not yet sent'

    I have set my condition record to "Print when saving" - for my Handling Unit label.  However, when i process a Goods Receipt and then check in SP01 i see the entry with status 'not yet sent' .. refreshing this does not force it to print at all.
    thanks,
    A.

    Audrey,
    Forgive me, but when I look at the requirements for "I Blogged," it shows to read and bookmark the SCN Rules of Engagement (which shows as completed) and to create a blog post (which does not show as completed).  However, as you acknowledged, I have created a blog post (Focusing on Others Helps Self).
    In addition, do you have any insight regarding the I Gave mission?
    Thank you for your help and quick response!
    Jeff

  • My iPad Mini with retina display suddenly will not connect to the Internet. It shows full wifi bars, yet no web pages will load. My Internet is working with all other apple devices in my house. The iPad also no longer works with celluar data.

    My iPad Mini with retina display suddenly will not connect to the Internet. It shows full wifi bars, yet no web pages will load. My Internet is working with all other apple devices in my house. The iPad also no longer works with celluar data. I'm not sure what has happened. It was working fine a few hours ago. I have tried resetting it, ive restarted my browser etc. I tried to erase all data from my Ipad but I can't do that because it needs to sign into my Apple ID and use the Internet!

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are drooping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    iPad: Issues connecting to Wi-Fi networks
    http://support.apple.com/kb/ts3304
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h Mt
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asp
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Some Wi-Fi losses may stem from a problematic interaction between Wi-Fi and cellular data connections. Numerous users have found that turning off Cellular Data in Settings gets their Wi-Fi working again.
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Help me in  'AR Details ' report shows total open invoices by customer

    hi friends,
    please  help me in  'AR Details ' report shows total open invoices by customer and PO number over selected time range.
    any thing related to open invoices please send me as early as possible.
    Thanks,
    Regards,
    Yogesh

    Hi,
    Find the T.code VF05. You will get the list of open billing docs. Its SIS report. Please find whether the SIS is active or not in your system
    Regards,

  • Reporting Issue   "Opening Balance values are going to Not Assigned Values"

    Hi Friends,
    Closing Balance values are perfectly showing but opening balance values are going to Not Assingned Values? I am not able to find it out.
    our query is built on PCA Daily Multiprovider.
    Pls Help.
    Thanks
    Asim

    Hi Ravish,
    Here are the details
    Stock values and quantities in the PCA cube of BW never show correctly at an article level due to an opening balance issue.  This reduces our ability to report on stocks at moving average price, i.e. anything that actually matches the financial values in the system. The issue arises because stock at the beginning of the year (quantity and value) for any site is only shown against an article of "Not assigned."  Stock movements during the year are shown against the appropriate article.(If you have a new site, the will have stock assigned against an article up until 31 December and then the 31 December values are shown against "not assigned" for the next year).
    Thanks
    Asim

  • Print link on report shows 'no data found' when LOV has not been used

    Hi all,
    I have a simple standard report that queries data based on the value in a Select List. This Select List allows users to pick a year for the report. The LOV has a default of TO_CHAR(SYSDATE,'YYYY').
    If I open the page using the associated Tab everything wotks OK. However, if I open the page via a button on my home page, the prink links fails:
    The page opens OK, the select list defaults OK and the report shows the correct data. However, if I click on the 'Download as CSV' or 'Print' links I get 'no data found'.
    If I update the LOV to 2010 everything works. If I set it back to 2009 evenrything works. I just cant get it to work when I open the page.
    I have tried adding computations to get this to work, but this does not seem to help.
    Any ideas?
    Thanks,
    Martin

    Hi,
    It would depend on what has been added, if anything, to the redirect. The redirect should just function as though you had typed in a URL into the address bar and pressed Enter. The page doesn't get submitted, so any data entered onto the page itself is, unless it is already in session, lost. A button, however, should submit the page and Apex will store all values in the session. So, if the value you need for the LOV is from the previous page, then this is the preferred method - but, note, that the redirect can also store values provided the page item name and the value is included in the redirect's URL string
    Andy

  • SD report on sales which have been delivered but not yet billed

    Dear all,
    Do we have any SAP SD standard report showing a total of the value (preferably by sales office) of sales which have been delivered but not yet billed.
    Client has a legacy system which shows report showed up goods which have been PGI'd/delivered but not invoiced - this is exactly what what is required in SAP report.
    Thank you in advance,
    Sastry

    Sastry,
    I have used this report "Sales office Analysis- Invoiced Sales - MC-E"
    I found something on this forum i.e
    VL06F - general delivery list / List of outbound deliveries,
    VL06T - outbound deliveries for transportation planning
    I dont know if it is useful in any way.
    Sridhar.

Maybe you are looking for

  • Flash animation preview is all white

    I'm using Flash CC on a windows computer. My document is an HTML5 canvas. I have my animation all finished, with the exception of the Actions for the button. I have tested the animation before adding any Actions and it shows up in the browser fine (I

  • Wrong Font in Spry Menu DW CS3

    Hi, I just got CS3 Design Premium and am playing with the Spry Menu widget in DW. So far it's been pretty cool and fairly easy to customize. But I'm having an issue. In DW, my menu fonts display as a Verdana sans-serif but when uploaded to the server

  • Debian jdk 1.5  Exception in thread "main" java.lang.NoClassDefFoundError:

    Hi people! My problem is that I"ve installed jdk 1.5 on Debian (without problems) and I want to run my java program. I get Exception in thread "main" java.lang.NoClassDefFoundError: /home/me/GermanAnnotations/build/classes/GermanAnnotations although

  • Changing Color Of Console Cursor

    I've searched for about five hours trying to uncover the method of changing the color of the console cursor in Linux. Specifically I'm not trying to change the color of the cursor in terminals, I know how to do that, but I don't know how change them

  • Can't set sound clip as message tone

    I have an N73 and i noticed that i cant use any of my sound clips as my message tone. I can for ring tone and i also notice my friends N73 allows her to do it but i dont have that option any ideas??