ORA Errors
***ORA ERROR NUMBERS & FIX**
Error: ORA-00917: missing comma for an INSERT statement.
Fix: additional ( ' ) is present in the data which might interfere with the string being inserted.
ex: SPANISH USER' S to be replaced with SPANISH USERS
Error: ORA-06512: Indicates the line number at which the unhandled error occurred.
Fix Use DBMS_UTILITY.format_error_backtrace
ex: FND_FILE.PUT_LINE(FND_FILE.log, DBMS_UTILITY.format_error_backtrace);
Error: ORA-02251: Sub-Query not allowed in here --(in triggers)
Fix: Use CASE and EXISTS in select statement to capture value and validate with IF condition
example:
Fix: increase the length of the column in value set definition
Error: ORA-06502: PL/SQL: numeric or value error: character string buffer too small
Fix: Occurs when string variable is passed in as Number variable (ex: while calling procedures etc.,) make sure to pass in correct data type
API Error:
Fix: Occurs when string variable is passed in as Number variable (ex: while calling procedures etc.,) make sure to pass in correct data type
API Error:
ONTOE_INVALID_ATTRIBUTENATTRIBUTEShipping Method1.ONTOE_INVALID_ATTRIBUTENATTRIBUTEShipping Method
Fix: Use correct ship Method Code as input to API. Not ship method meaning.
API Error: ONTOE_SCH_OVER_ATP_NO_AUTH_MOD1.ONTOE_SCH_OVER_ATP_NO_AUTH_MOD
Fix: Make sure ATP profile Flag is unchecked and user profile enabled.
Comments
Post a Comment