numeric or value error: character string buffer too small
Hi All.
Does anyone know if there is a fix for this case?
In APPS10 UPD17, using mobile Aurena apps MWO Maintenance, I’m getting this error as the user sign in eform.
All of the other answers sync but the SIGNATURE no.
My event is based on the SIGNATURE answer.
This happens for a couple of users. I think maybe is the size of the signature that They do.
ORA-20105: FndEventAction.EVENT_ACTION_ERROR: The Event Action "Execute Online SQL" on "C_MOBILE_NAO_CONFORM" has failed. Please contact your System Administrator to manage the Event Actions. ORA-06502: PL/SQL: numeric or value error: character string buffer too small ORA-06512: at "IFSPET.ERROR_SYS", line 140 ORA-06512: at "IFSPET.ERROR_SYS", line 341 ORA-06512: at "IFSPET.FND_EVENT_ACTION_API", line 2195 ORA-06512: at "IFSPET.FND_EVENT_ACTION_API", line 2201 ORA-06512: at "IFSPET.EVENT_SYS", line 200 ORA-06512: at "IFSPET.EVENT_SYS", line 200 ORA-06512: at "IFSPET.C_MOBILE_NAO_CONFORM_EVU", line 28 ORA-04088: error during execution of trigger 'IFSPET.C_MOBILE_NAO_CONFORM_EVU' ORA-06512: at "IFSPET.JT_TASK_SURVEY_ANSWERS_API", line 1221 ORA-06512: at "IFSPET.JT_TASK_SURVEY_ANSWERS_API", line 1231 ORA-06512: at "IFSPET.MAINT_ENG_APP_SVC", line 38280 ORA-06512: at "IFSPET.MAINT_ENG_APP_SVC", line 38285 ORA-06512: at "IFSPET.MAINT_ENG_APP_SVC", line 37759 ORA-06512: at "IFSPET.MAINT_ENG_APP_SVC", line 37764 ORA-06512: at line 2
Page 1 / 1
@lopespetro based on the stack trace, it looks like this originates from a package C_MOBILE_NAO_CONFORM_EVU which looks like a customization. Is this indeed a customization and have you looked at the logic there? It looks like you’re trying to read Signature into a VARCHAR2 that’s too small.
Hope this helps!
Rukmal
@lopespetro based on the stack trace, it looks like this originates from a package C_MOBILE_NAO_CONFORM_EVU which looks like a customization. Is this indeed a customization and have you looked at the logic there? It looks like you’re trying to read Signature into a VARCHAR2 that’s too small.
Hope this helps!
Rukmal
Hi @Rukmal Fernando , tks for the info. This is the trigger created by IFS and do you have any ideia how to fix this error?
it’s strange because the SGNATURE is not inside it. Just in the code.
BEGIN IF ('&NEW:ANSWER' = 'SIGNATURE' AND '&OLD:ROWVERSION' IS NOT NULL AND '&NEW:ROWVERSION' IS NOT NULL) THEN survey_rec_ := Get_Surveys;
CREATE OR REPLACE TRIGGER IFSPET.C_MOBILE_NAO_CONFORM_EVU AFTER UPDATE ON JT_TASK_SURVEY_ANSWERS_TAB FOR EACH ROW BEGIN
Hi, maybe you can check the underlying table where the signature will be saved in the database.
This error indicates to me that the underlying table or column for the signature may be to small
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at "IFSPET.JT_TASK_SURVEY_ANSWERS_API", line 1221 ORA-06512: at "IFSPET.JT_TASK_SURVEY_ANSWERS_API", line 1231
Hi, maybe you can check the underlying table where the signature will be saved in the database.
This error indicates to me that the underlying table or column for the signature may be to small
ORA-06502: PL/SQL: numeric or value error: character string buffer too small
ORA-06512: at "IFSPET.JT_TASK_SURVEY_ANSWERS_API", line 1221 ORA-06512: at "IFSPET.JT_TASK_SURVEY_ANSWERS_API", line 1231
Hi, I took a look but I could not find anything related. Cloud you guys help me see the logs and check if there is something wrong?
It’s strange that I tested with another IOS phone and the same version 17.4.1 and worked. The user already cleaned data and cache but still getting this problem.
@Rukmal Fernando , @Bjornar Brekka
Logs in attach.
A good example is april 12, the server synced all the answers except the signature.