Skip to Main Content

Deutsche

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Migration from Forms 11 to 12; Error ADD_PARAMETER

Juergen WitschJan 12 2021

When converting from Forms 11 to 12, we have a problem creating the parameter list.The ORA-6502 error occurs at ADD_PARAMETER. The error did not occur in the running application under Forms 11.
Code example:
PA := GET_PARAMETER_LIST('default');
IF not ID_NULL(PA) THEN
destroy_PARAMETER_List(PA);
END IF;
PA := CREATE_PARAMETER_LIST('default');
ADD_PARAMETER(PA, 'VER_ID_NB', TEXT_PARAMETER, '1');
call_form(lower(:global.form), Hide, DO_Replace, NO_QUERY_ONLY, PA);

Does anyone have any ideas?

This post has been answered by Juergen Witsch on Jan 13 2021
Jump to Answer
Comments
Post Details
Added on Jan 12 2021
1 comment
238 views