For context, I am migrating forms 6I to 12c but I still need to compile the forms to 6I and I don't want to duplicate the Fmb's, to replace the old OS functions like HOST and GET_FILE_NAME to CLIENT_HOST and CLIENT_GET_FILE_NAME I need to subclass web utils object group and webutill.pll to the form to work correctly, but after attaching the object group I can't compile the form to 6I, for the pll I have created an intermediary pll to define which function has to call.
I have tried to use a base form "A" with the object group and then use CALL_FORM to Form "B"; in the form "B" I use CLIENT_GET_FILE_NAME, but I still receive the error of Java beans and the necessity of subclassing the object group.
Chat Gpt suggested to start web_utils in forms "A" using WEBUTIL_CORE.INIT, I have tried but don't work.
There is away to prevent the error on 6I or attach the object group dynamically?