Creating provider

Hello

This seems to be a combination of business policy & Oracle EBS. Our office of AP is setting out a new policy requiring the buyers to obtain registration documents local suppliers as well as the request to create a new provider. Me being from the company feels that it is not very practical since very often buyers get supplier information local directories and send preliminary quote requests even addressing a contact for this document. The PA Office is also worried and create as many suppliers to clutter up the database of the provider (but I thought that several suppliers database, the better it is). With me to have conviction of 100% the full buying cycle should be routed through Oracle, I seem to be torn between AP not wanting these documents, buyers must create online quote requests and create Oracle requiring the provider first before you send a request for QUOTE.

Would be very grateful if this forum participants can talk about your experiences and enlighten us.

Thank you!

What you ask is quite common. Almost all of the people of AP are wary of giving access to the screens of provider.

You can create a new responsibility called XX provider limited.
And use personalization to grant access to certain areas / blocks if the user is connected to this responsibility.

Hope that answers your question
Sandeep Gandhi
Independent consultant
513-325-9026.

Tags: Oracle Applications

Similar Questions

  • Problem creating provider vDC on the way vCloud 5.1 of the Evaluation Guide

    I'm folling the vCloud 5.1 Evaluation Guide.  Well, everything seems to be going, but when I try to create my first provider vDC, I have problems.  At the level of the vCD, I said just that operation exceeded all trying to install the agent on one of my two esx hosts.  Interestingly, it is the host on which I have installed the vShield Manager on.  When I dig down in the plain of vCenter, I see more specific complaints n the event logs for the hosts.

    Apparently, the host must be turned off (for the installation of the agent vCloud, I guess) and this requires a migration of DRS of the vShield Manager vm to my other host.  This migration will fail.  And here is the most relevant information of the event.

    DRS could not generate a recommendation of vMotion for a virtual machine on a host of passage in Maintenance Mode. This incident occurs usually because no other host in the cluster DRS is compatible with the virtual machine. Unless you migrate manually or turn off this virtual machine, the host will not be able to enter into Maintenance Mode.

    Sounds pretty accurate, but I have no idea what could cause problems of "compatibility" with the other guests.  As far as I know, they are the same.  I certainly meant them to be.  The store of data that the virtual machine is on is a store of data shared between two hosts, as far as I can tell.

    Troubleshooting tips would be appreciated.

    the ESXi host is not off... the host is put in maintenance mode.

    In an ideal world, you'd have vCenter/vShield in a different cluster your vCloud deployed VMs.

    To do this, you must ensure you DRS is in fully automatic mode, and vMotion actually works.

    Aside from that, if you create a provider vDC and prepare all hosts, they can all try mode of maintenance on their own.

    It is somewhat a clumsy scenario... Since you cannot move the virtual machines on a host of passage in maintenance mode.

    so, although if failed, if we lend... see if you can prepare the failed host... this time, it can work.

  • SQL authentication provider - create table script

    Hi all!
    I would use the SQL provider for my Web application authentication. I can't find the script to create tables of users/roles used by the provider.
    Can you suggest me a link where I can download?
    Thank you
    Frank

    Hi Frank,.

    Configure the SQL authenticator:

    Start Oracle XE DB and open propmt SQL to run commands below:

    CREATE TABLE USERS)
    U_NAME VARCHAR (200) NOT NULL,
    U_PASSWORD VARCHAR (50) NOT NULL,
    U_DESCRIPTION VARCHAR (1000))
    ;
    ALTER TABLE USERS
    ADD CONSTRAINT PK_USERS
    PRIMARY KEY (U_NAME)
    ;
    CREATE TABLE GROUPS)
    G_NAME VARCHAR (200) NOT NULL,
    G_DESCRIPTION VARCHAR (1000) NULL)
    ;
    ALTER TABLE GROUPS
    ADD CONSTRAINT PK_GROUPS
    PRIMARY KEY (G_NAME)
    ;
    CREATE TABLE GROUPMEMBERS)
    G_NAME VARCHAR (200) NOT NULL,
    G_MEMBER VARCHAR (200) NOT NULL)
    ;
    ALTER TABLE GROUPMEMBERS
    ADD CONSTRAINT PK_GROUPMEMS
    (PRIMARY KEY)
    G_NAME,
    G_MEMBER
    )
    ;
    ALTER TABLE GROUPMEMBERS
    ADD CONSTRAINT FK1_GROUPMEMBERS
    FOREIGN KEY (G_NAME)
    REFERENCE (G_NAME) GROUPS
    ON DELETE CASCADE

    Generally, customers can add users directly in DB with help commands below:

    insert into USERS (U_NAME, U_PASSWORD, U_DESCRIPTION) values ('system', 'weblogic', 'user admin');
    insert into GROUPS (G_NAME, G_DESCRIPTION) values ('Administrators', 'Administrators');
    insert into values('Administrators','system') GROUPMEMBERS (G_NAME, G_MEMBER);

    But in this case is not encrypted password then, either you can add users via the console or WLST script to be stored in encrypted form.

    We had performed above commands just to check that the user that is stored directly in the DB gets properly authenticated or not configured SQL authenticator as below

    Now start weblogic admin server and console access to create the data source by the navigation Services-> JDBC-> data sources

    Create the data source named SqlDS

    JNDI: SqlDS

    Type of DB: Oracle

    : DB driver Oracle Thin XA

    Name of the data base: XE

    DB host:

    Port: 1521

    DB user:

    DB password:

    Even the rest of the configuration and click test Configuration. If its success click on next and it targets to "AdminServer.

    Click Finish and activate chnages

    Now navigate to the areas of security-> myrealm-> suppliers

    Click new and supply the names of SqlAuthenticator and select Type of SQLAuthenticator

    Now click on newly created provider and make the indicator of control as "sufficient".

    Go to the specific page of provider:

    1. check on cleartext passwords enabled.

    2. provide a data name source: SqlDS

    Keep the rest of the parameters it is and save this configuration. It will ask you to restart the management server.

    Now, again navigate areas of security-myrealm-> users & groups >

    User created directly in the DB control is listed in the table with SqlAuthenticator, once its list, go ahead and add users as below

    B. Cretae users using the administration console:

    Sign in to the administration console

    Access areas of security-myrealm-> users & groups >

    Click the users tab and try to create the new user

    User name:

    Select authentication provider: SqlAuthenticator

    User password:

    Once the table DB check creating user, this user added with password encypted musted

    C. create multiple users using WLST script:

    File Navigave of $DOMAIN_HOME/bin and run the file setDomainEnv as below:

    UNIX:. ./setDomainEnv.sh (don't forget to put two points before /)

    Windows: setDomainEnv.cmd

    Now, change script depending on your environment below and run as suggested in step 3:

    Connect('weblogic','weblogic123','t3://localhost:7001')
    Edit()
    startEdit(-1,-1,'false')
    serverConfig()
    CD('/SecurityConfiguration/base_domain/Realms/MYREALM/AuthenticationProviders')
    ls()
    CD ('SqlAuthenticator')
    cmo.createUser ('vaishali', 'weblogic123', 'SQLuser')

    cmo.createUser ('pavashe', 'weblogic123', 'SQLuser')
    Edit()
    stopEdit('y')

    NOTE: Change username, password, and ADMIN_URL in 1st line.

    Replace the domain name "base_domain" by your domain online no.: 5

    Authenticator name change SQL online no: 6 by your authenticator name

    Next lines create users. You need to add however to users, you need to create programmatically.

    Syntax: cmo.createUser ('user_name', 'user_password', 'user_description')

    Now, to save these commands in a file with the extension .py and run as below:

    # java weblogic. WLST create_user.py

    If your script does not have to try running each command separately. For this session WLST beginning as below:

    # java weblogic. WLST

    Now run above commands in the script. You will be able to debug if something went wrong during execution of script.

    Kind regards
    Kal

  • New supplier invoice-is not able to create

    Hello

    I can't create the invoice of the newly created provider. I'm in R12. Site created provider. Declared as a pay site. When the invoice was created after the entry into the trading partner (provider name) it is preparing the assignment for the details.when provider try to pass to date.the site provider name Bill has highlighted and give the below errors 1 by 1...

    ORA-01403: no data found

    --------------------------------------------------------------
    FRM-40735: WHEN-VALIDATE-ITEM trigger raised unhandled exception ORA-01403.


    APP-FND-01388: cannot read the value for the profile FND_INDICATOR_COLORS option in the routine, and routine.
    --------------------------------------------------------------
    ORA-01403: no data found

    --------------------------------------------------------------
    FRM-40735: WHEN-VALIDATE-ITEM trigger raised unhandled exception ORA-01403.


    Please can any 1 guide me how to overcome the problem as soon as possible to tell...

    Thanks in advance much n...

    See the following note in metalink to see if it helps:

    Impossible to create invoices for new suppliers due to the error ORA-1403 FRM-40735 WHEN-VALIDATE-ITEM [ID 1123713.1]

    Thanks and greetings
    Jeanny.

  • Provider-> DUNS_Number problem when writing the script of provider

    Hi all

    I'm working on the script of migration provider. I used (AP_VENDOR_PUB_PKG) APIs to create sites of provider and supplier. Version of the application is 12.1.1

    I have to change the DUNS_Number value to the supplier. to test, I created provider of front end.
    When I create the front end provider, DUNS_Number is not stored either in AP_SUPPLIERS or AP_SUPPLIER_SITES_ALL Tables but its storage in the HZ_PARTIES Table.

    Here, my question is, why it is the DUNS_Number value in the HZ_PARTIES TABLE storage, why not in the AP_SUPPLIERS Table?

    Please suggest me via script, how can I insert the DUNS_Number table AP_SUPPLIERS or AP_SUPPLIER_SITES_ALL value.

    Please help me with this problem.


    Thank you.

    Hi again,

    Try to update to HZ_ORGANIZATION_PROFILES instead of HZ_PARTIES.

    Update HZ_ORGANIZATION_PROFILES
    Set duns_number_c =
    where party_id =

    This should be OK...
    Vik

  • SyncToy error

    Why do I get "Exception during preview: cannot create provide" message when you try to run the Synctoy 2.1.0.0 software

    Using Synctoy since 2009 with no prolbems
    Operating sysytem: WIN XP Prof
     
    [Moved from comments]

    Ask here--> http://social.microsoft.com/Forums/en-US/778971d4-481a-4686-b34f-e19bc53c0100/welcome-to-the-synctoy-forum

  • Help with sql query / a subquery to perform the COUNT

    Hello everyone,

    Co-worker colleague asked me to post a request here in hopes of getting more support.  Here's the question:

    There are 3 tables associated with this request.  A table of the application, which displays a number of application open for a particular request, an audit table that shows you all employees who worked on this application and one employee who shows you the details of the employee table.  My colleague is trying to understand what, how to see only applications that have been published by a wizard, but not a Manager.  There are a few applications that worked on both, but he won't see this request in its results.

    Here are the tables

    EMP

    ID FULL_NAME
    1234John Doe
    5467Jane Doe
    2345Clark Kent
    5432June Cleaver

    Unfortunately, this table does not have a title column (which was created provider, so we cannot change the internal structure).  My colleague knows who is the Assistant and the Director, then in this case, the first two of the id:

    1234 and 5467 are managers and the other 2 are assistants

    T_APPLICATION

    app_id app_number date_opened app_type
    901854778JANUARY 10, 2014NETWORK
    901954779JANUARY 11, 2014DATABASE
    901055000MARCH 12, 2014MATERIAL

    T_APP_AUDIT

    APP_ID PROCESSED_BY
    90181234
    90182345
    90185432
    90192345
    90195432
    90105432

    So, here is the actual query, I was given: it is actually to check the number of times that each application has been published per person:

    Select a.app_id, c.full_name, count (*) that controls

    t_application a, t_app_audit b, c of the emp

    where a.app_id = b.app_id and b.processed_by = c.id and

    a.app_type in ('NETWORK', "DATABASE")

    and b.processed not in ('1234, ' 5467')

    GROUP OF A.APP_ID, c.full_name;

    IF I won't see 9018 in my results, since at one time it was edited by a Manager (1234).  Unfortunately, this request does not eliminate the app_id 9018, it eliminates only the name of handlers appear in the query.  I hope I've explained this properly, and any help to point us in the right direction is welcomed.  Thanks in advance.

    Select

    a.app_id

    c.full_name

    , count (*) as the controls

    of t_application one

    t_app_audit b

    c of the emp

    where a.app_id = b.app_id

    and b.processed_by = c.id

    and a.app_type in ('NETWORK', "DATABASE")

    and b.app_id by (not in

    Select app_id

    of t_app_audit

    where processed_by in ('1234, ' 5467')

    )

    GROUP OF A.APP_ID, c.full_name;

  • Question/design architecture with best practices?

    Question/design architecture with best practices?

    Should I have separate Web server, weblogic application and IAM?
    If yes that how this time will communicate, for example can I webgate on the server that will communicate to each other?
    Any reference to decide how to design and if I have weblogic separate one for enforcement and one for IAM that how session management will take place etc.

    How is general design happens IAM project?

    Help appreciated.
    I have a business web application deployed on weblogic1 and OHS1

    deploy webtier on this OHS1 to protect the resources on OHS1. webtier will be recorded at OAM (where will be able to communicate with OAM)

    I also IAM deployed on weblogic2 & OHS2

    IAM components have weblogic. then ok. But you don't need to ohs2 here, unless your application itself requires OHS for hosting. But here, you mention that it is fair to IAM - so no need to OSH here. IAM installing requires weblogic.

    wanted to know where should I create provider (weblogic1 or weblogic2), and install webgate (OHS1 or OHS2 or both)?

    I hope it is clear now. If this isn't the case, query post for what is not clear.

  • Networks not available in Org vDC

    Hello colleagues!

    Please help me - I have a problem with the networking in vCloud Director.

    When I try to specify grouping of network when creating organization vDC, it shows the empty box

    http://i25.fastpic.ru/big/2011/0710/09/1841786f90e450b195cba83462e66109.jpg

    I created pool network before, but it is not available in this dialog box.

    Also I see some strange things: when I created provider VDC and pool network selected, it shows me all the available networks

    When I created the pool - he also showed me that this provider VDC has not all available networks

    http://i25.fastpic.ru/big/2011/0710/51/56e150dde7c372ab201f49ae897e0b51.jpg

    So I try to create the network of the Organization, and even once it does show me all available pools

    http://i25.fastpic.ru/big/2011/0710/e1/223a2429eaecc72ee864be3cbf7f0be1.jpg

    However, when I uncheck the box, it shows me my stock of network and I managed to select. But when I go inside the Organization and try to create TIME here, I see no network available

    When I try to create the network here, it says me that "vDC for the VAPP doesn't have network resourses.

    http://i25.fastpic.ru/big/2011/0710/62/05c00372b3aec5dcd2b563ab0747f162.jpg

    And TIME does not start with error "associated with this paralytic vDC is not required network resourses.

    I have read in vCloud admin guide - "you can deselect use networks accessible only by the organization check box to display the outside networks and network pools which are not currently available from in the Organization through its organizing committees."

    But please give me any idea - why network pool cannot be available for the VCC org?

    What should I check first?

    (The connection of the VCD to vCenter and vShield manager was a success, VCD agent is properly installed on the host computer. Data store is visible).

    Thanks for any idea!

    First screenshot shows you have no network at all pool, either you have a pool of network, but it is not available for the selected provider VDC. For example, if you create a VIRTUAL LAN or network supported by VCDNI pool, then the vdSwitch for the pool of network must be accessible by the servers of the provider VDC you selected for org VDC.

    ekiselev wrote:

    Hello colleagues!

    Please help me - I have a problem with the networking in vCloud Director.

    When I try to specify grouping of network when creating organization vDC, it shows the empty box

  • Create a USB from the recovery CD recovery provided - SOLUTION

    You don't have to buy and CD/DVD external for use provided recovery CD. I guess you all have access to a computer with a CD player. Also, you can buy a 2 GB USB flash memory.

    Using any other computer with a linux or win OS - insert the CD and create the image of this CD .iso file using any application of CD/DVD writer provided. If you use Ubuntu or linux in general, you can use of Brasero CD/DVD burner. Once in the Brazier, choose Copy CD/DVD and in the drop-down menu, select image file. Brasero will create the .iso image file and save it on your hard drive in GNU as file brasero.iso.

    If you prefer to use the terminal / shell to create an iso file enter these commands:

    sudo umount/dev/cdrom

    DD if = of = file.iso / dev/cdrom

    Now we have created the image file and is sitting on the hard drive for you. Now we must create a USB bootable from this image. To do this, download Unetbootin from the link below. It is available for linux and win.

    [http://sourceforge.net/projects/unetbootin/]

    Once you have downloaded Unetbootin, you insert the USB memory (it takes 2GB). Launch Unetbootin. Now the option select the second option - iso image and browse to the location of the file on your hard drive and click Open. Below select the usb - slot Linux key something like/dev/sdb1 or/dev/sdc1 - usually it is the name of the drive selected automatically by Unetbootin.

    Click on apply or Ok. the bootable USB key will be created in a few minutes. Once it's done insert in your Toshiba NB 100 and press F12 to start the netbook, a menu option will display - select USB device and press ENTER.

    Now the machine will start and menu start Unetbootin will show - recovery SELECT, then press enter and follow the instructions - and you'll be all set. No need to spend extra money for an external CD drive.

    I tried yesterday and works like magic. Good luck.

    -----------------

    Post edited by: Admin

    * This procedure does not work correctly! *

    Please follow the instructions created and validated by the user * boandlkramer *.
    Here is the link to the site:
    http://www.georgkainzbauer.de/gtkdb/index_7_544.html

    Best regards
    Admin

    Hay Karloss

    10 points for you! If you have any tips more useful, you're welcome.
    Thank you

  • I am not able to receive or send emails. My service provider, Charter told the delite POP and IMAP server to create.

    There are some tim, I stopped doing my e-mails.  The only way I could get to them is by turning off the PC.  When I opened the computer, I'd find a whole bunch of messages.  In addition, I was not able to send messages.   I was told by Charter.net, my servise provider, call Microsoft and ask them to fix the problem since I was on Windows Live Mail.   They proposed to remove the POP server and create the IMAP server.  Can you help me, please?

    Please tell us your version of Windows and your e-mail program so it can be moved to the right forum.
     
     
  • Shadow Copy Provider cannot create system restore point error Ox8004230F?

    When I try to create a system restore on my Vista operating system, you get the above error message.
    I have entered what has been suggested in the forums and Services.
    What should I do now?
    Thanks for you help.

    When researching other forums via Google, I found this in 'My Digital Life '.  It solved my problem so I post here to help people who may have tried all the "fix - its" that did not work!

    "The error occurs because the Microsoft Software Shadow Copy Provider service is stopped or disabled. The Microsoft Software Shadow Copy Provider Service manages shadow copies of volume based on software taken by the Volume Shadow Copy service. If this service is stopped, shadow copies of volume based on software cannot be managed. If this service is disabled, as when you manually disable the snapshot, all services that explicitly depend on it will fail to start. "

    The Shadow Copy Provider MS and the shadow copy of Volume must be enabled.  With my problem I'm not far enough to allow the Shadow Copy Provider MS.  When I did, it has allowed me to create a restore point.

    Thank you.

  • System Restore cannot create restore, point because the "shadow copy provider had an unexpected error." What can I do?

    Have a Dell Inspiron 1545 with Vista.  System Restore cannot create restore, point because the "shadow copy provider had an unexpected error."   What can I do?

    Hi JamesParwulski,

    Method 1
    I suggest you to scan SFC.

    How to use the System File Checker tool to fix the system files missing or corrupted on Windows Vista or Windows 7.
    http://support.Microsoft.com/kb/929833

    Method 2
    I suggest you perform a checkdisk.

    Check your hard drive for errors
    http://Windows.Microsoft.com/en-us/Windows-Vista/check-your-hard-disk-for-errors

  • Snapshots created with the EqualLogic VSS provider are not displayed in SAN HQ

    Hello

    Poster for the first time. We have just implemented an EqualLogic SAN, PS6100X network, and we're having performance issues between our DPM backup server, one of our hosts Hyper-V and VM images stored on the San. I will try to provide as much information as I can

    Environment:

    Dedicated iSCSI using Dell Force10 switches network

    hyper-V (Windows Server 2008 R2) 3 hosts
    -2 hosts has a NETWORK 4 port GB dedicated adapter connected to the iSCSI network; 1 host has connected to the network iSCSI NETWORK 2 GB dedicated ports card
    -Each Hyper-V host computer has a dedicated on the EQ SAN, RAID-50 volume that stores the Hyper-V virtual machines
    -EQ VSS provider installed on all hosts Hyper - V 3 and works correctly

    Using DPM 2010 for backup

    Problem: on Hyper-V hosts 1 and 2, any/all backup activities are very slow. On the Hyper-V host 3rd, however, activities related to backup all are incredibly fast! We compared the NIC configurations, HIT / settings ME and ASM, but we cannot understand why it is so slow on hosts 1 & 2.

    In addition, whenever DPM 2010 tells the EQ VSS provider to create a snapshot, we see the snapshot being created in the EQ Team Manager, but he does not appear in the list of iSCSI connections. According to the documentation SAN HQ, instant and volumes should appear here.

    We also disabled TcpAckFrequency for all 3 hyper-v hosts. It helped a little, but there is still a HUGE difference with regard to backups of the DPM.

    We're pretty sure that there is something misconfigured on the hosts Hyper - V 1 & 2, given that the host Hyper-V 3 has no performance issues.

    How can I get snapshots to appear in the list of iSCSI SAN HQ connections?

    Version information:
    SAN AC = 2.2.0.5924
    Storage Array Firmware = 5.2.4

    There are two different issues in this post for the SANHQ doesn't show only not iSCSI connections.

    Now SANHQ displays the correct total connection number but doesn't provide details of connections individual iSCSI for snapshots, which it should. So in the meantime use Workgroup Manager that shows the details for each snapshot (I know that's not the best answer, it's a short term solution).

    The fact the SANHQ shows details of instant connection does not mean that they aren't here and I can't imagine anything to do with the question of the DPM.

    The real difficulty, look for upcoming beta SANHQ and subscription for this on the EQL support site. You can do it now.

  • Create the custom provider

    Is it possible to create and save a custom provider for the corporate accounts?

    Because it seems that those available (bbm, twitter, facebook, bbgroups, linkedin and sinaweibo) are provided by Blackberry.

    If this is not the case, what is the concept of recommending to integrate 3rd party accounts?

    Welcome on the support forums.

    You can integrate an application into the hub and share the menu.
    you might take a look at Vincent for a twitter client which has done this successfully.

    Full integration of account is unfortunately not available at this time.

Maybe you are looking for