Tables In API

HI Friends,
i am searching for the application/ script which will help me to find out the table that is being manipulated by API.
eg. Suppose 'HXT_TIME_COLLECTION' is an API from HRMS TIme and labor, i need such functionality which will help me to give the table in it.
I nedd to find the tables affecting through API in HRMS OLM. It is very difficult and time consuming to find the package and package body then different funcation and tables in it.
It would be great if someone provide me the smiplest way to find the table in API.
Thank U in Advance :)

Have you searched http://etrm.oracle.com ? You will need a valid MOS login
HTH
Srini

Similar Messages

  • HR API User Hooks - Can I use to change a value in the table the API for?

    I am trying to initialize a descriptive flexfield on per_all_people_f. I originally tried doing the initialization using a “before row insert” database trigger directly on the table per_all_people_f. Seems to work great in the People form (PERWSHRG), but does not seem to work consistently when a new employee is entered through a template like Enter Employees (PERWSQHM).
    Does anyone know if you can use an API User Hook to initialize a value on one o the tables the API is inserting? For example, could I put a "Before Process" user hook on the "Create_ Employee" API to change the value of a descriptive flexfield?
    Any other good ideas?
    Currently I have a concurrent request that runs once every 30 minutes to default the descriptive flexfield. The delay is causing issues.

    In such cases you should write the code to default the values in the front end PUIs. As one person pointed out, User hooks are provided either to validate the already entered values, or to insert/update data in some custom tables but not for updating values in the same table where data is being inserted/updated.
    BTW for your information:-
    Person form (People Enter and Maintain) does not use APIs so anything written inside the user hook would be ignored by the application when this form is used. (The reason is this is one of the oldest form in HRMS, was created even before the concept of user hook came).
    Template form PERWSQHM uses APIs, so user hook is called when this form is used to create/update the data.
    Hope this is useful.

  • Table interface API: Possible to remove "unasigned" cells?

    Dear all,
    I was wondering if I could use the table interface API to remove the "###" or "unassigned" values in a cell of a query?
    Thanks in advance,
    Andreas

    Andreas,
    you could use the table interface to remove display of the values - you can set it to have a blank space if required....
    In the table modifier - check for Null or INITIAL in the cell contents...
    Arun
    Message was edited by:
            Arun Varadarajan

  • Custom Datetrack Table and APIs

    Hi All
    I want to create a custom datetrack table and an API supporting that table, just like hr_all_positions_f. I think there is an API pr script available in Oracle to create a template package that supports datetrack operations for a package and that will have pre-insert, post_insert procedures as well.
    If there is any metalink note please post it here.
    thanks
    gaurav

    Is your requirement to create APIs that are datetrack aware on custom tables using a standard template defined by Oracle ? If so, I do not believe there is such a template available. We have created custom datetrack tables and APIs in our install - these were coded by our development team based on requirements defined by the functional team.
    HTH
    Srini

  • How to import order from Interface table using Api Order Import

    Hi All
    I am using oracle EBus R12.
    I was working in Data migration in Order management.
    I have manually entered data in Interface table ie (oe_header_iface_all) and (oe_lines_iface_all)
    And i have given the order_source_id as 2 and order_source as COPY.
    And after that i ran the concurrent program with parameter as COPY but the concurrent program does'nt picks the order in the interface.
    Can any one please tell the steps in OM.
    Thanks & Regards
    Srikkanth.M

    Hi;
    please check:
    http://sureshvaishya.blogspot.com/2009/04/order-import-using-api.html
    Also i suggest see:
    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]
    http://www.google.com.tr/#hl=tr&source=hp&q=Api+Order+Import+&oq=Api+Order+Import+&aq=f&aqi=&aql=&gs_sm=e&gs_upl=469l469l0l1l1l0l0l0l0l0l0ll0&fp=87c57485fd170fd2&biw=1259&bih=793
    Regard
    Helios

  • How to delete some of records from wf_notifications table any API Name?

    Hi All,
    I want to delete some of records from wf_notifications table , can any one tell API' name and Back end delete process.
    Thanks,
    Ramu
    Edited by: Ramu on Mar 20, 2013 5:42 AM

    Hi ,
    I hv done below script, now it's working fine.
    DECLARE
    CURSOR csr_transaction_id IS
    SELECT   hat.transaction_id,
             hat.item_type,
             hat.item_key,
             ppx.employee_number,
             hat.section_display_name
      FROM   hr_api_transactions hat, per_people_x ppx
    WHERE   hat.process_name = 'HR_PERSONAL_INFO_JSP_PRC'
             AND hat.selected_person_id = ppx.person_id
             AND ppx.employee_number IN
                      ('100024773',
                       '100024820',
                       '100024859',
                       '100024879',
                       '100024902',
                       '100024937',
                       '100025137',
                       '100026470',
                       '610014755',
                       '610017039')
    order by  ppx.employee_number;
    BEGIN
      dbms_output.put_line('***Deleted all Transactions  and Notifications of below Employee Personals Tranactions ***');
       FOR my_cur_v IN csr_transaction_id
       LOOP
       /*Delete all Transaction_id's in hr_api_transactions,hr_api_transaction_steps,hr_api_transaction_values and hr_api_transaction_steps_bk tables */
        hr_transaction_swi.delete_transaction
                              p_transaction_id =>my_cur_v.transaction_id,
                              p_validate => hr_api.g_false_num
        wf_engine.abortprocess  (
                                  itemtype => my_cur_v.item_type,
                                 itemkey => my_cur_v.item_key
         /* Deleted all Notification_id's and item_key's in wf_item_activity_statuses,wf_items,wf_item_attribute_values,wf_notifications     Table */                     
         wf_purge.items (
                          itemtype => my_cur_v.item_type,
                         itemkey => my_cur_v.item_key
        dbms_output.put_line('Emp No --'||my_cur_v.employee_number||'Transaction_id :'||my_cur_v.transaction_id||'Emp Personal Info :'||my_cur_v.section_display_name||
                              'Item Type :'||my_cur_v.item_type|| 'Item Key :'||my_cur_v.item_key); 
       END LOOP;
       commit;
    EXCEPTION
    WHEN OTHERS THEN
      dbms_output.put_line('hr_transaction_swi.delete_transaction api goest to exception block'    ||sqlcode|| '  '||sqlerrm);
    END;  
    /thanks,
    Ramu

  • Interface tables Or API's Used for Conversion of Categories&category sets

    Hello All ,
    In the inventory module we have Categories concept , once Items are converted into oracle we assign items to categories by using the Mtl_item_categories_interface table , but how do we convert the categories into oracle , do we have any interface tables or any Apis .
    It would be great if any one can help me in this regard...
    Thanks in Advance.....
    SairamGoud.

    Hello Sairam,
    I think there is no such an API : so, for category conversion, we use Dataload tool.
    One thing you can do is running a trace of the creation of a category : that way, you will see all control that are performed during category creation.
    Once the control are performed, you can insert rows with procedure MTL_CATEGORIES_PKG.INSERT_ROW.
    Same method for category sets (package MTL_CATEGORY_SETS_PKG
    )

  • Map Interface Table and API

    Can someone please tell me where is the Oracle Interface tables.
    Thanks

    Hi,
    This is from the Supplier Management modules (Related schema Purchase Order)
    Thanks

  • OTL TIMECARD Interface table - API (urgent)

    hi everybody...
    i want to know if there is an interface tables or API used for OTL Timecard for the integration purpose .
    API is acceptable but interface table is perefable .
    thanks alot ..
    best regards,

    Duplicate post.
    OTL TIMECARD Interface table - API
    OTL TIMECARD Interface table - API

  • AP Expense Report Interface tables

    Hello All,
    I need to Develop AP Expense Invoice Interface for uploading all expense (Travel Claims/Amex Bank Transactions) invoice vouchers from a legacy Application in to Oracle Applications . (Are this Base tables or Interface tables Ap_expense_report_lines_all,Ap_expense_report_headers_all i am confused i have seen the AP User guide i could not find any information realted to this).
    I could figure out that we need to run "Payable Import program' for Expenses and for AP Invoice , Credit memo we use standard "Payable Open import interface Program' ,do we have any table for this or do we need to go for APIs ,if anyone of u know about Interface tables or APIs please post me a message.
    Please let me know the flow of AP Expenses creation.
    Thanks in Advance
    Sairam.

    interface tables or APIs?? - there are not interface API tables for these interface tables. Can u use purchasing API interface tables at all for this interface? i think there r some API interface tabkes avaiable for the interface there - or interface direct to gl usig gl_interface API interface table - or maybe implement oracle intrnet expenses for user interfaces and APIs available - many possible interface table, user interface and API available here

  • Troubles creating table definition in new repositiory

    hi there,
    we installed a designer 6i repositiory on a linux 8.1.7.2 ee server database, all worked fine. installation of the same repositiory version under on a windows 2000 pro system with a 8.1.7.4 ee server database works fine, too. but when trying to create objects in the windows repos we keep getting errors concerning non existing repository objects. example: attempting to create a relational table definition fail with the following stack trace:
    Message
    RME-02105: Oracle error occurred...
    ORA-06550: line 2, column 11:
    PLS-00201: identifier 'CIOTABLE_DEFINITION.DATA' must be declared
    ORA-06550: line 2, column 11:
    PL/SQL: Item ignored
    ORA-06550: line 9, column 3:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 9, column 3:
    PL/SQL: Statement ignored
    ORA-06550: line 10, column 3:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 10, column 3:
    PL/SQL: Statement ignored
    ORA-06550: line 11, column 3:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 11, column 3:
    PL/SQL: Statement ignored
    ORA-06550: line 12, column 3:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 12, column 3:
    PL/SQL: Statement ignored
    ORA-06550: line 13, column 3:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 13, column 3:
    PL/SQL: Statement ignored
    ORA-06550: line 14, col
    Message
    RME-02124: Failed to execute SQL statement: declare
    pl1_el0 CIOTABLE_DEFINITION.data;
    utility varchar2(3);
    curr_el integer;
    begin
    savepoint rm_dispatch;
    rmmes.clear;
    curr_el := 0;
    pl1_el0.i.INDEX_ONLY_FLAG := true;
    pl1_el0.v.INDEX_ONLY_FLAG := :p2_el0;
    pl1_el0.i.COLUMN_PREFIX := true;
    pl1_el0.v.COLUMN_PREFIX := :p3_el0;
    pl1_el0.i.TYPES := true;
    pl1_el0.v.TYPES := :p4_el0;
    pl1_el0.i.IRID := true;
    pl1_el0.v.IRID := :p5_el0;
    pl1_el0.i.IVID := true;
    pl1_el0.v.IVID := :p6_el0;
    pl1_el0.i.NUMBER_OF_TIMES_MODIFIED := true;
    pl1_el0.v.NUMBER_OF_TIMES_MODIFIED := :p7_el0;
    pl1_el0.i.ALIAS := true;
    pl1_el0.v.ALIAS := :p8_el0;
    pl1_el0.i.ID := true;
    pl1_el0.v.ID := :p9_el0;
    pl1_el0.i.NAME := true;
    pl1_el0.v.NAME := :p10_el0;
    pl1_el0.i.JOURNAL_LOCATION := true;
    pl1_el0.v.JOURNAL_LOCATION := :p11_el0;
    pl1_el0.i.DISPLAY_TITLE := true;
    pl1_el0.v.DISPLAY_TITLE := :p12_el0;
    CIOTABLE_DEFINITION.INS(:p1_el0,pl1_el0);
    :errcnt := 0;
    exception when others then
    rmmes.get_error_state(utility,:excode);
    rmmes.get_product(utility,:exprod);
    :exutil := utility;
    :errcnt := rmmes.getsize;
    :sqlcod := SQLCODE;
    :sqlmsg := SQLERRM;
    :currel := curr_el;
    rollback to savepoint rm_dispatch;
    end;
    Message
    RME-00222: Failed to dispatch operation to Repository
    any help appreciated,
    greetings,
    friedrich.

    Hi,
    Actually the errors thrown here are not exactly non-existing database objects.These are Table and API definitions of the repository which are used when you create Database objects.
    You can try by checking if there are any invalid objects in the repository(Compile them first if there are any)and can give it a shot after running a full reconcile of the repository.
    If still the problem persists, can you give the details about which Designer Version you are using.
    Thanks
    Vishal Jain

  • Registration of columns in a table

    Hi,
    I am new in oracle apps.
    Do we need to register all cols. of table while we use flexfields.
    or only the flexfields columns.
    thanks in advance.

    Hi
    You need to register Custom table if using in Oracle Applications.You need to register its columns too.Please refer this link for more details
    http://www.exforsys.com/tutorials/oracle-apps/oracle-apps-table-registration-api.html
    Thanks
    AJ

  • Detailed Documentation on APIs in Oracle HRMS

    Hi,
    I'm interfacing data into Oracle HRMS. Once the data from the flat files is put into the Intermedeate tables, the API and Data pump need to be run.
    Could anybody tell me where I could find detailed documentation about
    1)the HRMS API's,
    2)the Data pump and
    3)which API handles which table's data?
    please put the link in this post or mail it into this account:
    [email protected]
    Thanks in Advance
    KP

    You can refer metalink site and use eTRM site for best information on APIs
    giridharan d
    [email protected]

  • Customer Bank Accounts Interface/API

    Hello guys
    I wonder if you can help me please. I've defined a new bank account in AR and I want to load customers under my new bank account. Is there an Interface or API to programmatically do this? If so, please tell me what interface table or API to use. I'm on Oracle Apps R11.5.10
    Thanks for all you help.

    Hi,
    Review the following links:
    Customer Conversion
    Customer Conversion
    API for loading Bank account details for the Customer
    API for loading Bank account details for the Customer
    Note: 296593.1 - How To Load Banks Into AP Using Ar_bank_directory Table?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=296593.1
    Oracle Integration Repository
    http://irep.oracle.com
    Regards,
    Hussein

  • Tables in PA (Project Accouting)

    Hi Guys,
    I earlier worked on OM Apps,
    now i'm in to new module PA (Project Accouting)
    me being new to this module, can anyone give an overview about this module with the important TABLES, API .......
    if anyone has material on this, it would be great to share...
    thanks in advance,
    Manoj

    Hi Manoj,
    Below is a link to information that will give you some background on the Projects applications. Project Accounting as you refer to is what we usually call Project Costing and Project Billing. Our newer products are Project Management, Project Collaboration, Resource Management and Portfolio Analysis.
    http://www.oracle.com/applications/projects/intro.html
    For a list of common tables and API's you should get your hands on a User Guide which is available to all of our customers.
    Thanks,
    Dean

Maybe you are looking for