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.
API to delete ap invoice in oracle apps ?
Hi @Marito You cannot delete the invoice. Only canceling the invoice is possible. CANCELLING INVOICE RESTRICTIONS: INVOICES TO WHICH YOU HAVE APPLIED PREPAYMENTS: You cannot cancel an invoice to which you have applied a prepayment. You must first reverse the prepayments. INVOICES YOU HAVE MATCHED TORead more
Hi Marito
You cannot delete the invoice. Only canceling the invoice is possible.
CANCELLING INVOICE RESTRICTIONS:
INVOICES TO WHICH YOU HAVE APPLIED PREPAYMENTS: You cannot cancel an invoice to which you have applied a prepayment. You must first reverse the prepayments.
INVOICES YOU HAVE MATCHED TO PERMANENTLY CLOSED PURCHASE ORDERS: You cannot cancel an invoice that you matched to a permanently-closed purchase order.
PREPAYMENTS: You cannot cancel a prepayment that you have applied to an invoice. You must first unapply any prepayments and void the payment that paid the prepayment. You can then cancel the prepayment.
GL DATE: You cannot change the GL Date if you use Encumbrance and the distribution has been encumbered or is part of a reversal pair.
The only way to do is to void the payment then cancel the invoice from invoice workbench only.
Hope that may help.
Regards.
See lessPython new line
Hi you can use "/n" like this example: myString = "I likenPython Programming Language" file.write(myString) result is: I like Python Programming Language
Hi
you can use “/n” like this example:
result is:
What is FNDLOAD Commands to Download and Upload Concurrent Program ?
Hi @albert FNDLOAD to download concurrent program from the source instance: FNDLOAD apps/apps O Y DOWNLOAD $FND_TOP/patch/115/import/afcpprog.lct XX_CUSTOM_CP.ldt PROGRAM APPLICATION_SHORT_NAME="INV" CONCURRENT_PROGRAM_NAME="XX_CONCURRENT_PROGRAM_SHORT_NAME" FNDLOAD to upload concurrent program to dRead more
Hi albert FNDLOAD to download concurrent program from the source instance:
FNDLOAD to upload concurrent program to destination instance:
Notes:
How to list all OAF customizations of a particular instance ?
Hi @Chandra You can use this query to list all customizations across all modules SELECT PATH.PATH_DOCID CUSTM_DOC_ID, JDR_MDS_INTERNAL.GETDOCUMENTNAME (PATH.PATH_DOCID) CUSTM_DOC_PATH FROM JDR_PATHS PATH WHERE PATH.PATH_DOCID IN (SELECT DISTINCT COMP_DOCID FROM JDR_COMPONENTS WHERE COMP_SEQ = 0 ANDRead more
Hi Chandra
You can use this query to list all customizations across all modules
and if you want to get only specific module you can use following query:
See lessHow to find dbc file in oracle apps ?
Hello @chandra to find dbc file in release 11i $FND_TOP/secure and to find dbc file in release 12 $INST_TOP/appl/fnd/12.0.0/secure hope this help.
Hello Chandra
to find dbc file in release 11i
and to find dbc file in release 12
hope this help.
See lessWhat does this sign operator “+=” do in java?
Hi @Olivier, it common that z += 5.6 are equivalent to z = z + 5.6, it's one the assignment operators it takes the value of z then add 5.6 to it and at the end store the new result into z ex: double z = 5.5 z += 0.1 // the result of z now is : (5.6) but be careful in java because if "z" is not of tyRead more
Hi Olivier,
it common that z += 5.6 are equivalent to z = z + 5.6, it’s one the assignment operators it takes the value of z then add 5.6 to it and at the end store the new result into z
ex:
but be careful in java because if “z” is not of type double you will get an compilation error.
hope this help.
How to open custom.pll in form builder?
Hello Alan, It's so simple as you open regular form .fmb in form builder just follow this: First you need to download then latest version of CUSTOM library that comes with your Oracle EBS version. (downloaded from production server). You can find the path of CUSTOM.pll under ($AU_TOP/resources) foldRead more
Hello Alan,
It’s so simple as you open regular form .fmb in form builder just follow this:
Error APP-OFA-47227 ‘You must set up the category with default depreciation rules for at least one date range’ When Define a new Assets Category
Hello PraveenM, this error came because there is a setup of default rule was missing when you want to create new asset category. just follow this steps to complete your setup required: Navigate to Responsibility FA manager > Setup > Asset System > Category Ensure that, at the bottom of theRead more
Hello PraveenM,
this error came because there is a setup of default rule was missing when you want to create new asset category.
just follow this steps to complete your setup required:
Navigate to Responsibility FA manager > Setup > Asset System > Category
Ensure that, at the bottom of the page, there is a Default rules button.
Enter the mandatory information in the second page for Default rules and Save.
Once the category book is defined with the default rules and saved, there should be no error.
See lessHow to create synonym in oracle ?
Hello Amira, synonyms is an alternative name for objects such as tables, views, sequences, stored procedures, and other database objects. You generally use synonyms when you are granting access to an object from another schema and you don't want the users to have to worry about knowing which schemaRead more
Hello Amira,
synonyms is an alternative name for objects such as tables, views, sequences, stored procedures, and other database objects.
You generally use synonyms when you are granting access to an object from another schema and you don’t want the users to have to worry about knowing which schema owns the object.
and here is the syntax to create synonym
Example:
Hope this help.
See lesshow can i get PO Revision History details – oracle EBS R12?
Hello Chandra, First thing the revision tables is: po_headers_all, po_headers_archive_all, po_lines_archive_all, po_line_locations_archive_all and po_distributions_archive_all Note: How the Purchasing Archive tables are updated when using Archive on Approve method for archiving (To setup Archive onRead more
Hello Chandra, First thing the revision tables is:
Note: How the Purchasing Archive tables are updated when using Archive on Approve method for archiving (To setup Archive on Approve go to Setup -> Purchasing -> Document Types) and here an example to understand and to get the revision’s of PO 1- We created new PO, sent it for approval 2- PO Approved Now run this query :
which is (&p_po_header_id) is ID for po has been created above. and here is the result expected:
3- Now add a new line in PO, then sent it for reapproval. 4- PO Approved Now run this query
So now from archive table you can get all revisions for particular PO.
See less