Item xref api or interface?

hi,
does anybody know whether there is an api or interface for item cross reference conversion (supplier cross reference, not customer) in R12?
thanks..

Hello,
Look at: http://www.oracleappshub.com/oracle-purchasing/oracle-api-availability-purchasing/ sentence What you can't done by this API's
You have sample: How to Receive and Deliver Against RMA Using ROI [ID 339835.1]
Regards,
Luko

Similar Messages

  • Assigning Sourcing rules to Assignment set using API or Interface table

    Hello Gurus,
    We have a requirement to migrate the data from legacy system to Oracle Apps.
    We are given with a data file containing sourcing rules and assignment set information which needs to be assigned to assignment sets.
    Are there any APIs or interface tables to assign the sourcing rule to Assignment set?
    Thanks in Advance.

    HI,
    I have a requirement, API for loading sourcing rules in APPS and attaching the same to Assignment sets at item level..
    I found that ,these are the API's for that..
    MRP_SOURCING_RULE_PUB.PROCESS_SOURCING_RULE ,MRP_SRC_ASSIGNMENT_PUB.Process_Assignment
    Please provide me the code for that.
    Can you please send to my mail -- [email protected]
    Thanks in advance...
    Vijaya

  • Publishing Content Items through API

    Hello,
    I am currently using EDK 5.3 for publishing content items. I have been sucessful in editing an existing content item using APIS. However It looks like APIS doesn't have a way to schedule to publish content items for a future date.
    I tried to do some reverse engineering and found out that this information is stored in pcsscheduledcontent and pcsscheduleitems tables. I was able to figure out how to change the dates as this are stored in pcsscheduleitems table,however can't find out where are the values are being stored for time.
    Say, I want to publish the content item for 08/28/2008 4:00 pm using the APIS, I am able to get to the date from the above 2 tables but really can't find out where the time is stored. I have tested from the User interface that the time is also retained based on the options we pick.
    And also I have seen that the Loadid keeps on increasing for every change I make.
    Can someone please help me/ guide me in the right direction?
    Thanks.

    pcsscheduledContent table. schedule something to be published in the future and then do a select on that table with an order by clause of :
    ORDER BY ITEMBEGINDATE DESC
    The itembegindate column contains the date AND time of the publishing schedule. you may just not be converting the value correctly.
    hth,
    Robert

  • How to populate Values in Value Set via API or Interface

    Dear frds:
    i need to know is there any API or interface available to load thousands of values in particular valueset via API or Interface. I know Dataload is the alternative but i don't want to use that as the data is too much so its not feasible.
    waiting for your response
    Thanks.

    There is no API for fnd_flex_values.
    You will have to do a direct table insert (or call FND_FLEX_VALUES_PKG which does nothing but a direct table insert).
    Sandeep Gandhi

  • Cross Reference within external Database using XREF API

    Hi Experts,
       Can we do Cross Reference within external Database using  XREF API uses JDBC to access the Oracle Database Stored Procedures in SAP PI? How to use a JNDI Data source to access the DB and how to do the Connection Pooling will be done by the SAP J2EE server? Kindly let me know step by step proceedings.
    Regards
    Archana

    Hello Archana,
    It can be done with a Lookup call in a mapping.
    Here's a little article about the topic in the SAP wiki:
    http://wiki.sdn.sap.com/wiki/display/XI/HowtouseCrossReferencewithinexternal+Database
    With kind regards
                     Sebastian

  • AP Payment Upload Using API or Interface

    Hi ,
    I had requirement to upload the AP payment information using API or Interface. I have the below code. But is showing some "Unexpected" error.
    declare
    p_num_printed_docs NUMBER;
    p_payment_id NUMBER;
    p_paper_doc_num NUMBER;
    p_pmt_ref_num NUMBER;
    p_return_status VARCHAR2(200);
    p_error_ids_tab IBY_DISBURSE_SINGLE_PMT_PKG.trxnErrorIdsTab;
    p_msg_count NUMBER;
    p_msg_data VARCHAR2(200);
    begin
    MO_GLOBAL.SET_POLICY_CONTEXT('S',84); --- Apps intialize
    fnd_global.apps_initialize(1823,20639,200); --- Apps intialize
    IBY_DISBURSE_SINGLE_PMT_PKG.SUBMIT_SINGLE_PAYMENT(
    p_api_version => 1.0,
    p_init_msg_list => fnd_api.g_false,
    p_calling_app_id => 200,
    p_calling_app_payreq_cd => '13011',
    p_is_manual_payment_flag => 'Y',
    p_payment_function => 'PAYABLES_DISB',
    p_internal_bank_account_id => 10000, -----12001,
    p_pay_process_profile_id => 161,
    p_payment_method_cd => 'CLEARING',
    p_legal_entity_id => 23324,
    p_organization_id => 84,
    p_organization_type => '',
    p_payment_date => sysdate,
    p_payment_amount => 111,
    p_payment_currency => 'USD',
    p_payee_party_id => 91678,
    p_payee_party_site_id => 45272,
    p_supplier_site_id => '',
    p_payee_bank_account_id => '',
    p_override_pmt_complete_pt => 'N',
    p_bill_payable_flag => 'N',
    p_anticipated_value_date => '',
    P_MATURITY_DATE => '',
    p_payment_document_id => 1,
    p_paper_document_number => '',
    p_printer_name => '',
    p_print_immediate_flag => '',
    p_transmit_immediate_flag => '',
    x_num_printed_docs => p_num_printed_docs,
    x_payment_id => p_payment_id,
    x_paper_doc_num => p_paper_doc_num,
    x_pmt_ref_num => p_pmt_ref_num,
    x_return_status => p_return_status,
    x_error_ids_tab => p_error_ids_tab,
    x_msg_count => p_msg_count,
    x_msg_data => p_msg_data
    commit;
    DBMS_OUTPUT.put_line ( p_return_status || '---''---' || p_msg_data || '--''--' || p_msg_count );
    IF p_msg_count = 1 THEN
    DBMS_OUTPUT.put_line ( p_return_status || '---''---' || p_msg_data || '--''--' || p_msg_count );
    ELSIF p_msg_count > 1 THEN
    FOR i IN 1..p_msg_count LOOP
    DBMS_OUTPUT.put_line ( i||'. ' || fnd_msg_pub.get (p_encoded => fnd_api.g_false) );
    END LOOP;
    ELSE
    DBMS_OUTPUT.put_line (p_return_status);
    END IF;
    end;
    If anyone knows the solution please respond quickly. This is quite urgent requirement. If I am not using right API then please suggest as well. This requirement for Oracle Apps R12
    Regards,
    Prakash

    Hi,
    Can you please advise if you had a response for your message.
    Regards,
    Sunil

  • API or interface table to create releases for a blanket purchase agreement

    Hi
    I need to know if Oracle provides a standard API or interface table to create releases for a blanket purchase agreement.
    I tried using the release_num field in PO_HEADERS_INTERFACE, PO_LINES_INTERFACE. But this is not working.
    I'm able to create the blanket purchase agreement using the open interfaces, but not the releases.
    Regards,
    Alister

    Hi Alister,
    You can't create a release of a BPA through API, there is no such APIs provided by oracle.
    Where as you can create a BPA by using API. You need to dump/poplulate data in PO_headers_interface & PO_Lines_intreface table.. Then use Purchasing Documents Open Interface API to create a BPA.
    Regards,
    S.P DASH

  • Create Supplier as Employee API Or Interface

    hi all ,
    i want to know if i can Create Supplier as Employee using API Or Interface , please any one can help me

    And what, pray tell, does your question have to do with the upgrade/installation/migration of WLS?
    Seems you meant to be in one of the E-Business Suite forums.
    John

  • API or Interface for Project Type - OeBS

    Hi
    We have requirement to create Project Type using API or interface.
    Could please provide the same or any alternate solution.
    Regards
    Vimal

    We have requirement to create Project Type using API or interface.
    Could please provide the same or any alternate solution.Please see "Oracle Projects APIs, Client Extensions, and Open Interfaces Reference" -- http://download.oracle.com/docs/cd/B25516_18/current/acrobat/115pjapi.zip
    Thanks,
    Hussein

  • What is the meaning of "Item Created by Posting Interface" flag

    I saw a flag checked in Display Document : Offsetting item window. Below is the F1 help of it. But still I didnot get the concept of this flag.
    Item Created by Posting Interface
    Use
    Indicates that the G/L item is generated in the posting interface for Contract Accounts Receivable/Payable (FI-CA).
    This indicator is required internally by the system in order to be able to execute all the activities necessary for resetting cleared items.
    Examples
    The following items posted during clearing carry this indicator:
    Cash discount deductions
    Other deductions within tolerances
    Exchange rate differences
    Tax adjustments
    Also the field next to this flag contains one value and that field has below F1-help
    Transaction key for account determination
    Defines the type of automatic posting in question. These keys are defined in the system and cannot be changed.
    Use
    The transaction key documents the type of tax following transfer to General Ledger Accounting (FI-GL).
    The transaction key is used by the system to determine the tax accounts to be posted to automatically.
    Examples
    MWS is used for output tax.
    VST is used for input tax.
    RDW is used for rounding amounts when clearing in an alternative currency.
    BVR (formerly BUV) is used for company code clearing.
    SKT is used for cash discounts.

    Murtuza:
    Certain processes generate postings above and beyond the entered information, eg. cash discounts or rounding etc.  these internally generated items are posting relevant but were not entered by user/transaction.  in this way that flag identifies the cause for the posting.
    regards,
    bill.

  • How to get standard oracle API or Interface package in oracle apps

    Hi guys,
    Need ur help........plz tell me how to find the standard oracle API or other package on server. Actually I need standard Interface package of Requisition Import program API plz give me exact path to finding standard API or interface pkg.......ASAP and also give the interface pkg name of Requisition Import in purchasing.
    it's urgent plz do needful...........................................
    Thanks,
    abh...................
    Edited by: 811373 on Jun 4, 2011 12:54 AM

    I want to find all API related to PO Requisition special Requisition Import conc. program API ...plz tell how can get it.
    Actually I want to design custom interface on the basis of standard Requisition Import api so, plz give me sql script for find those api.From iREP website, navigate to the PO module and check the list of APIs.
    Or, you could enable trace/debug for the concurrent program and generate the TKPROF and this will show you the API used by this program.
    FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]
    How To Trace a Concurrent Request And Generate TKPROF File [ID 453527.1]
    Another option is to open the report using reports builder and check the code.
    Thanks,
    Hussein

  • API or Interface table for receiving an RMA return line

    is there an API or interface table for receiving an RMA return line? any example/notes available that can i refer to ?

    Hello,
    Look at: http://www.oracleappshub.com/oracle-purchasing/oracle-api-availability-purchasing/ sentence What you can't done by this API's
    You have sample: How to Receive and Deliver Against RMA Using ROI [ID 339835.1]
    Regards,
    Luko

  • Item Category Assignment Open Interface concurrent program

    Hi,
    A quick question,
    Can anyone please tell me why "Item Category Assignment Open Interface concurrent program" is used for.
    Purpose of running the program.
    Thanks in advance.

    Pl post details of OS, database and EBS versions.
    Pl see if MOS Doc 1060824.1 (R12: Supplier Open Interface APXSUIMP Errors with REP-0004 Output Does Not Indicate Reason for Rejection) is applicable
    HTH
    Srini

  • Can anybody tell me how to get INV available quantity of a item through API

    Hello,experts.
    Can anybody tell me how to get INV available quantity of a item through API?
    And offer any example for this.
    Thanks in advance

    Check from This table : MTL_ONHAND_QUANTITIES and MTL_ONHAND_QUANTITIES_DETAIL.
    Anyway just curious, if you able to access this forum (which requires internet connection), why you can't access TRM and IREP ?

  • APIs or interfaces to load Taxes in E-Business Tax Module

    Hi Friends,
    Can any one provide me the APIs or interfaces available in R12 E-Business Tax module

    All APIs are listed in Oracle Integration Repository
    http://irep.oracle.com/index.html
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

Maybe you are looking for

  • Final cut pro x is open, but cannot see browser, timeline or canvas?

    Basically, when I open final cut it acts as if it is opening and then nothing happens. However it is definately open as I can click on the toolbar to do stuff like 'new project' under file etc but when I do, nothing happens again. It's almost like it

  • Query rule using query variables

    Hi All, I am working on a query rule in SharePoint 2013. I am trying to build a query text using query variables to provide profile based results to the users. The query text which I am using in the query builder is of the following format: {SearchBo

  • Rp_provide_from_last infotype subtype pn-begda pn-endda.

    Hi All, Is there a way to find out if a subtype exists before using this macro. If a subtype does not exist then it crashes. rp_provide_from_last infotype subtype pn-begda pn-endda. Thanks, ~Mark

  • PDF creation causes rich black colors to shift

    I'm designing a book cover. There are three main areas: front, back and spine. Each area has specified the default "black" color in the swatches panel. This color uses 100% K in the CMYK color space. In the preferences panel, under "appearance of bla

  • Frequency in Continuous counting Vs Cycle Counting

    In Cycle Counting we can specify how many times a material can be counted via CC Indicator 1. Just wanted to know reg Continuos inventory counting, how do we specifcy frequency of counting of Bins ??? How does it proposes bins in LX16? 2. Might not b