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.
This promise is immense; every day and every night, we are trying our best to fulfill it by helping others, leaving something worthwhile behind us, and living for a purpose that is "Enrich & Spread knowledge everywhere".
API 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 lessREP-0118 unable to create temporary file
Hi @matheo, This REP-0118 error is raise because of issue with temporary file path for report builder that specified with folder that you don't have access to. To fix this issue you have to change temporary path in windows registry by following the steps below: Navigate to run from Start Taskbar. TRead more
Hi matheo,
This REP-0118 error is raise because of issue with temporary file path for report builder that specified with folder that you don’t have access to.
To fix this issue you have to change temporary path in windows registry by following the steps below:
Hopefully that will help you.
Best Regards.
See lessORA-29275 partial multibyte character
Hello Rain , Oracle Descritption for this error is given below: ORA-29275: partial multibyte character Cause: The requested read operation could not complete because a partial multibyte character was found at the end of the input. Action: Ensure that the complete multibyte character is sent from theRead more
Hello Rain ,
Oracle Descritption for this error is given below:
ORA-29275:
partial multibyte character
Cause: The requested read operation could not complete because a partial multibyte character was found at the end of the input.
Action: Ensure that the complete multibyte character is sent from the remote server and retry the operation. Or read the partial multibyte character as RAW.
Mainly reason for this type or ora error is that there is a junk/invisible or special character available ,but unfortunately the cause and action that oracle give it to us is not that much descriptive, so to investigate more and figure out the problem and fix it let’s try this:
First try to select columns individually like below example:
until reach to the column that causing your problem and raise this ORA error.
so far so good for now that we identified the column that has junk/invisible character we can fetch the column data and overcome this issue by using CONVERT function in oracle like below example :
Hope that this answer was helpful.
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 lessAPI 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 lessHow to Import or include a JavaScript file inside another JavaScript file?
Earlier javascript was not having any feature to import and export javascript but since the discovery of ECMAScript 6 (or ES6) you can use the export or import statement in a JavaScript file to export or import variables, functions, classes, or any other entity to/from other JS files. Suppose we havRead more
Earlier javascript was not having any feature to import and export javascript but since the discovery of ECMAScript 6 (or ES6) you can use the export or import statement in a JavaScript file to export or import variables, functions, classes, or any other entity to/from other JS files.
Suppose we have two files named script.js and app.js and you want to export variables and functions script.js to app.js Then in the “script.js” file you need to write the export statement as shown in the following example:
Example :
let message = “Hi How are you doing?”;
const PI = 3.14;
function addNumbers(a, b){
return a + b;
}
// Exporting variables and functions
export { message, PI, addNumbers };
And in the “app.js” file you need to write the import statement as shown below:
import { message, PI, addNumbers } from ‘./script.js’;
console.log(message); // Prints to the console : Hi How are you doing?
See lessconsole.log(PI); // Prints to the console : 3.14
console.log(addNumbers(10, 10)); // Prints to the console : 20
How to get input in java?
In Java the Scanner class allows the user to take input from the console. It belongs to the java.util package.It is used to read the input of primitive types like int, double, long, short, float, and byte. You can use this example below to understand the way the Scanner class helps to take input froRead more
In Java the Scanner class allows the user to take input from the console. It belongs to the java.util package.It is used to read the input of primitive types like int, double, long, short, float, and byte.
You can use this example below to understand the way the Scanner class helps to take input from the user
import java.util.*;
See lessclass UserInputDemo1
{
public static void main(String[] args)
{
Scanner sc= new Scanner(System.in); //System.in is a standard input stream
System.out.print(“Enter your name: “);
String str= sc.nextLine(); //reads string
System.out.print(“Your name is : “+str);
}
}
Output :
Your name is : Sourav //In this case I have taken Input as Sourav so it is printing in the console as Your name is : Sourav
APP_SPECIAL
Hi, APP_SPECIAL Program unit (Package) is a part of APPCORE.pll library, so if you open APPCORE.pll or APPCORE2.pll on oracle form builder you will find the source code of APP_SPECIAL inside. Note: APPCORE2.pll is a duplicate of APPCORE.pll, however APPCORE2.pll is shared a cross custom.pll while APRead more
Hi,
APP_SPECIAL Program unit (Package) is a part of APPCORE.pll library, so if you open APPCORE.pll or APPCORE2.pll on oracle form builder you will find the source code of APP_SPECIAL inside.
Note: APPCORE2.pll is a duplicate of APPCORE.pll, however APPCORE2.pll is shared a cross custom.pll while APPCORE.pll is referenced inside the standard forms itself. So whenever we want to use APPCORE inside custom.pll we have to use APPCORE2 not APPCORE
Regards.
See lessHow to delete concurrent program in oracle apps from front end ?
Hi Maram, You can`t delete by the front end, but by the back end; The API call to delete Concurrent Program fnd_program.delete_program (l_prog_short_name, l_appl_full_name); The API call to delete Executable fnd_program.delete_executable (l_exec_short_name, l_appl_full_name);
Hi Maram,
You can`t delete by the front end, but by the back end;
The API call to delete Concurrent Program
fnd_program.delete_program (l_prog_short_name, l_appl_full_name);
The API call to delete Executable
fnd_program.delete_executable (l_exec_short_name, l_appl_full_name);
See lessValueError: invalid literal for int() with base 10: ” Python 3
The error message invalid literal for int() with base 10 would seem to indicate that you are passing a string that's not an integer to the int() function . In other words it's either empty, or has a character in it other than a digit. You can solve this error by using Python isdigit() method to checRead more
The error message invalid literal for int() with base 10 would seem to indicate that you are passing a string that’s not an integer to the int() function . In other words it’s either empty, or has a character in it other than a digit.
You can solve this error by using Python isdigit() method to check whether the value is number or not. The returns True if all the characters are digits, otherwise False .
if val.isdigit():
The other way to overcome this issue is to wrap your code inside a Python try…except block to handle this error.
Python2.x and Python3.x
Sometimes the difference between Python2.x and Python3.x that leads to this ValueError: invalid literal for int() with base 10 .
With Python2.x , int(str(3/2)) gives you “1”. With Python3.x , the same gives you (“1.5”): ValueError: invalid literal for int() with base 10: “1.5”.