Skip to Main Content

APEX

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!

ORA-06512: at "APEX_240200.WWV_FLOW_TRANSLATION_UTIL_API" when publishing a translation

Jose ArósteguiSep 4 2025

Hi experts,
We're using Apex 24.2.3 and we're starting to translate an app (we've done it before many times and are aware of the procedure).

We've just done these steps (not a single text traslated yet):

  1. Defined the application language
  2. Seed
  3. Publish

When publishing we get this error:

Reproduced with PL/SQL to have more info:

BEGIN
 FOR c1 IN (SELECT workspace_id
              FROM apex_workspaces wp
             WHERE wp.workspace = 'WKPXXXX') LOOP
   apex_util.set_security_group_id(c1.workspace_id);
   EXIT;
 END LOOP;
 dbms_output.put_line('Seeding');
 apex_lang.seed_translations(p_application_id => 2000, p_language => 'en');
 COMMIT;
 dbms_output.put_line('Publishing');
 BEGIN
   apex_lang.publish_application(p_application_id => 2000, p_language => 'en');
 EXCEPTION
   WHEN OTHERS THEN
     dbms_output.put_line(dbms_utility.format_error_backtrace);
 END;
 COMMIT;
END;

We get this output:

Seeding
Publishing
ORA-06512: at "APEX_240200.WWV_FLOW_ERROR", line 1150
ORA-06512: at "APEX_240200.WWV_FLOW_ERROR", line 1608
ORA-06512: at "APEX_240200.WWV_FLOW_TRANSLATION_UTIL_API", line 9615
ORA-06512: at "APEX_240200.WWV_FLOW_TRANSLATION_UTIL_API", line 9826
ORA-06512: at "APEX_240200.WWV_FLOW_TRANSLATION_UTIL_API", line 9826
ORA-06512: at "APEX_240200.HTMLDB_LANG", line 523
ORA-06512: at line 15

Anybody with the same issue?

Thanks,
Jose.

Comments
Post Details
Added on Sep 4 2025
0 comments
253 views