Question

not able to create sales quotation due to error message in opportunity

  • 29 March 2022
  • 3 replies
  • 106 views

Userlevel 2
Badge +6

not able to create a sales quotation for following opp because of this error message. We already deleted some notes but this doesn´t help.

 

the error is: 

Server error messages:
86c77f28-8f36-489a-b91c-eb8531d13707

Ifs.Fnd.FndSystemException: Unexpected error while calling server method AccessPlsql/Invoke ---> Ifs.Fnd.FndServerFaultException: ORA-06502: PL/SQL: numeric or value error: character string buffer too small

Failed executing statement (ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at line 20)

 

Any ideas/suggestions on the cause and how to resolve please


This topic has been closed for comments

3 replies

Userlevel 5
Badge +13

Hi @mick.colpitts,

Do u have access to PLSQL developer?

If yes, can you open up a debug console.
When you get this error, it will be visible in RED , copy that block and execute it in PLSQL via a TEST BLOCK.

From there you can trace the full path of the error.

Best Regards,
Bhagya

 

 

Badge

Hi @mick.colpitts ,

That issue most of the times is due to trying to assign a large value to a smaller variable, perhaps a text note with more than 2000 characters into a VARCHAR2(2000) field.

As Bhagya suggests, open Debug Console, if you have access use PLSQL Develpover and copy the trace to a TEST Window, execute the TEST and the error trace show you which field/variable is the cause of the error.

Regards,
Pedro

Userlevel 7
Badge +31

Hi @mick.colpitts,

In addition to what Pedro and Bhagya has mentioned above, this could also be caused when the relevant database objects are compiled as BYTE instead of CHAR. Please go though the following post and the response marked as answer for details on how to check and fix it if that is the issue.

 

Hope this helps!