I'm trying to write a generic proc that can loop through the elements in a single record, concatenating each to a variable. An example will help :
TYPE T_OUTPUT_ROW IS RECORD (
v_Field_01 CHAR(3),
v_Field_02 CHAR(50));
r_OutputRow T_OUTPUT_ROW;
...
LOOP
FETCH...
I feel like I'm going crazy - this should be so simple, but I can't figure out how to do it!
I need to set the heading of a listbox in my code. I'm not populating the listbox from a range, I actually want to assign the value in my code.
So, it's a 4 column list box. Each column needs a...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.