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

Reg. FM

Former Member
0 Likes
577

Hi,

I am using the FM CHANGEDOCUMENT_READ. Using select-options I have to retrive data for the fields Udate and Username. Is it possible or not.

Regards

Reddy

Hi,

I am using the FM CHANGEDOCUMENT_READ. Using select-options I have to retrive data for the fields Udate and Username. Is it possible or not.

Regards

Reddy

3 REPLIES 3
Read only

Former Member
0 Likes
534

Hi Reddy,

That is possible.

SELECTION-SCREEN BEGIN OF BLOCK WITH FRAME.

PARAMETERS : p_udate TYPE CDHDR-udate,

p_usname type CDHDR-USERNAME.

SELECTION-SCREEN END OF BLOCK.

Then pass these variables p_udate and p_usname to the FM.

Vinod.

Read only

0 Likes
534

Hi Vinod,

Ready is asking for select-option and not parameter

it means he is having udate range and username range..

I guess it is not possble..

what reddy can do is after retrieve the result in EDITPOS

just delete the record from EDITPOS based on select-option for UDATE and USERNAME..

readdy hope you got the point...

Read only

messier31
Active Contributor
0 Likes
534

Hi ready,

Can you be little clear on

<i>Using select-options I have to retrive data for the fields Udate and Username</i>

because after executing <b>CHANGEDOCUMENT_READ</b> you will getting UDATE & USERNAME in EDITPOS internal table returned in table parameter of function module..

so whts the prob..?