API to update the description of the object

Hello

I use the interface tables for updating the item values catalog items in stock. Anyone know how I can update the description of the object automatically as well?

Kind regards
David.

INV_ITEM_CATALOG_ELEM_PUB does this for you in the Process_item_descr_elements procedure by rolling up the values of element and the passage of the description of genrerated to the relevant private API Oracle delimiters.

Kind regards
Noah

Tags: Oracle Applications

Similar Questions

  • API to update the registration number in the VAT for provider/Supplier site

    Hello

    Is there a public API available to update the number of VAT registration for provider or on the website of the provider? I tried the API below with the provider and it did not work.

    DECLARE

    p_api_version NUMBER;

    p_init_msg_list VARCHAR2 (200);

    p_commit VARCHAR2 (200);

    p_validation_level NUMBER;

    x_return_status VARCHAR2 (200);

    x_msg_count NUMBER;

    x_msg_data VARCHAR2 (200);

    lr_vendor_rec apps.ap_vendor_pub_pkg.r_vendor_rec_type;

    lr_existing_vendor_rec ap_suppliers % ROWTYPE;

    l_msg VARCHAR2 (200);

    p_vendor_id NUMBER;

    BEGIN

    -Initialize session apps

    -fnd_global.apps_initialize (1234, 50833, 200);

    -mo_global.init ('SQLAP');

    -fnd_client_info.set_org_context (101);

    -Assign values of base

    p_api_version: = 1.0;

    p_init_msg_list: = fnd_api.g_true;

    p_commit: = fnd_api.g_true;

    p_validation_level: = fnd_api.g_valid_level_full;

    p_vendor_id: = 588011;

    -seller details

    -Disable the seller

    lr_vendor_rec.vendor_id: = 588011;

    lr_vendor_rec.tax_reference: = '123XXX222 ';

    lr_vendor_rec.vat_registration_num: = '123XXX222 ';

    -lr_vendor_rec.end_date_active: = SYSDATE;

    -lr_vendor_rec.enabled_flag: = 'n';

    ap_vendor_pub_pkg.update_vendor (p_api_version = > p_api_version,)

    p_init_msg_list = > p_init_msg_list,

    p_commit = > p_commit,

    p_validation_level = > p_validation_level,

    x_return_status = > x_return_status,

    x_msg_count = > x_msg_count,

    x_msg_data = > x_msg_data,

    p_vendor_rec = > lr_vendor_rec,

    p_vendor_id = > p_vendor_id);

    commit;

    Dbms_output.put_line ('X_RETURN_STATUS =' | x_return_status);

    Dbms_output.put_line ('X_MSG_COUNT =' | x_msg_count);

    Dbms_output.put_line ('X_MSG_DATA =' | x_msg_data);

    IF (x_return_status <>fnd_api.g_ret_sts_success) THEN

    BECAUSE me in 1... fnd_msg_pub.count_msg LOOP

    l_msg: = fnd_msg_pub.get (p_msg_index = > i,)

    p_encoded = > fnd_api.g_false);

    Dbms_output.put_line ('the API call failed with error' | l_msg);

    END LOOP;

    ON THE OTHER

    Dbms_output.put_line ('the API call ended with SUCESSS status');

    END IF;

    END;

    Could you please let me know if there I no API to update the same?

    Kind regards

    BS.

    Who did not even after initialization of applications.

    Could you please suggest is there anything else I need to do? or is there an other API to update the VAT number of the supplier?

    Kind regards

    BS.

  • API to update the PART in R12

    Hi all

    could you please provide me with the API to update the information of GROUP of R12.


    Thank you
    Aush

    Try:

    HZ_PARTY_V2PUB.update_person
    HZ_PARTY_V2PUB.update_group
    HZ_PARTY_V2PUB.update_organization

    It will be useful.

  • API to update the routing resource rates

    Hi all


    I'm working on the routing API.

    I've developed a procedure using the API ' * bom_rtg_pub * ' update the rate / amount and reverse-rate / amount of an item of routing. "



    Now, I want to update the resource costs.

    Navigation:

    Itineraries-> resources.


    In the form of resources after having clicked on the button prices,

    I need to update the cost resource field.



    Please help me to know what's going to serve for this API.


    Thank you
    Roselyne

    Roselyne,

    I don't know what the API is used to update this field. However, you can enable the trace, update the field and generate the TKPROF file. You should find the API you're looking for in the output file then.

    Kind regards
    Hussein

  • Is there an API that updates the e-mail addresses of the employees?

    Quick question - is there an API that updates the e-mail addresses of the employees?
    All of the API used, I see everything just to 'create an employee' - no updates?

    your

    Steven

    Use hr_person_api.update_us_person API from the input parameters required etc...

  • What api to update the additional attributes of the employee

    Hi all

    I created all of my employees using hr_employee_api.create_employee, now I need to update in bulk the additional attributes for each employee (e.g. attribut1, attribut2... etc). What api should I use to do.

    Thanks and greetings

    Zulfiqar haider

    Hello
    I think you can use HR_PERSON_API. UPDATE_US_PERSON to update the attribute columns. Please check in your test before proceeding
    You can use it for your final update in bulk. Hope this helps you.

    Thank you
    Satin

  • update the object attribute table

    Hi all

    I'm trying to populate an attribute on a table of objects and need some ideas on how to do this after an update or insert on
    two relational tables?

    The object table is defined as follows:
    create or replace type ty_gli as object
    (SOB_ID           number
    ,GROUP_ID         number
    ,SOURCE_NAME      varchar2(25)
    ,INTERFACE_RUN_ID number
    ,AUTOPOST_ID      number)
    /
    
    create or replace type tb_gli as table of ty_gli
    /
    The object table is in bulk sampled in an update and The GROUP_ID is applied at the same time as follows:
    update GL_Interface gli
    set    gli.Group_ID  =  Gl_Interface_Control_S.nextval
    where  gli.Accounting_Date <= l_Max_Rate_Date
    and    gli.Set_of_Books_ID = p_SOB_ID
    returning ty_GLI (gli.Set_Of_Books_ID, gli.Group_ID, gli.User_JE_Source_Name, 0, 0)
    bulk collect into l_GLI_Tab;
    An insert then follows, in the course of which the INTERFACE_RUN_ID is obtained from a sequence
    insert into GL_Interface_Control ( JE_Source_Name
                                      ,Group_ID
                                      ,Set_Of_Books_ID
                                      ,Interface_Run_ID)
                               (select gli.Source_Name
                                      ,gli.Group_ID
                                      ,gli.SOB_ID
                                      ,GL_Journal_Import_S.nextval
                                from   table(l_GLI_Tab) gli);
    At this point in the code, preferably before or after insertion.
    I would like to each attribute of the object INTERFACE_RUN_ID table l_GLI_Tab to
    equal to the value inserted into GL_INTERFACE_CONTROL, which has been GL_JOURNAL_IMPORT_S.NEXTVAL

    I thought to do before inserting it in the update, but it doesn't work!
    returning ty_GLI (gli.Set_Of_Books_ID, gli.Group_ID, gli.User_JE_Source_Name, GL_Journal_Import_S.nextval, 0)
    /

    I then thought about that;
    update 
     (select gli.Group_ID
            ,gli.Accounting_Date
            ,gli.Set_of_Books_ID
            ,GL_Journal_Import_S.nextval as Interface_Control_ID
            GL_Interface gli
      set    gli.Group_ID  =  Gl_Interface_Control_S.nextval
      where  gli.Accounting_Date <= l_Max_Rate_Date
      and    gli.Set_of_Books_ID = p_SOB_ID) gli
    set gli.Set_of_Books_ID = p_SOB_ID
    returning ty_GLI (gli.Set_Of_Books_ID, gli.Group_ID, gli.User_JE_Source_Name, gli.Interface_Control_ID, 0)
    but who doesn't either!

    Any help would be appreciated!

    THX

    P;

    I thought to do before inserting it in the update, but it doesn't work!

    returning ty_GLI (gli.Set_Of_Books_ID, gli.Group_ID, gli.User_JE_Source_Name, GL_Journal_Import_S.nextval, 0)
    

    You just need a little change here. Create a function like this

    create or replace function Get_GL_Journal_Import_S return integer
    as
    begin
      return GL_Journal_Import_S.nextval;
    end;
    /
    

    use it in your code

     returning ty_GLI (gli.Set_Of_Books_ID, gli.Group_ID, gli.User_JE_Source_Name, Get_GL_Journal_Import_S, 0)
    

    It should work correctly.

  • API to update the fields in the table cn_payment_transactions_all (OIC module)

    Hello
    I have an obligation to put the lines of Sales Commission (Oracle Incentive Compensation package) waiting for a specific vendor, if the corresponding invoice line has a sum not equal to zero.
    Now to put the commission lines on hold that to date the hold_flag of the cn_payment_transactions_all table is necessary.

    I need help to find the API that I can use to update the hold_flag. I searched on the same metalink but can't find anything suitable.

    Please advice what API should I use or reference where I can find all the documentation on that. Can I update the hold_flag directly in case I can't find any API for updating this indicator.

    Thanks in advance...

    Concerning
    Lucile

    Published by: user10816003 on December 28, 2009 06:05

    Update of the base tables directly without using the approved API is not supported by Oracle, and may leave your database damaged without repair possible. If you can't find the information you need in the User Guides or ETRM, pl open an SR with the applicant for assistance on how to get what you need to support.

    HTH
    Srini

  • Update the object programmatically view the data in

    I want to update database registration. Now, I'll have the view object, I have to change the folder for example id = 101 name = john is my old record, my new record will be id = 101 name = sundar.
    I want to do it programmatically.

    am.getDBTransaction () .commit ();

  • problem updating the ini file ini file

    I get the ip address of the user's input and to replace the old IP in the .ini to the last ip address file but the problem is when a user enter the IP and I write it in my ini file it does not at once, but if I do it twise in calling the same function of my command button twise then my ini file is updated , it is the strage iniwrite function returnes success although on first attempt. I checked with breakpoint, but when I do it twise, then it is done, please guide me in detail, I am really amayzed by this strange behavior...

    I already gave you the exact order of the functions in my previous message!

    Ini file tool generates an object in memory that allows you to store and locate the values. This object can be filled in reading a file on the disk; Similarly, it can be saved to a file on disk. This is the very first operation and the last to perform if you want a picture to date of your values on the disk. There are three layers to consider:

    1. The file on the disk

    2. The IniText object in memory

    3. The variables specific to your program

    With this in mind, the right order to update the file on the disk so that it reflects the value that your variables have in memory is:

    Ini_New create the object in memory

    Ini_ReadFromFile fill it with the contents of the disc

    Ini_get('sendmail_from') read of the idebugprogramnode2 memory in your program variables

    Here tou can update the values of program

    Ini_Put update the object of memory with the contents of your variables

    Ini_WriteToFile save everything on the disc

    Memory Ini_Dispose clear

    As you save on disk before you call the Ini_Put functions, the disk image is not updated

  • Change of address updates the Per_All_Assignments_F table Last_Update_Date

    I run a report with logic based on changes last_update_date on table per_all_assignments_f.
    Something that surprises me is that when we change detail address of the person. for example address line 1 only and no other changes, what it does is, it updates the field Last_Update_Date in the Per_All_Assignments_F table. We don't change any detail in Per_All_Assignments_F, but again whenever we change detail address, we found that the Per_All_Assignments_F table last_update_date has updated.

    Is there a link between the assignment and address or address change trigger some tax API that updates the field Last_Update_Date of the Per_All_Assignments_F table?

    Hello

    I'm not good at the technical aspect, but update the personal address of the employee should not affect PER_ALL_ASSIGNMENTS_F TABLE provided there is no trigger custom or defined alerts.

    You can use below two queries to know the same thing: -.

    Select * from apps. ALR_ALERTS where TABLE_NAME = 'PER_ALL_PEOPLE_F' and ENABLED_FLAG = 'Y ';
    SELECT trigger_name, table_name, status FROM dba_triggers WHERE table_name LIKE '% PER_ALL_PEOPLE_F % ';

    Also if the last_update_date is changed to per_all_assignemnts_f table, consult another column in the table is updated, this may give you some clues.

    BTW, what is your law. In Saudi Arabia, I have tested and it has no bearing on the PER_ALL_ASSIGNMENTS_F table.

    Thank you
    Avinash

  • There the rest APIs to retrieve the metadata for entity for eloqua objects?

    There is a list of all the objects that are accessible by the REST for CRUD in this link: REST API - Documentation for kernel objects in the objects of the core section.

    For each of the objects listed in the objects of the core section are there is a metadata field in the Properties section.

    For example, for the purpose of the e-mail message, The REST API - to access Emails , under the Properties section, there entered corresponding to the fields of the object of the emails under the
    Name, Type, Description and validation topics.

    Is there a REST API to retrieve the same information, i.e. metadata field for an object programmatically eloqua?
    Otherwise, this is a serious obstacle to building systems that are the metadata engine and support for SOAP is removed...

    The closest to what you are looking for would be endpoints of assistance for a description of the fields. Example of /api/bulk/1.0/contact/fields

    {

    "items": [{}

    'name': "E-mail address",

    "internalName": "C_EmailAddress",

    'dataType': 'emailAddress;

    'hasReadOnlyConstraint': false,

    'hasNotNullConstraint': false,

    'hasUniquenessConstraint': true,

    'Déclaration': '{{Contact.Field (C_EmailAddress)}}.

    "uri": "/ contact/field/100001",

    "converted': ' / Date (-2208970800000) /"

    'updatedAt': ' / Date (-2208970800000) / ".

    },

    {

    'name': "First name",

    "internalName": "C_FirstName",

    'dataType': "string",.

    'hasReadOnlyConstraint': false,

    'hasNotNullConstraint': false,

    'hasUniquenessConstraint': false,

    'Déclaration': '{{Contact.Field (C_FirstName)}}.

    "uri": "/ contact/field/100002."

    "converted': ' / Date (-2208970800000) /"

    "updatedBy": "MgrzzzOracleCloudSupportP01E10",

    'updatedAt': ' / Date (1408993722380) / ".

    },.....

    If so, it will also include an element "defaultValue". How many characters you can store in a field (precision) is documented here: Type of data (data and Digital Formats). The same endpoint exist in bulk 2.0, and there are variants for the account fields and Objetpersonnalise. Another exists in the REST through Api/rest/2.0/assets/contact/fields?depth=complete... It does not include the declaration of ML, but there other useful information such as the type of default update and a flag 'isAccountLinkageField '.

    Similarly, if you describe a form via SOAP or REST, it also will give you the fields and their type.

    Kind regards

    Bojan

  • Problem update the payload using the API of Services of Workflow task

    I have problems to update the part of the payload of a task by using the API of Services of Workflow (10.1.3) using the SOAP protocol. Try to use the setPayloadAsElementmethod, it seems, that the element of the payload is deleted rather than being defined.

    The purpose of the payload is constructed as follows:

    DocumentBuilder builder is DocumentBuilderFactory.newInstance () .newDocumentBuilder ();.
    Document document = builder.newDocument ();

    Support useful item = document.createElementNS ("http://xmlns.oracle.com/bpel/workflow/task", "payload");
    Child element = document.createElementNS ("http://xmlns.oracle.com/pcbpel/test/order", "command");
    payload.appendChild (child);

    The following lines are used to retrieve and update the subject of the task:

    IWorkflowContext context = getWorkflowContext (userId);
    Task task = taskQueryService.getTaskDetailsById (context, taskId);

    task.setPayloadAsElement (payload);
    taskService.updateTask (context, task);

    However, for some reason, it seems that the payload is not set correctly and in time updateTask is called on the TaskService object, payload of the task is not available. In turn, this causes an error when the SOAP request must be encoded (since the WorkflowTask schema requires a "payload" element).

    I run the code in a debugger and noticed that the the task object has a field nodeArray, which initially contains an element of payload. After the call to setPayloadAsElement has been run, no element of the payload is present in the field of the nodeArray and the mIsPayloadChanged field has been set to true.

    Code is taken almost directly from one [example in the documentation of the API: http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28985/oracle/bpel/services/workflow/task/model/TaskType.html#setPayloadAsElement_org_w3c_dom_Element _] and I'm completely lost as what to do differently. Could there be a problem with the way the Document object is built?

    Everyone knows about similar problems? Any guidance would be appreciated.

    See you soon,.
    Emil

    P.S. I also tried to spend in an element of payload without child element that does not work either.

    Hi Emil,

    Your code looks ok. However, I use the oracle.bpel.services.common.util.XMLUtil object to generate the document object.

    Document document = XMLUtil.createDocument ();

    was soon Nicolas

  • I use iWeb to update a Web site and the objects appear in Safari unless you have a hyperlink when they download.  Is it because iWeb can only support a limited number of links, hypertext, or any other reason?

    I use iWeb to update a Web site and the objects appear in Safari unless you have a hyperlink when they download.  Is it because iWeb can only support a limited number of links, hypertext, or any other reason?

    It has been much discussed.

    See my solution in this post:

    Re: Re: iWeb Publishing Solution in El Capitan

  • Public API for update of the Phase of time because any spending Plan and revenue Plan

    Hello

    Is there a public API on draft update of the Phase of time against zero in terms of spending and revenue Plan?

    Steps to manually configure the time Phase for the spending and revenue plan Plan:

    Project > finance > Budgets and forecasts > change the scheduling Options > click OK > select Plan type Budget > change > tab parameters of the Plan:

    On the spending Plan section > time Phase = "period of PA.

    On the revenue plan section > time Phase = "period of PA.

    I followed note 1292958.1 to check what are all the APIs available on projects now but I do not find any API for the Phase of time.

    Thank you

    Diana

    A colleague helped me with a response.

    According to the 1295817.1 note - you can use the PA_BUDGET_PUB. UPDATE_BUDGET API to change the setting time_phased_code on 'P' (PA_Period), 'G' (GL_Period) or "n" (no steps) as well as the version of the financial plan information.

    Thank you

    Diana

Maybe you are looking for

  • Blocked loading bar

    I was installing El Capitan on my mac pro when you are connected to the battery and I left the room. When I got home, I saw that he was in the screen of the Apple with the loading at some point bar, but without informing the rest of the installation

  • Upgrading RAM on Satellite C660 - 2-7

    I want to upgrade the ram on my C660 - 2 7 4 to 8 GB, anyone know if these modules work in what they are cheaper than those essential basic? I am aware that they will be clocked up to 1066 mHz Thank you

  • HP presario cq43: communication controller pci simple

    Hi guys, can someone help my find the driver for the controller of communication simple pci? the hardware IDS are PCI\VEN_8086 & DEV_1C3A & SUBSYS_3672103C & REV_04PCI\VEN_8086 & DEV_1C3A & SUBSYS_3672103CPCI\VEN_8086 & DEV_1C3A & CC_078000PCI\VEN_80

  • How can I stop HP 6510 Photosmart print today's date.

    The printer automatically prints on each letter or photo today's date in XP, Word, Picasa, etc. A copy of photo of the ruins and is irrelevant on professional texts. Connected by USB, I do not use wireless. Does not happen in the analyses.

  • Readjust the plan...

    If I choose an annual plan with monthly payment, you can have certain conditions this year? Or the same monthly amount duarante per year?