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: 

Dislpay Default value on screen

Former Member
0 Kudos

Hello Experts,

I am doing Module Programminmg, There i have some issue, I want to display default cale on screen, when user enter tcode, I have written code like this in PBO :

PROCESS BEFORE OUTPUT.

module set_value.

MODULE STATUS_0100.

MODULE SET_VALUE OUTPUT.

RM60X-ENTLU = 'D'.

RM60X-DATVE = sy-datum.

ENDMODULE. " SET_VALUE OUTPUT

but it is not showing these value on screen, Please guide me how i can display these values on screen.

Waiting for a positive response....

7 REPLIES 7

Former Member
0 Kudos

Hi,

Check you have defined the screen fields with the same names on the screen..RM60X-ENTLU RM60X-DATVE

0 Kudos

YEs these are same, as defined on screen

shaik_sajid
Active Contributor
0 Kudos

hi

create the screen element fields with the same name and type in the top include.

Regards

Sajid

sridhar_meesala
Active Contributor
0 Kudos

Hi,

Check whether your were clearing these fields anywhere before displaying.

Thanks,

Sri.

Former Member
0 Kudos

Hi,

check if the screen fields in screen painter has the same names or not??

if not create a internal table in top include or directly put the fields from database into the screen fields.

it will solve your problem.

Regards,

Rajesh Kumar

kesavadas_thekkillath
Active Contributor
0 Kudos

it must work ... check whether ur screen is activated

Former Member
0 Kudos

resolved by myself.

I have changed the name of the field and now data is coming