Update supplier number in oracle r12

Dear All ,
There is a business requirements to update the supplier number when creating the supplier with a specified format .
how i can make this ,using personalization or extension .
Appreciate your efforts .

Hi,
Check how the supplier number is getting populated when creating the supplier.
You can extend your controller and write the logic in PR method to set the supplier number as per the required format.
--Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • Update Unpaid Invoice in Oracle R12

    I wanted to update the paygroup (PAY_GROUP_LOOKUP_CODE) of unpaid invoices in oracle R12. Is this feasible? If yes, can you please let me know the API to do the same.
    Thanks in advance, for your kind response.

    Hi,
    Use below code to identify the unpaid invoice and update the paygroup.
    Please let me know if i am missing something
    select i.invoice_num,v.vendor_name,i.invoice_date,ps.due_date,
    i.invoice_amount,i.amount_paid,ps.amount_remaining, SUM(i.invoice_amount),sum(ps.amount_remaining)
    FROM ap_payment_schedules_all ps,
    ap_invoices_all i,
    apps.po_vendors v,
    apps.po_vendor_sites_all vs
    WHERE i.invoice_id = ps.invoice_id
    AND i.vendor_id = v.vendor_id
    AND i.vendor_site_id = vs.vendor_site_id
    AND i.payment_status_flag ='N'
    AND (nvl(ps.amount_remaining, 0) * nvl(i.exchange_rate,1)) != 0
    AND i.cancelled_date is not null
    group by v.vendor_name,i.invoice_num,i.invoice_date,ps.due_date,i.invoice_amount,i.amount_paid,
    ps.amount_remaining
    Order by v.vendor_name,i.invoice_num;

  • Invalid  Supplier Number in Oracle solution accelerator 11.1 1.6 version

    Hi All,
    I'm working on oracle solution accelerator 11.1 1.6 version.
    While testing im providing invalid supplier number and testing the invoice. Invoice came to InvoiceProcessing view. After im assigning to Supplier Maintenance through IPM.
    How can i end the flow when i give invalid Supplier number ? Any ideas ?

    Hi All,
    Any ideas regarding oracle solution accelerator?

  • API to Update Invoice Attributes in Oracle R12

    Hi,
    I'm looking some Oracle EBS API to update the Invoice header attributes fields in AR R12.
    If some of you can help me I will appreciate it.
    Regards.
    Fco.

    AFAIK, Oracle does not provide APIs to update ATTRIBUTE columns, since these columns store free-form customer-defined data. You can directly update ATTRIBUTE columns using SQL, taking appropriate care to not corrupt/invalidate the data in these columns.
    HTH
    Srini

  • Re: How to create large number of Oracle R12 EBS users in mass?

    Hi All,
    I know this is quite old thread, but I'm in a situation where I have to create multiple users and attached more than one different responsibilites to use in EBS. Definately fnd_user_pkg this is the package we have to use in loop.
    I'm planning to create one table let's say user_info where it would have mulitple columns like username, password, start_date, end_date, responsibilites etc.(through SQL loader), so my question is how to call this table in loop ?? (I don't have much experience in PL/SQL Coding )
    again one user would be having multiple responsibilites then how that is to be taken care ?
    yours help would be appreciated...
    Thanks,
    Manish

    Search the forum or previous threads (or even Google) and I'm sure you will find many examples.
    https://forums.oracle.com/search.jspa?peopleEnabled=true&userID=&containerType=&container=&q=fnd_user_pkg
    http://only4left.jpiwowar.com/2011/08/fun-with-ebs-api-ii/
    Thanks,
    Hussein

  • Generate different Supplier Number Sequence for One Operating unit!

    R12.1.2
    Dear Gurus,
    We run multiple operating units under one Business Group and each of them are independent entities of their own with separate ledgers and currencies based on the territories.
    We generate Supplier numbers automatically for all territories.
    But, now we have a requirement from one of the territories that we need to generate supplier numbers in a different sequence (starting from 40000000000 onwards) just for that territory. We still would like to generate supplier numbers for the other operating units (territories) using the standard sequence.
    Is this possible? If yes, please give details.
    Thanks,
    -Venkat

    Hi Venkat,
    Supplier Numbering configuration is not operating unit specific, hence the same numbering would continue to happen in the environment/application instance ...
    The workaround would be turn off Automatic and switch to Manual numbering and check with the feasibility of having a customization and Personalization for meeting the requirement ....
    Reference:
    How is Supplier Number assigned in R12? [ID 1252934.1]
    Regards,
    Ivruksha

  • R12 Updating Supplier Site Payment Detail Email

    Hi All,
    When I update supplier site email adrress from Payment Details > Separate Remittance Advce Deliver tab, I can't see that it is getting updated in WF_LOCAL_ROLES table. ( after synchronization ). This causes remittance advice sent to wrong email address when the work flow is running.
    Can some one please check and let me know how should we enable it? Or Is it working in R12 as I have explained above. (modifying payment details email address and seeing it in wf_local_roles table ) ?
    Thank You,
    sandaruwan.

    Pl see if MOS Doc 458418.1 (Where Is The Supplier Notification Method In Release 12.0?) can help
    HTH
    Srini

  • Is it possible to Update Supplier name through API

    Hi Folks,
    Kindly suggest me that is there any possibility of updating the existing Supplier name through API's.
    If it is possible kindly suggest me the API or Weblink for that.
                     Thanks in Advance
    Raj

    Hi Raj,
    With patch 17575099:R12.AP.B, Oracle has provided three public API's for updating supplier information. The new API's are the following procedures in the AP_VENDOR_PUB_PKG (appvndrb.pls) file:
      Update_Vendor_Public
      Update_Vendor_Site_Public
      Update_Vendor_Contact_Public
    I hope this helps.
    Cheryl

  • In WL 6.1 SP4 random value updated in NUMBER column

    Our application used to update a NUMBER(15) column in Oracle with current time
    in milliseconds.
    After migrating from SP3 to SP4 I observed that ORA-01438 was being thrown during
    the update intermittently.
    Increasing the size to default NUMBER, I observed that the values getting inserted
    are sometime random like 59, 81 digits long!
    The update code just does a prepared statement and does setObject of a java.lang.Long.
    I am using the oracle thin driver in oracle's classes12.zip.
    I am sure that this is happening since using SP4, have anyone faced similar problems?

    We have changed default thin driver to 920 from 817 in 610sp4. If you are using 817
    dbserver, please put 817 classes12.zip in your classpath before weblogic.jar and you will
    be ok.
    Mitesh
    Harish SK wrote:
    Our application used to update a NUMBER(15) column in Oracle with current time
    in milliseconds.
    After migrating from SP3 to SP4 I observed that ORA-01438 was being thrown during
    the update intermittently.
    Increasing the size to default NUMBER, I observed that the values getting inserted
    are sometime random like 59, 81 digits long!
    The update code just does a prepared statement and does setObject of a java.lang.Long.
    I am using the oracle thin driver in oracle's classes12.zip.
    I am sure that this is happening since using SP4, have anyone faced similar problems?

  • Error:  Msg1: This Supplier Number already exists

    Hi All,
    I have created a procedure which search for a vendor and if the vendor or supplier doesn't exist then it will create that Vendor or Supplier using the API AP_VENDOR_PUB_PKG.Create_Vendor. I am using it as an concurrent program. Everything is working fine but I am getting the error
    Msg1: This Supplier Number already exists.
    But the neither the supplier or the Supplier number exits .
    Any Suggestions why I am getting this error. Please reply ASAP as it urgent. By the way I am in the R12 Env. with 11g Database.
    Thanks in Advance
    Edited by: 843564 on Apr 11, 2011 10:05 AM

    Hello,
    This error may be because of the setup of "Payable system Setup" for Supplier Number is "Manual".
    Can you check it @ > Payables > Setup > Options > Payables System Setup
    Vikram

  • Update Supplier Using Supplier Interface

    I am trying to update the terms of some existing suppliers using supplier interface and I am hitting the following errors:
    100002 ABEC LTD. Supplier Number is invalid
    100002 ABEC LTD. Supplier name already exists.
    100002 ABEC LTD. This Supplier Number already exists.
    The insert statement which i used in the control file was:
    append into table ap_suppliers_int
    fields terminated by '|'
    vendor_interface_id,
    vendor_name,
    segment1,
    terms_id)
    As far as i know, in customer interface there is an insert update flag. How do we indicate an update action in Supplier Interface?

    The supplier interface doesn't support updates of vendor records. You can try using the ap_po_vendors_apis_pkg.update_vendor_site procedure, which allows limited update capabilities.

  • UPK creation issues (Firefox 3.6.1, Oracle R12 (12.1.3), HP-UNIX)

    Hi, our organization is testing the following software upgrades:
    - Oracle R12 (from 11)
    - For HRMS, replacing IE 6 with Firefox 3.6.1
    Based on an email from one of our clients:
    - Trouble recording UPK in HRMS R12 with Firefox (works fine in R12 with IE6)
    - Example - did not register the field being clicked on
    - Some system prompts did not generate
    - System generated prompts not appearing in Topic Editor
    - When you publish or preview the UPK, the default prompt to enter characters is typo-ridden and says:
    -- "Entera valid valuee.g."Training Supplier 1."
    - Strangely, when copied-and-pasted, the typos disappeared.
    - And within the Topic Editor, the typos are also absent. They only seem to appear when actually using the UPK.
    Any tips would be much appreciated! Let me know if more detail needed.
    Thanks
    Bill

    Hi Bill,
    What build of UPK is being used - 3.6.1?
    Have you applied any applicable Service Enablement Packs - specifically for versions 3.6.1 (SP3 available) and 11(SP1 available)?
    I had a similar issue although it was with R11 and applying SP3 on UPK 3.6.1 sorted out all of my Firefox issues.
    I hope this helps somewhat.
    Regards,
    Greig

  • JDBC Adapter - Multiple Table Update - Sequence Number

    I have to design a integration scenario where I will be updating 4 tables in a oracle database. One of these tables is a header table and the rest are detail tables. I have to generate a sequence number using Oracle Sequence number object which is one of the columns in the header table.
    How can i use the Oracle SEquence number object to get the next value with JDBC Adapter?

    Use an Enhancement Spot

  • High Availabilty Solutions for Oracle R12.

    Hi Gurus,
    We are looking for a HA solution for our R12 E-Business Suite. Currently we have options like HP Service Guard from HP.
    Kindly provide me your valuable suggestion for HA solution from Oracle side.
    Please kindly provide me the details as well like 'Licensing, Advantages, Disadvantages, pre-requistes, ease of Adminstation etc.
    Highly appreciating your replies.
    Thanks.

    Thanks for your replies. Does Oracle RAC need extra licensing?Absolutely, yes. RAC is neither cheap nor free. ;-)
    I would like to have enough information before i can go to our sales representative.
    Actually i am planning to give presentation on High Avaialability options for Oracle R12.
    and i assume i will be asked for the lisensing. i need your helpA conversation with your Oracle Sales representative will be far more informative than asking questions about licensing on these forums. If you want baseline information about license costs, you can check the Oracle Store (https://oraclestore.oracle.com), but you may be able to negotiate a better rate with Oracle Sales.
    Update: In other words, "what Hussein said." I really need to refresh these threads more often when composing a reply, especially if I wander away and come back. ;-)
    Regards,
    John P.
    http://only4left.jpiwowar.com
    Edited by: jpiwowar on Jun 1, 2010 10:40 PM

  • Importing Payment from a Legacy to Oracle R12

    All,
    There is a requirement for me to import all the payments which have been made thru a legacy system to Oracle R12. Is there any standard interfaces available? If yes, please let me know. If not, what is the best way to import such info to Oracle?
    Any suggestion is highly appreciated.
    Thanks,
    Sen.

    Gajendra,
    Many thanks for your reply.
    Our customer doesnt want to make payment from Oracle payables, instead they have a independent payment module system thru which the payments are made to their suppliers. In this case, they want to sync all the info back to the Oracle apps in a periodical manner. I'm looking for ways to do this integration. There are/is no standard interface tables for payment import. I'm thinking of other options like writing the custom tables. If this is the case, what are all the standard validation required to perform, what are all the Oracle payment base tables etc. I'm looking for such options.
    Please let me know your suggestion
    Thanks,
    Sen

Maybe you are looking for

  • Issue with adding new fonts in Lion

    I'm trying install two new fonts on my Mac Book Air and cannot get it to allow me to add them to the Font Book. (I've just successfully added the same fonts on to my Mac Book Pro which runs Snow Leopard, so this is definitely a Lion issue.) I've crea

  • Can i buy a replacement power cord

    I want to have a second power cord on hand and cant find it on the site. does anyone know if i can purchase one

  • J2EE Development Component - How to change vendor name

    Hi, While creating a  new J2EE Development Component, I didn't change vendor name and have created complete application, Now I want to update vendor name, can you please help me out how vendor name can be changed in existing application. Thanks

  • Does anyone have access to the Roadrunner dial up script for Mac?

    Hello, I'm getting authentication error when connecting to Roadrunner through their dial up service. I'm told I need a dial up script. The URL they provided leads to a file not found error. I would also appreciate knowing where I would put this scrip

  • Thread hangs java.io.BufferedInputStream.read

    hi,everybody threads often hang in socket read stack dump like this Thread-178 "[STUCK] ExecuteThread: '101' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, in native, suspended, priority=1, DAEMON> {     jrockit.net.SocketNativeIO.readBy