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

regarding memory ID

Former Member
0 Likes
452

Hi friends plz help me, its very urgent.

if w_result is true export w_value to memory id.

else.

set memory id to 'blank'.

can any one send me the logic for this plz.

Thanks and regards

Venkat

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
421

Hi Reddy,

I am not able to get your query,

1. EXPORT text1 text2 = 'Literal' TO MEMORY ID 'text'.

2 . FREE MEMORY ID 'text'.

If the hint is useful… Say thanks by reward….

Regards,

Prabhu Rajesh

3 REPLIES 3
Read only

Former Member
0 Likes
422

Hi Reddy,

I am not able to get your query,

1. EXPORT text1 text2 = 'Literal' TO MEMORY ID 'text'.

2 . FREE MEMORY ID 'text'.

If the hint is useful… Say thanks by reward….

Regards,

Prabhu Rajesh

Read only

former_member188827
Active Contributor
0 Likes
421

if w_result eq 'T'.

export w_value to MEMORY ID 'value'.

else.

w_value = ' '.

export w_valuet to MEMORY ID 'value'.

endif.

plz reward if ds helps

Read only

gopi_narendra
Active Contributor
0 Likes
421
if w_true = 'X'. " accordingly if not w_true is initial
 " depends on the data type of the varialbe w_true
export w_value to memory id. " export here
else.
 " nothing to write here
endif.

Regards

Gopi