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!

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.

Checksum in APEX URL generated outside of APEX session

Marko GorickiDec 1 2017 — edited Dec 1 2017

Hi,

is there a way to generate URL for calling APEX page with checksum at the end of the link if URL is generated outside of APEX?

If I call function like this one outside of APEX, checksum is not generated:

create or replace function f_get_apex_url

  return varchar2

is

begin

  return apex_util.prepare_url(p_url => 'f?p=100:1:0::::P1_ITEM:1'

                             , p_checksum_type => 'PUBLIC_BOOKMARK');

end;

/

I've noticed that by populating global variable (g_curr_flow_security_group_id) in wwv_flow_security  function works fine:create or replace function f_get_apex_url

create or replace function f_get_apex_url

  return varchar2

is

begin

  apex_050100.WWV_FLOW_SECURITY.G_CURR_FLOW_SECURITY_GROUP_ID := 1830663391033130;

  return apex_util.prepare_url(p_url => 'f?p=100:1:0::::P1_ITEM:1'

                    , p_checksum_type => 'PUBLIC_BOOKMARK');

end;

/

But, I don't like the fact that this function depends on current APEX version.

Thanks in advance!

Br,

Marko

Comments

dvohra21
The JDeveloper/WebCenter edition is available for Windows NT/2000/XP, Linux, and Macintosh.
demuelle-Oracle
The question was about the suite, not the development platform.

Look for Oracle WebCenter Suite - Framework and Content Services 10g (10.1.3.2.0) for AIX5L Based Systems (64-bit) (see part nr. B42476-01 and B42477-01) You should look for the platform requirements in the installation guide. Also Linux and Windows will be available, but please look for platform specifics (IBM Series p & x ).
1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Dec 29 2017
Added on Dec 1 2017
2 comments
5,880 views