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: 

DIALOG PROG

Former Member
0 Kudos

how to populate screen fields which are of input/output type from program? as we can populate the fields from dictionary by giving the namesof them ..here if i give the name it is not accepting?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

Give the same name for field in screen and in program

Yogesh N

8 REPLIES 8

Former Member
0 Kudos

hi,

Give the same name for field in screen and in program

Yogesh N

0 Kudos

i have given but still not coming..

Former Member
0 Kudos

hi,

for this we have to declare in the program.

like internal table declaration, then we can give the internal table name.

Regards,

Sathish reddy.

0 Kudos

I hve declared the variables as data types and used them for calculating the values. then i put fields with same name in screen.

when i assign the fields to screen fields it is not displaying

Former Member
0 Kudos

hi,

just make one internal table in main , then open LAYOUT in screens there just press

"dictionary\program field window (F6) " enter the program name there and press get from program, select that field and press enter.

IT WILL DEFINATELY HELP YOU

thanks and regards

RAHUL SHARMA

Edited by: RAHUL SHARMA on Sep 17, 2008 1:30 PM

Former Member
0 Kudos

hi,

see if this code helps you or not this code is for PBO module

IF SY-TCODE EQ 'ZVA01'. "you can give your TCODE here

SELECT SINGLE * FROM zvbak INTO zvbak_it WHERE zvbeln = zvbak-zvbeln.

SELECT SINGLE * INTO wa_vbap FROM zvbap_it WHERE zvbeln = zvbak_it-zvbeln.

ENDIF.

ENDMODULE.

*****zvbak is DB table and zvbak_it is internal table to retrieve data.

thnks

Former Member
0 Kudos

some time se80 is missed the link

so do one thing

go out of the se80

then come back once again

and try to insert

Regards,

Alpesh

Former Member
0 Kudos

try it it will definitely helpful