Sign Up to our social questions and Answers to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers to ask questions, answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Oracle Ebs Api’s
API to close workflow notifications in Oracle APPS R12
You can use the following script to close a workflow notification from the backend using API: ------------------------------------------ -- Description: API to close Workflow Notification in oracle EBS R12 -- nid - Notification Id -- resp - Respond Required? 0 - No, 1 - Yes -- responder - User or roRead more
You can use the following script to close a workflow notification from the backend using API:
In the above example we created a cursor that fetchs the open notifications in HRMS which is HRSSA workflow item type and we have used the NOTIFICATION_ID if we need to close specific notification. We have used WF_NOTIFICATION standard package to achieve our goal.
See lessINV_ITEM_CATEGORY_PUB.update_category_assignment API returned status ‘E’ but without error message
Sometimes this due to Item Categories Key flexfields needs to be recompiled. So, follow this steps to recompile Item Categories KFF: Go to System Administrator > Application > Flexfield > Key > Segments Query for: Flexfield - Item Categories Query or Select your KFF Structure Uncheck theRead more
Sometimes this due to Item Categories Key flexfields needs to be recompiled.
So, follow this steps to recompile Item Categories KFF:
Flexfield – Item Categories
Now retest the API again.
See lessPayables Import Invoices
Unfortunately, you can't achieve this kind of requirement without create a distribution set as per Oracle note Doc ID 1954890.1 Also currently there is no an API or interface table available to create a new distribution set from the backend. The only way is to create a temporary distribution set andRead more
Unfortunately, you can’t achieve this kind of requirement without create a distribution set as per Oracle note Doc ID 1954890.1
Also currently there is no an API or interface table available to create a new distribution set from the backend. The only way is to create a temporary distribution set and delete it’s account distributions once you have done from your task.
If you go with creating distribution set you have to pass either distribution_set_id or distribution_set_name while populating “ap_invoice_lines_interface” interface table.
See lessAPI to update AR invoice in oracle apps R12?
Hello @matheo, Unfortunately this functionality doesn't exist until now. There is no Public API available from Oracle to update AR invoice. And regarding the API you mentioned in your question it's not the correct API, and please don't use it because basically it's not public and official released fRead more
Hello matheo,
Unfortunately this functionality doesn’t exist until now. There is no Public API available from Oracle to update AR invoice.
And regarding the API you mentioned in your question it’s not the correct API, and please don’t use it because basically it’s not public and official released from oracle as per this Doc ID 1388129.1.
The only way for now to update AR transaction is to perform this action from application specifically from transaction workbench.
Hope That will help you.
Best Regards.
See lessHow to Cancel payable invoice using API in oracle apps?
Hi @Sanjeeb Sorry to till you that canceling invoice using API ( AP_CANCEL_PKG.AP_CANCEL_SINGLE_INVOICE) is not supported from oracle as per this note Doc ID 1568115.1 You can only use the Invoice Workbench (Or the Payment Workbench) to cancel the invoice. It is not supported to cancel the Invoice uRead more
Hi Sanjeeb
Sorry to till you that canceling invoice using API ( AP_CANCEL_PKG.AP_CANCEL_SINGLE_INVOICE) is not supported from oracle as per this note Doc ID 1568115.1
Note: above API is published on the internet on different blogs, but it’s not supported.
See lessWhen creating a Work Request via the APIs am I able to set the CREATED_BY?
by default who columns as (CREATED_BY) is one of them is handled automatically from oracle by database triggers like HRMS and when you call any API's from sql*plus or sql developer. who columns are set also automatically by anonymous user. but still you can control of this behavior by calling fnd_glRead more
by default who columns as (CREATED_BY) is one of them is handled automatically from oracle by database triggers like HRMS and when you call any API’s from sql*plus or sql developer. who columns are set also automatically by anonymous user.
but still you can control of this behavior by calling
before call your API. but keep in mind that it is your responsibility to pass in valid values, as incorrect values are not rejected.
Regards.
See lessIt’s possible to call an oracle API from custom schema ?
it's better and recommended from oracle to create your procedure on apps schema not on your custom schema. regards.
it’s better and recommended from oracle to create your procedure on apps schema not on your custom schema.
regards.
See lessWhy fnd_global.conc_request_id returns -1 ?
hello Alan The problem is that your request is not being submitted properly then it will be whatever fnd_global returns, which is most likely -1.
hello Alan
The problem is that your request is not being submitted properly then it will be whatever fnd_global returns, which is most likely -1.
See lessHow to SKIP or RETRY an oracle workflow by API from database ?
Hi Saly, this script to RETRY workflow from the backend BEGIN wf_engine.handleerror ( itemtype => ‘APINVAPR’, itemkey => 5211111_1, activity => ‘ESCALATE_DOC_APPROVAL’, command => ‘RETRY’, RESULT => NULL ); COMMIT; END; and here you can find the script for the SKIP workflow BEGIN wf_eRead more
Hi Saly,
this script to RETRY workflow from the backend
and here you can find the script for the SKIP workflow
Note :
itemtype: this is the item type of the workflow
itemkey: this is a unique key you give to workflow
activity: is the point for the activity internal name which you need to retry or skip.
API to create and update Inventory Items in Oracle Apps R12
Hello @Jone, you can create or update inventory item by using API (ego_item_pub.process_item) and this an example : Note : before using both API's be aware that we are not committing the changes. You have to perform explicit commit manually from IDE or set parameter (p_commit = 'T') to commit yoRead more
Hello Jone, you can create or update inventory item by using API (ego_item_pub.process_item) and this an example :
Note : before using both API’s be aware that we are not committing the changes. You have to perform explicit commit manually from IDE or set parameter (p_commit = ‘T’) to commit your changes.
— By executing above code we have updated item description to be “Oraask test description” for inventory item id “53899”
See less