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.

How to get Text Item Custom Attributes

hszeroSep 23 2008 — edited Sep 23 2008
Hello all,
I am running a report creation like the select below...

SELECT apex_item.text (1,
printer,
20,
2000,
'rownum=' || '"' || ROWNUM || '"'
) AS printer
FROM DUAL

with no issues.

But I have questions on how to retreive the rownum attribute I have created?
I guess for that matter any custom attribute I choose to add, as there will be others.

I would like to be able to get those custom attributes in a for loop as shown below.

Any Ideas?

FOR i in 1..APEX_APPLICATION.G_F01.count
LOOP
?APEX_APPLICATION.G_F01(i).rownum?
END LOOP;

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 21 2008
Added on Sep 23 2008
2 comments
762 views