‎2007 May 09 11:42 AM
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
‎2007 May 09 11:45 AM
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
‎2007 May 09 11:44 AM
Hello,
When creating the TCode you need to select
<b>Program and Screen (Dialog Transaction ).</b>
Radio button.
Vasanth
‎2007 May 09 11:45 AM
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
‎2007 May 09 11:55 AM
‎2007 May 09 11:45 AM
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
‎2007 May 09 11:46 AM
Hi siri,
goto se93->specify the transaction->change->under GUI support tab->select GUI for windows->save.
‎2007 May 09 11:46 AM
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
‎2007 May 09 11:46 AM
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
‎2007 May 09 11:46 AM
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
‎2007 May 09 11:47 AM
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.
‎2007 May 09 11:47 AM
hi,
while creating Transaction
select Program and screen.
select GUI support-> check Gui support for html, java or windows
‎2007 May 09 11:48 AM
Hi Siri,
In extension to previous thread.
Go to SE93----
>
In Gui support tab check the SAPGUI FOR WINDOWS check box .
Regards,
Hemant
‎2007 May 09 11:49 AM
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