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

Clearing Parameter Ids

Former Member
0 Likes
629

How to clear the values stored in the all / individual parameter id.

set / get for storing and reading values of parameter id . what for clearing.

- David Boon.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
578

Hi,

CLEAR will clear the values.

you can also use FREE memory.

Regards

Subramanian

4 REPLIES 4
Read only

Former Member
0 Likes
579

Hi,

CLEAR will clear the values.

you can also use FREE memory.

Regards

Subramanian

Read only

Former Member
0 Likes
578

Hi,

You can clear it again by setting a blank value..

Example

SET PARAMETER ID 'MAT' FIELD <b>space</b>.

Thanks,

Naren

Read only

Former Member
0 Likes
578

Hi Naren thanks for your sugestion . but my need is to clear all the parameter ids .

I cant get what Subramanian told , we cant use clear for parameter and free memory is also not working.

This is what i tried.

REPORT ZPRG01.

data : data1 type RS38M-PROGRAMM.

data1 = 'hello'.

set parameter id : 'RID' field data1. " RID is parameter for se38 program name

Free memory. " not clearing

- David Boon

Read only

Former Member
0 Likes
578

Hi,

Probably you might have to get all the parameter ids from the table TPARA.

Example

-


SELECT * FROM TPARA INTO TABLE T_TPARA.

LOOP AT T_TPARA.

<b> SET PARAMTER ID TPARA-PARAMID FIELD SPACE.</b>

ENDLOOP.

Thanks,

Naren