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

questions

Former Member
0 Likes
897

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
878

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.

6 REPLIES 6
Read only

Former Member
0 Likes
878

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.

Read only

0 Likes
878

thanks for all ans

Read only

0 Likes
878

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.

Read only

Former Member
0 Likes
879

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.

Read only

0 Likes
878

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.

Read only

0 Likes
878

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.