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

module pool

Former Member
0 Likes
1,213

Hi,

I have created a sample prog for module pool.

I took a button on layout.

in flow logic okcode like sy-ucomm.

case okcode.

when 'button'.

write:/'sffs'.

endcase.

And i have created the tcode also.

while trying to exe it is giving msg as

GUI CAPABILITY OF TRANSACTION ZSCREEN NOT YET CLASSIFIED.

What is the error pls solve it.

Regards,

Siri

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,183

got se93--->with that tcode , there u will find 3-4 options like GUI for windows , just tick all check boxes.

tick all there check boxes

<b>SAPGUI for HTML

SAPGUI for Java

SAPGUY for windows</b>

Regards

Prabhu

12 REPLIES 12
Read only

Former Member
0 Likes
1,183

Hello,

When creating the TCode you need to select

<b>Program and Screen (Dialog Transaction ).</b>

Radio button.

Vasanth

Read only

Former Member
0 Likes
1,184

got se93--->with that tcode , there u will find 3-4 options like GUI for windows , just tick all check boxes.

tick all there check boxes

<b>SAPGUI for HTML

SAPGUI for Java

SAPGUY for windows</b>

Regards

Prabhu

Read only

0 Likes
1,183

Hi Prabhu,

Thank u so much.

Regards,

Siri

Read only

Former Member
0 Likes
1,183

Carry out the following steps:

1. Go to SE93.

2.Open the transaction you have created

3.At the end of the page you will find three checkbox under GUI support.

4. Check all of them

5. Activate your transaction code

Now your module pool program will work fine

Read only

Former Member
0 Likes
1,183

Hi siri,

goto se93->specify the transaction->change->under GUI support tab->select GUI for windows->save.

Read only

Former Member
0 Likes
1,183

Hi Siri,

Go to tcode SE93.enter ur tcode name .press change.

In Gui support tab check the SAPGUI FOR HTML check box.

save , activate it.and then execute ur tcode.

Reward points if helpful.

Regards,

Hemant

Read only

Former Member
0 Likes
1,183

Hi

A) have created a sample prog for module pool.

I took a button on layout.

in flow logic okcode like sy-ucomm.

case okcode.

when 'button'.

write:/'sffs'.

endcase

U have to leave the screen before using the WRITE statament:

case okcode.

when 'button'.

LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.

write:/'sffs'.

LEAVE SCREEN.

endcase.

B) And i have created the tcode also.

while trying to exe it is giving msg as

GUI CAPABILITY OF TRANSACTION ZSCREEN NOT YET CLASSIFIED.

Check if you have choose the right attribute of trx for module pool by se93

Max

Read only

Former Member
0 Likes
1,183

Hi Siri,

I think "write:/'sffs'." statement is creating the error. In module pool, u can not deliberately use write statement to write on the screen. Define a region or an empty text box where u can transfer the value and then pass it to screen.

If Helpful reward with some points.

Regards

Pulokesh

Read only

Former Member
0 Likes
1,183

Hi,

first check whether ur gui status is active or not.

when u r using function codes they must be in upper case.

case okcode.

when '<b>BUTTON</b>'.

some action.

endcase.

rgds,

bharat.

Read only

Former Member
0 Likes
1,183

hi,

while creating Transaction

select Program and screen.

select GUI support-> check Gui support for html, java or windows

Read only

Former Member
0 Likes
1,183

Hi Siri,

In extension to previous thread.

Go to SE93----


>

In Gui support tab check the SAPGUI FOR WINDOWS check box .

Regards,

Hemant

Read only

Former Member
0 Likes
1,183

Hi,

1) set the Screen field 'button' attribute for FCODE value. & check the same in

when condition.

2) Define OK-code in screen element list. Assign sy-ucomm value to ok-code. &

then for condition

Thanks

Sandeep