User Vs Open PO's

Hi All
Our's is extended classic scenario,
Is there any table avail to get all the Open PO's for a user. Or is there any way to get these details from EBP
Thanks in advance,
Regards,
Krish

Hi,
Check ME2N transaction for the same.
click on dynamic selection ( Shift +F4) >>> drop down  Purchasing document header >>> select Created by field and enter User ID for which you want to see POs created.
Regards,
Shailesh

Similar Messages

  • PC users cannot open my Pages-exported PDF documents

    Has anyone encountered this? When I want to give someone a PDF, I need to export it from Pages, choose "Open with Adobe Reader," and then re-save from Reader as a different name. (If I just export from Pages, some PC users cannot open it.) When I look at the file information for these two supposed PDFs, the one that's only exported from Pages says "Portable Document Format (PDF)" and the one opened and resaved with Reader says "Adobe PDF Document." What's going on here? Is there a reason my PC friends can't open a Pages-generated PDF?

    Thanks for the suggestions. Funny, when I changed the "Open With" selection inside the "File Info" box to tell it to use Reader, it it still tells me in the "General" information section that it's a "Portable Document Format (PDF)", but it does replace the "Preview" icon in the upper left with the Adobe logo. Only the version that I physically opened with Reader and re-saved lists the "Kind" of document as an "Adobe PDF Document". Wacky.
    Regarding the extension, when I exported from Pages, the "Hide Extension" box was unchecked in the "Save" window, yet the file's PDF extension is in fact hidden (and the "File Info" box also says it's hidden). What's up with that? Grr.
    Seems like a small bug--now I just have to get some PC-using friends to let me know which ones they can open! Thanks for your (tres rapide) help guys!

  • How do I save PSD files created in windows so MAC users can open and work

    I have been designing photoshop files for sale to photographers online and all of my work has been created in a windows 7 system. I had a photographer contact me saying that the PSD was trouble to open and that the fonts would not work on his MAC computer.
    Can someone supply me with information on creating/saving windows PSD files so that a MAC user can open them and also use the fonts I supply with the files.
    The files I create are multilayered PSD's and contain fonts for windows PC use and I don't want to exclude MAC users from utilizing my work.
    Any help appriciated.
    Bqwhitten

    Just save.  There is no difference in files between platforms.
    There are some Windows-centric font formats that aren't portable, by any OpenType or TrueType font will be portable between platforms.

  • How do I prevent a user from opening multiple instances on the same computer?

    On the site oldnavyweekly.com there is a .swf that prevents users from opening multiple instances of the site at the same time on the same computer. If you open the site, and try to open it a second time in another window, it won't load. You can't open the site again until the first window is closed. How did they implement this?
    From my analysis it is NOT:
    1. Cookies - The block still takes place if you try opening it in IE and also try opening it in Firefox simultaneously.
    2. Flash Cookies - The block still takes place if I disable flash cookies.
    3. IP Based Block - You are not blocked if you open the site on two separate computers with the same outbound IP address. From my analysis, their server does not assist in the block at all.
    It seems as if their .swf is creating some kind of global system-wide object that can be detected in other instances of the application on the same machine. How did they implement this?
    Thanks!

    you're welcome.
    actually, unless you take an extra step, the first opened swf will close.  if you want the 2nd to close, the initial receiving lc will send a message to sender that causes the sender to close.

  • How multiple users can open and update it same time in Sharepoint 2010, excel file

    we are using SharePoint 2010, multiple users can open and update the file at same time in SharePoint, I have searched a lot and
    read it, some suggestions were can create the file as share work book and then save on Share point and other were its supported only with Office web Apps, Excel Web App, we don't have office Web apps or excel web app, is there any other suggestion,
    any help will be great, thanks in advance

    Hi,
    You need office web apps for co-authoring, see Software version requirements for co-authoring in SharePoint 2013 and SharePoint Online section in below link -
    http://technet.microsoft.com/en-us/library/ff718249(v=office.15).aspx
    and
    http://office.microsoft.com/en-us/sharepoint-foundation-help/document-collaboration-and-co-authoring-HA102772333.aspx
    Edit: Link for SP 2010
    http://technet.microsoft.com/en-us/library/ff718249(v=office.14).aspx
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

  • Access 2010 checking if a user has opened a zipped rather than expanded database

    Is there a property or method that can be used to detect/ check if a user has opened a zipped copy of a database?
    I distribute a zipped copy of a database and expect users to extract it before using it but some times a user simply opens the zipped copy and later encounters problems. I would like to display a message notifying the user that they must first expand the
    zipped file before opening the database.
    phil kelly

    Maybe this will help.
    Option Compare Database
    Option Explicit
    'See MSDN for more constants: http://msdn2.microsoft.com/en-us/library/ms839432.aspx
    Const CSIDL_APPDATA = &H16
    Const CSIDL_DESKTOP = &H0
    Const CSIDL_PROGRAMS = &H2
    Const CSIDL_CONTROLS = &H3
    Const CSIDL_PRINTERS = &H4
    Const CSIDL_PERSONAL = &H5
    Const CSIDL_FAVORITES = &H6
    Const CSIDL_STARTUP = &H7
    Const CSIDL_RECENT = &H8
    Const CSIDL_SENDTO = &H9
    Const CSIDL_BITBUCKET = &HA
    Const CSIDL_STARTMENU = &HB
    Const CSIDL_DESKTOPDIRECTORY = &H10
    Const CSIDL_DRIVES = &H11
    Const CSIDL_NETWORK = &H12
    Const CSIDL_NETHOOD = &H13
    Const CSIDL_FONTS = &H14
    Const CSIDL_TEMPLATES = &H15
    Const MAX_PATH = 260
    Private Type SHITEMID
    cb As Long
    abID As Byte
    End Type
    Private Type ITEMIDLIST
    mkid As SHITEMID
    End Type
    Private Declare Function SHGetSpecialFolderLocation Lib "shell32.dll" (ByVal hwndOwner As Long, ByVal nFolder As Long, pidl As ITEMIDLIST) As Long
    Private Declare Function SHGetPathFromIDList Lib "shell32.dll" Alias "SHGetPathFromIDListA" (ByVal pidl As Long, ByVal pszPath As String) As Long
    Public Function GetProgramFilesFolder() As String
    Const PROGRAM_FILES = &H26&
    Dim objShell As Object
    Dim objFolder As Object
    Dim objFolderItem As Object
    Set objShell = CreateObject("Shell.Application")
    Set objFolder = objShell.Namespace(PROGRAM_FILES)
    Set objFolderItem = objFolder.Self
    Debug.Print objFolderItem.Path
    End Function
    Private Function GetSpecialfolder(CSIDL As Long) As String
    Dim r As Long
    Dim IDL As ITEMIDLIST
    Dim sPath As String
    'Get the special folder
    r = SHGetSpecialFolderLocation(100, CSIDL, IDL)
    If r = 0 Then
    'Create a buffer
    sPath$ = Space$(512)
    'Get the sPath from the IDList
    r = SHGetPathFromIDList(ByVal IDL.mkid.cb, ByVal sPath$)
    'Remove the unnecessary chr$(0)'s
    GetSpecialfolder = Left$(sPath, InStr(sPath, Chr$(0)) - 1)
    Exit Function
    End If
    GetSpecialfolder = ""
    End Function
    Public Sub PrintSpecFolderPaths()
    'KPD-Team 1998
    'URL: http://www.allapi.net/
    'E-Mail: [email protected]
    'Print the folders to the form
    Debug.Print "Start menu folder: " & GetSpecialfolder(CSIDL_STARTMENU)
    Debug.Print "Favorites folder: " & GetSpecialfolder(CSIDL_FAVORITES)
    Debug.Print "Programs folder: " & GetSpecialfolder(CSIDL_PROGRAMS)
    Debug.Print "Desktop folder: " & GetSpecialfolder(CSIDL_DESKTOP)
    Debug.Print "My Docs folder: " & GetSpecialfolder(CSIDL_PERSONAL)
    End Sub
    Bill Mosca
    www.thatlldoit.com
    http://tech.groups.yahoo.com/group/MS_Access_Professionals

  • Prevent Mac users from opening a PDF form in Preview

    When I create an AcroForm, it does not behave the same when someone fills it out in Preview, and when I receive the completed form back from them, some of the information in the form fields is missing.
    Is there a way to prevent Mac users from opening the form in Preview? Or to give them a message that the form needs to be filled out using Reader?

    You can't stop them doing it (except by standing next to their computer with a heavy stick).
    You could consider having a large field on the page warning that the file is not to be used (or whatever), which is hidden using Acrobat JavaScript.
    Be aware that we are now dealing with a very large set of PDF readers.
    Included with computers: Mac OS Preview, Windows Reader.
    Included with browsers: Chrome, Firefox.
    Included with portable devices.
    Anyone who gets a computer these days in fact gets a PDF viewer which is bad with forms. You need to give them a compelling reason to download extra software. (Or, frankly, give up on PDF forms. I think their day has passed for a general audience who could fill in a browser form).

  • Upgraded Exchange to CU 7, now users cannot open emails in a separate window in webmail (OWA).

    Hello,
    Strange issue. I upgraded our Exchange 2013 to CU 7 and now users are reporting they cannot open emails in a separate window in OWA. Regardless of browser, browser version even regardless of another computer or mac. Chrome, Firefox, IE, Safari...same
    issue regardless of version numbers also.
    I've tested these settings on several laptops and I cannot open emails in a separate window. This happened a day after the upgrade. Previously this was working for all users. Now its hit or miss. Not all users are affected however. My mailbox/account is
    also a victim so I can test any theories out.
    Any suggestions would help and be appreciated.
    Thanks,

    Hi,
    Please check if there is any error message when these affected users try to open mail in a new window.
    Please check if these users can open messages in Outlook. This can help us to narrow the issue.
    And please check the aplication log in Exchange server to see if there is events related to this problem, which can help us to troubleshoot the issue.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Belinda Ma
    TechNet Community Support

  • Cant open same excel file when it is already open by another user (cant open read only)

    We have been having an issue for a while now where if a user has an network saved
    excel document open, another user cannot open it at all. We get the error
    "Sorry we couldn't find your file. Is it possible it was moved, renamed or deleted?"
    and/or simple "Could not Open _____" errors when this happens. We should certainly be able to open a read only copy at the least but office doesn't even give an option to do so. We are using office '07 Pro Plus. Thanks.

    We have been having an issue for a while now where if a user has an network saved
    excel document open, another user cannot open it at all. We get the error
    "Sorry we couldn't find your file. Is it possible it was moved, renamed or deleted?"
    and/or simple "Could not Open _____" errors when this happens. We should certainly be able to open a read only copy at the least but office doesn't even give an option to do so. We are using office '07 Pro Plus. Thanks.
    I'm facing the same issue.  Started only when my machine was upgraded from XP Pro to Win 7 Ent. Office 2010 is the version.  Hoping someone as a answer.
    Thanks.

  • Forcing end user to open the child form in the resource request dataset

    Hi,
    Is there any way where we can force end user to open the child form of a resource request dataset and enter the values for the attributes in the child form. The child form attribute is mandatory. However, currently, OIM allows user to submit the request without opening the child form and to enter values for child form attributes(which is mandatory).
    Thanks.

    Child dataset attributes are set to required="true". But it will come into picture only if end user opens the child form. If he forgets to open the child form, still he is able to submit request without entering values to the attibutes(whose required=true) in the child form. OIM is alowing to submit request if he doesn't open the child form.
    I hope i was able to put it in corrrect way.
    Thanks.

  • How To Overcome When User Incorrectly Opened The First Inventory Accounting Period As Next Month

    Hi,
    User has opened the wrong first inventory account period. Instead of Aug-14, next period Sep-14 has been opened. There are transactions which need to be posted in Aug-14. How can I rectify this?
    During my search in oracle support, I found below information but the note is not accessible.
    "Internal Note 400900.1 How To Overcome When User Incorrectly Opened The First Inventory Accounting Period As Next Month"
    Regards,
    Ahmed

    Hi ,
    Try This Way...
       If you want to use the uesr exit in two places...
          If area = xyz
           variable1
         else
             variable2.
    same function module you can use in different places...
    If still not clear send me the full details where you want to use then i can send it to you with sample code.
    Thanks..
    Siri N

  • How can i restrict a user not open more than 3 sessions in database

    how can i restrict a user not open more than 3 sessions in database.For this i have already create a profile and set CONCURRENT_SESSIONS=3 and assing that profile to user but the problem is there.

    You will simply need to use the following parameter in your CREATE PROFILE syntax.
    CREATE PROFILE normal_user
    LIMIT SESSIONS_PER_USER 2;
    but the resource limits set for a profile are enforced only when you enable resource limitation for the associated database.
    you could do this either by having an initialization paramater which will invoke as soon as the database starts or try using ALTER SYSTEM command

  • Some Users cannot Open Workflow Approval Task

    We have a SPD workflow published to our production site and it includes a 'Start Approval Process' task which involves a number of users (determined by a lookup to another list) this worked brilliantly until we republished the workflow with some minor changes,
    none of which were to this particular approval task. Now we are seeing some strange behaviours. When some users click the task to approve they are seeing 'This from cannot be opened in a browser, To open this form use Microsoft Infopath'. Now strangely it's
    only certain users, if you're a site collection admin you never have this error. So if a user previously had the error and i then add them to the site collection administrators list the error goes away and they can complete the task.
    Obviously not a solution! giving users full control permissions on the task list or task item doesnt fix the error either. The same workflow on our UAT works without any issues. The task forms in SPD have not been customised either. Its a SP2010 Standard
    farm with no infopath services obviously. Bizarrely there are some users with only Contribute rights to the task list who can open approve tasks, so it's looking like a permissions issue to me but I'm at a loss to find a fix. I've tried totally removing
    the worklows and republishing, regenerating the .xsn task forms in SPD by deleting them and republishing, removing and re-adding the task related content types to site, Changing the Approval Task settings 'only allow users to edit their tasks...' to false
    and then back to true, the works, but to no avail.
    Anybody any ideas?
    TIA
    Chris

    Hi,
    According to your post, my understanding is that Some Users cannot Open Workflow Approval Task.
    I recommend that you can create a new list and workflow to check whether it works.
    Then use the user who get the error to open task.
    If he can open the task in the brower, the issue is related to the older list.
    Then you can use the new created list and assgin the task.
    Here is a similar thread for your reference:
    https://social.msdn.microsoft.com/Forums/en-US/67dc8577-f248-4d6c-bb82-3aca0f084d24/this-form-cannot-be-opened-in-a-web-browser-error-not-an-infopath-form?forum=sharepointcustomizationprevious
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Use DB Connectivity tool, can I know the database is open by another user without opening it?

    hi all,
    A urgent issue here, is it possible for me to know whether the database is being used by the other user without opening a databse using Databae Connectivity Tool?
    Can anyone know the solution?

    Duplicate post: http://forums.ni.com/ni/board/message?board.id=170&message.id=511732

  • Force all Users to open Access with same definitions

    Hi Guys,
    I am having some difficulties to find how can I force all my users to open the Microsoft Access 2010 with:
    Open Method Shared and Encryption Method Use Legacy Encryption
    File/Option/Client Settings/Advanced
    Any Ideas?
    Thanks in advance

    Sorry for the delay in response I've been very busy.
    What I am saying id that you need top start by splitting the database. The easy way is using the Wizard but you can manually process this by creating a blank database and importing everything into it except the Tables.
    Once you have only Tables in the one File and the Logic and Objects other than Tables in the other File. Then rename the one with only Tables to include _BE. for instance "MyDataBase_BE.accdb" Then name the FE
    "MyDataBase.accdb".
    Next open the FE and Save As an .accde File. This will make a copy of the FE and lock the project so the code cannot be changed. Give everyone a copy of the .accde file and they cannot make changes to it.
    As far as specifying
    File/Option/Client Settings/Advanced
    Open Method:
    Shared
    Encryption Method:
    Use Legacy Encryption…"
    Do this before you make the .accde version for distribution.
    Maintain your .accdb copy for future changes that may be needed. Then you will need to redistribute the FE after new changes are saved.
    Just takes a click to give thanks for a helpful post or answer.
    Please vote “Helpful” or Mark as “Answer” as appropriate.
    Chris Ward
    Microsoft Community Contributor 2012

  • Re: (forte-users) workspace-open [Virus checked by NAINetshield]

    ---------------------- Forwarded by Richard Stobart/ExternalUser/GB/WCG on
    02/05/2000 13:51 ---------------------------
    From: Richard Stobart Willis
    2 May 2000 13:49 GDT
    To: "Aissa Amazzal" <aamazzalaxialog.fr>
    cc:
    bcc:
    Subject: Re: (forte-users) workspace-open [Virus checked by NAI Netshield]
    (Document link: Database 'Richard Stobart', View '($Sent)')
    Aissa,
    Run fscript distributed and do an unlockworkspace.
    fscript > help unlockworkspace
    UnlockWorkspace <workspaceName> [<workspacePassword>]
    Force an unlocking of 'workspaceName'. This will release the repository
    locks associated with the specified workspace. Use this command ONLY if
    the workspace is not in use, and some unusual error condition has left the
    repository server in a bad state.
    Regards
    Richard
    "Aissa Amazzal" <aamazzalaxialog.fr> on 02/05/2000 13:45:36
    To: forte-userslists.xpedior.com
    cc:
    bcc: Richard Stobart/ExternalUser/GB/WCG
    Subject: (forte-users) workspace-open [Virus checked by NAI Netshield]
    Hi;
    I work on my workspace and there is sudenly a rupture of courant. After, I
    can't open my workspace.I must shutdown the server before working. Is there
    another solution ?
    Thanks

    ---------------------- Forwarded by Richard Stobart/ExternalUser/GB/WCG on
    02/05/2000 13:51 ---------------------------
    From: Richard Stobart Willis
    2 May 2000 13:49 GDT
    To: "Aissa Amazzal" <aamazzalaxialog.fr>
    cc:
    bcc:
    Subject: Re: (forte-users) workspace-open [Virus checked by NAI Netshield]
    (Document link: Database 'Richard Stobart', View '($Sent)')
    Aissa,
    Run fscript distributed and do an unlockworkspace.
    fscript > help unlockworkspace
    UnlockWorkspace <workspaceName> [<workspacePassword>]
    Force an unlocking of 'workspaceName'. This will release the repository
    locks associated with the specified workspace. Use this command ONLY if
    the workspace is not in use, and some unusual error condition has left the
    repository server in a bad state.
    Regards
    Richard
    "Aissa Amazzal" <aamazzalaxialog.fr> on 02/05/2000 13:45:36
    To: forte-userslists.xpedior.com
    cc:
    bcc: Richard Stobart/ExternalUser/GB/WCG
    Subject: (forte-users) workspace-open [Virus checked by NAI Netshield]
    Hi;
    I work on my workspace and there is sudenly a rupture of courant. After, I
    can't open my workspace.I must shutdown the server before working. Is there
    another solution ?
    Thanks

Maybe you are looking for