Application Development and Automation 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: 
Read only

What does it mean...?

Former Member
0 Likes
791

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.

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
Read only

Former Member
0 Likes
722

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

Read only

aris_hidalgo
Contributor
0 Likes
722

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.

Read only

0 Likes
722

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