Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

What does it mean...?

former_member502730
Participant
0 Kudos

Dear All,

I have too modify one report, which contains the data declaration like...

data %runmode type aqlimode.

data %seloptions type table of rsparams with header line.

field-symbols <%selopt> type rsparams_tt.

So what does it mean and how to use it... modify it.

Regards.

3 REPLIES 3

Former Member
0 Kudos

These look like declarations of a generated program. You can change the variable names to whatever you want to replace the same where these are being used.

What is the issue you are facing?

Regards,

Ravi

Note : Please mark all the helpful answers

aris_hidalgo
Contributor
0 Kudos

Hi,

Just treat it as normal variables and internal table. It is not different as:

data runmode type aqlimode.

data seloptions type table of rsparams with header line.

field-symbols <selopt> type rsparams_tt.

Regards!

P.S. Please award points if it helps.

0 Kudos

it seems to be genrated program .generated via some other program