Forms error messages [message #80665] |
Tue, 29 October 2002 03:31  |
Valerie
Messages: 3 Registered: October 2002
|
Junior Member |
|
|
Hi to all Forms experts,
I have got an error message in a master-details forms.
Then error invoke after the WHEN-NEW-FORM-INSTANCE
and the ON-ERROR is on my master block which is
ART_KVI_PERIOD.
My details block is COMPETITOR_PERFORM.
This error message is
FRM-41072 - Cannot create Group COMPETITOR_PERFORM_DYN_VA_ITEMS.
Follow by this error,
FRM-41079 - Error adding Group Column
FRM-40733 - PL/SQL built-in SET_GROUP_CHAR_CELL failed.
Do you have any idea what is happening?
I don't think I create any group?
I don't know what type of group is the system is talking about.
Any idea where should I focus to remove the error?
Thank you very much in the assistance.
Regards,
Valerie
|
|
|
Solution is probably to shorten the name of the block [message #80669 is a reply to message #80665] |
Tue, 29 October 2002 13:50   |
Cor Lieftink
Messages: 1 Registered: October 2002
|
Junior Member |
|
|
Hi Valerie,
I think the solution of your problem is too shorten the name of your details block.
The group the forms tries to make, is that of a record group. A record group is a data-structure similar to that of database. The forms use this datastructure to store the information it retrieves from the database. The name of a record group cannot exceed 30 characters.
The name COMPETITOR_PERFORM_DYN_VA_ITEMS is 31 characters. So it is too long. Forms use obviously the name of the block to come up with a name. So shorten the name of the block will probably solve your problem.
Success,
Cor
|
|
|
|