‎2006 Mar 18 7:11 AM
1, when the system is getting slow, how can u get the message what is going wrong?
2,how to display a parameter later for which we have defined NO-DISPLAY.?
3, what exactly is alpha numereic screen painter?
‎2006 Mar 18 7:34 AM
1, when the system is getting slow, how can u get the message what is going wrong?
You can set the status in the status bar using 'SAPGUI_PROGRESS_INDICATOR'.
2,how to display a parameter later for which we have defined NO-DISPLAY.?
If you set the parameter as no-display you cannot revert it back to display it.
3, what exactly is alpha numereic screen painter?
The alphanumeric screen painter is that which has no graphical characters like images and everything that is displayed in the screen is text. The buttons and all the simulated graphics are displayed by proper position of characters.
‎2006 Mar 18 7:19 AM
Hi gopan,
Welcome to SDN.
1.how to display a parameter later for which we have defined NO-DISPLAY.?
I tried. but i don't think
its possible AFTERWARDS to display it.
(bcos its not available in SCREEN table at run time)
2. what exactly is alpha numereic screen painter?
As the name suggests,
it is CHARACTER BASED.
(ie. its not GUI Based, with complex screen looks etc)
regards,
amit m.
‎2006 Mar 18 8:35 AM
‎2006 Mar 18 8:54 AM
Hi,
1. As per the forum etiquette,
u may pls award points
to helpful answers by clicking the STAR
on the left of that reply.
regards,
amit m.
‎2006 Mar 18 7:34 AM
1, when the system is getting slow, how can u get the message what is going wrong?
You can set the status in the status bar using 'SAPGUI_PROGRESS_INDICATOR'.
2,how to display a parameter later for which we have defined NO-DISPLAY.?
If you set the parameter as no-display you cannot revert it back to display it.
3, what exactly is alpha numereic screen painter?
The alphanumeric screen painter is that which has no graphical characters like images and everything that is displayed in the screen is text. The buttons and all the simulated graphics are displayed by proper position of characters.
‎2006 Mar 18 8:57 AM
can you please tell what is SAPGUI_PROGRESS_INDICATOR?
the ans i got is we can set the status in the status bar using SAPGUI_PROCESS_INDICATOR ? PLS EXPLAIN
"when the system is getting slow, how can u get the message what is going wrong" THIS IS QUESTION WHAT I ASK.
‎2006 Mar 18 9:05 AM
Hi again,
1. quite simple to use.
It will display message
on the status bar.
(The % work completed, we have to provide
to the FM, in a loop)
2. (just copy paste in new program)
-
it will display
1..............100
report abc.
dATA : perc TYPE p DECIMALS 2,
perctext(5) TYPE c,
maintext(150) TYPE c.
do 500 times.
*----
Show Progress
perc = sy-index / 500 * 100.
WRITE perc TO perctext ROUND 0.
CONCATENATE 'Calculating For (' perctext '%)'
INTO
maintext SEPARATED BY ' '.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
percentage = perc
text = maintext.
enddo.
3.
when the system is getting slow, how can u get the message what is going wrong" THIS IS QUESTION WHAT I ASK.
There is no direct way to get such message.
The basis team use some administration
tcodes
and detect whether some process is taking more time or not !
regards,
amit m.