"Supplier list" in PO and "Invitation List" in Sourcing

Hi,
Is it possible to use "Supplier list" in PO as "Invitation List" in Sourcing ?
Regards.

Hi,
Supplier List and Invitation List are entirely different even though they use same suppliers.
Supplier List cannot be used as Invitation List in Oracle Sourcing.
Thanks
-Arif.

Similar Messages

  • Request help to display a list with parent and child list item.

    I created a static list with items A,B,C and a child item A1 under parent A. I chose the template "vertical Side bar list". I am using theme 10 (sand) for my application. I created page 0 and am displaying the list on page template region position2. I am able to see the side bar with options A,B,C. But am not able to see the child option A1 when I click on Option A. I tried using 'DHTML MENU WITH SUB LIST' but When I click on option A, the child entry A1 is showing over the B and C options. I know this might be a pretty basic functionality. I am new to APEX and am just learning. I appreciate any help you give me.

    Mr.Backstrom,
    I have changed the list template overide to dhtml Tree. And now the list is being displayed as vertical unordered list with bullets. Is it possible to take off the bullets? Thank you for your time.
    Suma.

  • Need To Get Folder and Subfolders List

    Hi All
    I have a requirement which will give me the list of folder and subfolders list for a given path. I can achieve this using xp_cmdshell.
    But it is admin level usage. So i need to get with the use SP_OAMethod using file system object.
    Please help me to do the same.

    Hello Amarnath, Finally i have the code that you are looking for. 
    SELECT * FROM dbo.dir('c:\testfolder') WHERE IsFolder =1
    --------------- USER DEFINE FUNCTION
    CREATE FUNCTION [dbo].[Dir](@Wildcard VARCHAR(8000))
    RETURNS @MyDir TABLE
    -- columns returned by the function
    [name] VARCHAR(2000), --the name of the filesystem object
    [path] VARCHAR(2000), --Contains the item's full path and name.
    [ModifyDate] DATETIME, --the time it was last modified
    [IsFileSystem] INT, --1 if it is part of the file system
    [IsFolder] INT, --1 if it is a folsdder otherwise 0
    [error] VARCHAR(2000) --if an error occured, gives the error otherwise null
    AS
    -- body of the function
    BEGIN
    DECLARE
    --all the objects used
    @objShellApplication INT,
    @objFolder INT,
    @objItem INT,
    @objErrorObject INT,
    @objFolderItems INT,
    --potential error message shows where error occurred.
    @strErrorMessage VARCHAR(1000),
    --command sent to OLE automation
    @Command VARCHAR(1000),
    @hr INT, --OLE result (0 if OK)
    @count INT,@ii INT,
    @name VARCHAR(2000),--the name of the current item
    @path VARCHAR(2000),--the path of the current item
    @ModifyDate DATETIME,--the date the current item last modified
    @IsFileSystem INT, --1 if the current item is part of the file system
    @IsFolder INT --1 if the current item is a file
    IF LEN(COALESCE(@Wildcard,''))<2
    RETURN
    SELECT @strErrorMessage = 'opening the Shell Application Object'
    EXECUTE @hr = sp_OACreate 'Shell.Application',
    @objShellApplication OUT
    --now we get the folder.
    IF @HR = 0
    SELECT @objErrorObject = @objShellApplication,
    @strErrorMessage = 'Getting Folder"' + @wildcard + '"',
    @command = 'NameSpace("'+@wildcard+'")'
    IF @HR = 0
    EXECUTE @hr = sp_OAMethod @objShellApplication, @command,
    @objFolder OUT
    IF @objFolder IS NULL RETURN --nothing there. Sod the error message
    --and then the number of objects in the folder
    SELECT @objErrorObject = @objFolder,
    @strErrorMessage = 'Getting count of Folder items in "' + @wildcard + '"',
    @command = 'Items.Count'
    IF @HR = 0
    EXECUTE @hr = sp_OAMethod @objfolder, @command,
    @count OUT
    IF @HR = 0 --now get the FolderItems collection
    SELECT @objErrorObject = @objFolder,
    @strErrorMessage = ' getting folderitems',
    @command='items()'
    IF @HR = 0
    EXECUTE @hr = sp_OAMethod @objFolder,
    @command, @objFolderItems OUTPUT
    SELECT @ii = 0
    WHILE @hr = 0 AND @ii< @count --iterate through the FolderItems collection
    BEGIN
    IF @HR = 0
    SELECT @objErrorObject = @objFolderItems,
    @strErrorMessage = ' getting folder item '
    + CAST(@ii AS VARCHAR(5)),
    @command='item(' + CAST(@ii AS VARCHAR(5))+')'
    --@Command='GetDetailsOf('+ cast(@ii as varchar(5))+',1)'
    IF @HR = 0
    EXECUTE @hr = sp_OAMethod @objFolderItems,
    @command, @objItem OUTPUT
    IF @HR = 0
    SELECT @objErrorObject = @objItem,
    @strErrorMessage = ' getting folder item properties'
    + CAST(@ii AS VARCHAR(5))
    IF @HR = 0
    EXECUTE @hr = sp_OAMethod @objItem,
    'path', @path OUTPUT
    IF @HR = 0
    EXECUTE @hr = sp_OAMethod @objItem,
    'name', @name OUTPUT
    IF @HR = 0
    EXECUTE @hr = sp_OAMethod @objItem,
    'ModifyDate', @ModifyDate OUTPUT
    IF @HR = 0
    EXECUTE @hr = sp_OAMethod @objItem,
    'IsFileSystem', @IsFileSystem OUTPUT
    IF @HR = 0
    EXECUTE @hr = sp_OAMethod @objItem,
    'IsFolder', @IsFolder OUTPUT
    --and insert the properties into a table
    INSERT INTO @MyDir ([NAME], [path], ModifyDate, IsFileSystem, IsFolder)
    SELECT @NAME, @path, @ModifyDate, @IsFileSystem, @IsFolder
    IF @HR = 0 EXECUTE sp_OADestroy @objItem
    SELECT @ii=@ii+1
    END
    IF @hr <> 0
    BEGIN
    DECLARE @Source VARCHAR(255),
    @Description VARCHAR(255),
    @Helpfile VARCHAR(255),
    @HelpID INT
    EXECUTE sp_OAGetErrorInfo @objErrorObject, @source OUTPUT,
    @Description OUTPUT, @Helpfile OUTPUT, @HelpID OUTPUT
    SELECT @strErrorMessage = 'Error whilst '
    + COALESCE(@strErrorMessage, 'doing something') + ', '
    + COALESCE(@Description, '')
    INSERT INTO @MyDir(error) SELECT LEFT(@strErrorMessage,2000)
    END
    EXECUTE sp_OADestroy @objFolder
    EXECUTE sp_OADestroy @objShellApplication
    RETURN
    END---- OUTPUT
    Regards, RSingh

  • Responsiblities  and the list of users under each responsiblity

    HI,
    Am on 11.5.10.2 CU2
    RDBMS 9.2.0.6
    I need the list of Responsiblities and the list of users under each responsiblity. Can anybody please help me ..
    Thanks

    Hi user;
    Please check below thread
    to find any users assigned to a responsibilty *<< Posted By Hussein Sawwan*
    to find any users assigned to a responsibilty
    Regard
    Helios

  • Pick list release date and picked date

    Hello, I need to prepare a query where I need to select the b1 pick list release date and pick list picked date.
    Does b1 store these pick list dates somewhere in the system?
    Thanks

    I don't think that the APKL or the ADOC store the the release date. And I also have seen that the pick date is not changed after the user picked the goods and update the pick list. I keep seen the pick date in the OPKL = to the create date in the OPKL. And the update date we can't really relly on it because after picking the goods some days after the user can update for example a UDF and then save the pick list and this field is updated again...
    Any ideas?

  • Access Denied Error while accessing "Site Settings Access requests and invitations"

    Hi,
    I am getting Access Denied Error while accessing "Site Settings > Access requests and invitations" in SharePoint  2013 online. Currently I am the owner of the site and have "FULL CONTROL" access. I am able to access using
    site collection account. So, what permission I have to give my regular account to access this page?
    Thanks, Pal

    Hello,
    Have you recently changed the Owners group of the site collection or removed the user from the original owners group? 
    The reason I am asking is when the Access requests and invitations list are created, the permissions are given only to the default owners group at the time that the Access Request list was created.  If this "regular account" is not part of that owners
    group, the user will receive access denied.  Site Collection Admins always have permissions for the Access Request List.
    A workaround for the Access Denied issue is listed in the KB article http://support.microsoft.com/kb/2911390/en-us.  By giving the correct group or user the permissions to this list, the users will not receive
    the Access Denied issue anymore.  
    Preferably, in order to grant the user the full permissions ( you will see features like resending invitations may still fail after implementing the above workaround) there is one other workaround that may be required depending on what the original issue
    was.  Below are additional steps to restore full functionality.
    1)Access the /_layouts/15/permsetup.aspx of the site collection, make sure the default Owners Group
    is set correctly.  (There is a group selected)
    2) Add user to that Owners Group.  (Issue may be resolved at this step if the site collection Owners
    Group was never changed, if not continue to next step.)
    3) Implement workaround on http://support.microsoft.com/kb/2911390/en-us, by adding that owners
    group as Full control on Access Request list Permissions.
    Let me know how this works out for you.
    - Shpendi Jashari

  • Continue to receive error 1604 and can't use the recover function - help!  I have gone through all the steps listed in support and nothing has worked.  I am using a usb port I tested with my printer cable and it's fine.

    I wanted to update my software this morning and it has turned into a nightmare.  I continue to receive the error 1604, which is related to a usb port.  I followed all the steps listed in support and nothing has helped.  I just plugged in my printer cable to the usb port and it works fine, yet I continue to receive this error and can't use my phone!

    A printer does not require power, and does not transfer large amounts of data. So that is not a valid test. It's like saying "if I plug a nightlight into an outlet it works fine, so why do 2 hair dryers on at the same time trip a circuit breaker?"
    Are you using a port directly on the computer, and not a hub? If it's not a laptop and it has ports on front and back are you using a back port, which can supply more power?
    Have you EVER used this computer to hack or jailbreak ANY iPhone (not necessarily the one with the problem? Or used a program to downgrade the version of iOS on any phone?

  • How to Submit Directory List on Dmoz and Yahoo

    Hello Friends
    I want to submit business directory of my company on Dmoz-directory. Share the best suggestions to post directory list on Dmzo and  
    yahoo directory 

    Go to your Utilities folder and open DirectoryAccess. You may have to click the padlock and authenticate as an administrator. Next Click on LDAPv3 and click the Configure button. If the add DHCP supplied... box is checked, uncheck it. Click OK and you're done. If not, you may have to click the triangle next to Show Options to view the configuration. Once the configureation is displayed, click on it then click the delete button. You may have to authenticate again, and you may need a network admin password to do so. That should do it.
    hth
    Jeff

  • Pick list and pull list

    Dear all
    1.Can any one explain the difference between Pick list(CO27)  and  Pull list(MF60) with a simple example.In which scenario we go for this pick and pull list
    2.What is Production storage location for components and finished product.How it is different from genereal storage location

    Hi,
    PIck List:
    Pick List is a document by which you carry out Goods Issue for the required materials from Storage location by Production order wise , material wise etc.By pick list you generate reservation for the particular materials and then issue them against that reservation for shop floor manufacturing.
    You can print the list, assemble the requested materials from the storage location accordingly, and post the goods issue via the pick list.
    Pull List
    Purpose
    The pull list controls the in-house flow of material for supplying production with materials. The system assumes that the components required for production have already been produced in-house or procured externally and are now available to be transferred from their current storage location or bin to the production storage location.
    The pull list checks the stock situation at the production storage location and calculates the quantities of missing parts. Replenishment elements can be created for these missing parts. Components can be staged via direct stock transfer or using stock transfer reservations. Replenishment can also be triggered by setting a kanban to u2018emptyu2019 or creating transfer requirements in Warehouse Management.
    Integration
    The pull list is an integral part of repetitive manufacturing and shop floor control.
    The basis of replenishment planning is MRP - the component requirements are calculated in the MRP run. The system takes requirements from run schedule quantities, production order reservations and manual reservations into account.
    Depending on the environment, replenishment can consist either of direct stock transfer, stock transfer reservations, kanbans or transfer requirements, which are then processed in the appropriate module.
    Features
    You can access the pull list by material to be produced (that is, by assembly), by component, production line or MRP controller, amongst others.
    The pull list calculates the missing parts by checking which requirements fall within a certain period of time, which stocks are available in the production storage location, and which replenishment quantities have already been initiated via the pull list.
    You can also use the pull list to create replenishment elements for the missing parts. The system first creates a replenishment proposal for the missing parts. The system can post this proposal as a replenishment element (stock transfer reservation, kanban or WM), or carry out a direct stock transfer.
    Constraints
    It is not the primary task of the pull list to determine the location of the required components. The only exception is in the direct stock transfer procedure where you have to enter a replenishment storage location or the system has to determine a replenishment storage location via stock determination.
    The pull list is primarily responsible for planning material staging (calculating missing parts and initiating replenishment) by creating a work list in the form of replenishment elements. The actual staging is carried out by a warehouse clerk, for example, and is supported by transactions which are carried out subsequently, based on the replenishment elements.
    Issue Storage Location
    In the case of a material produced in-house, this is the key of the storage location that is copied to the planned order, production order, or run schedule quantity.
    If the material is a component, it is the issuing storage location to which a backflush is posted.
    If the material is produced, it is the receiving storage location to which the receipt of the material is posted.
    Procedure
    You specify the receiving storage location for repetitive manufacturing in the production version for the material master record.
    Hope this helps.
    Edited by: surendra patil on Dec 29, 2008 1:22 PM

  • How to find out list of procedures and functions inside a package

    How I can find out the list of Procedures and Functions inside a Package.

    Look at ALL_PROCEDURES and ALL_ARGUMENTS.

  • How to find out list of users and their access on Sharepoint

    Hello Everyone
    How can i find out list of users and what access they have on SharePoint site? I want to create table with list of the users and their access?
    Thanks

    you can get the report using below powershell scripts. first one gives list of users in a site collection level.
    The second link generates the permissions reports for each user.
    http://techtrainingnotes.blogspot.com/2010/12/sharepoint-powershell-script-to-list.html
    https://sp2010userperm.codeplex.com/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Data View Web Part - List of Subsites and Document Libraries under Current Site - Must be able to Package as Site Template in SPDesigner

    Hi Guys,
    On the home page of each sub site I would like to be able to show a list of subsites and Document libraries that are under the current subsite.
    I started investigating a solution using Datasources with SOAP requests sent to the server but it is very difficult to understand how to surface it on the Data View WebPart.
    I have tried with the search results webpart but the problem is that it does not work well when packaged in a Site Template.
    Please advise.
    Thanks and Regards,
    Rhyan

    Ok,
    Here is the problem:
    When creating a mysite from powershell or script, apparently you can ONLY do this from a wfe (or a server running Microsoft SharePoint Foundation Web Application in services on server).
    You CANNOT create mysites from script on your appserver if it is not also a Web Application Server. I confirmed the same is true in my test farm. I guess I was always running most of these scripts on the webserver.
    I searched all over and cannot find this documented anywhere.
    Who do I contact to have Microsoft document this?
    It's Thursday morning, I've been working non stop since Saturday morning so you don't have to :)

  • What is difference between distribution list and share point group? Can we add distribution list into person and group column of share point list?

    what is difference between distribution list and share point group? Can we add distribution list into person and group column of share point list?

    there is a workaround you can try, create audience and add DL to them and deal with the audience or convert DL to groups
    https://social.technet.microsoft.com/Forums/en-US/02f0d773-8188-4d94-a448-0c04d838b0cf/distribution-lists-in-sharepoint?forum=sharepointgenerallegacy
    Kind Regards,
    John Naguib
    Technical Consultant/Architect
    MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation
    Please remember to mark your question as answered if this solves your problem

  • Plug-in for bullets and numbered lists in Mail??

    Does anyone know of any plug-ins for the Mail app to do bullets and numbered lists like Entourage??
    The lack of this functionality really makes Mail kinda lame and unusable for me.
    Thanks!

    Paul,
    the fact that Mail does not support bullit lists is not an oversight but was done on purpose. It may look good on your computer when you compose the message, but you have little influence in the way recipients see that message. It can get very messy, I can assure you.
    If you want a perfect layout, compose in a wordprocessor and save as PDF, send that as an attachment.

  • When logging in into yahoo mail after typing in password Firefox is adding something, login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    When logging in into yahoo mail after typing in password Firefox is adding something, probably remembered password and login fails all the time. At yahoo mail Notepad does not work because it is impossible to close the list of items and they cover information, so I have to go to IE.

    Only when i go to a different browser (like IE) after i clear it , then all that shows up is the pages i visited in IE , that is what bugs me , why is IE browsing history sowing up in Firefox ??
    Basically , i can clear the history in Firefox , and then for a example , go to Craigslist , using IE7 (launching it from a complete different Icon , in other words at that time i never open Firefox) , then after closing out , or even leaving open as it does not seem to matter , i go into Firefox , and hit History , and there is every place i visited in IE7 , on my History in Firefox

Maybe you are looking for

  • How to export from Final Cut Pro after downloading Maverick

    Final Cut Pro no longer exports after installing Maverick.  I get this: The operation couldn't be completed. (com.apple.Compressor.CompressorKit.ErrorDomain error -1.)  - have paid for Compressor and instaled it - but it makes no difference.

  • Problem creating PDF file using the Adobe PDF printer

    Apologies if I have hit the wrong forum for this issue. I am using Adode Acrbat 9 PRO version 9.4.6 on a Windows 7 SP1 machine. I am running an application that presents information on web pages that I need to capture as pdf files. I am using an auto

  • Some Menus Inaccessable

    Oh please help. A few days ago I began using Premiere Pro CS4. I have had it for awhile in Master Collection but only now had a need to use it. When I first got into it it gave me the standard 'New Project' / 'Open Project' options but mostly did not

  • I just downloaded Acrobat and it won't work. Why won't it work? I keep having it quit unexpectedly when I try to launch it.

    I just downloaded Acrobat and it won't work. Why won't it work? I keep having it quit unexpectedly when I try to launch it. I've tried uninstalling and reinstalling. I've tried restarting my computer.  Any suggestions? I fit all they system requireme

  • Java won't work on proxy server!!!!

    My company has recently implemented a proxy server. After this, all websites that use java don't work anymore. I have Web Proxy and Web Secure Procy configured correctly but when I enter a Java website I'm asked for user, password and domain, and eve