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

general

Former Member
0 Likes
800

In regard to SET PF-STATUS, you can deactivate unwanted function codes by using

A: EXCLUDING

B: IMMEDIATELY

C: WITHOUT

😧 HIDE

7 REPLIES 7
Read only

santhosh_patil
Contributor
0 Likes
762

Hi,

using

---EXCLUDING

---Patil

Read only

santhosh_patil
Contributor
0 Likes
762

Hi manjula,

where did u got this questions they are quite good

can u send this question to my id : santhoshkumar.patil@gmail.com

Thanks in advance

Patil

Read only

Former Member
0 Likes
762

The answer is EXCLUDING.

Regards

Ravi

Read only

Former Member
0 Likes
762
Read only

Former Member
0 Likes
762

EXCLUDING..........

Effect

Deactivates one or more of the status functions, so that they cannot be selected. Specify the appropriate function codes using one of the following:

a field f or a literal which contains a function code

an internal table itab which contains several function codes

This method allows you simply to modify the selectable functions of a status at runtime.

Example

DATA: BEGIN OF TAB OCCURS 10,

FCODE(4),

END OF TAB.

REFRESH TAB.

MOVE 'DELE' TO TAB-FCODE.

APPEND TAB.

MOVE 'AUSW' TO TAB-FCODE.

APPEND TAB.

SET PF-STATUS 'STA3' EXCLUDING TAB.

Regards,

Omkar.

Message was edited by:

Omkaram Yanamala

Read only

Former Member
0 Likes
762

hi manjula,

A: EXCLUDING

regards,

seshu.

Read only

Former Member
0 Likes
762

Hi,

Ans: A.

The EXCLUDING function allows you to change the appearance and function of a GUI status

dynamically. This is useful if the individual user interfaces for a range of screens are very similar.

You can define a single global status, and then just deactivate the functions you do not need

using EXCLUDING. Specify <f> to deactivate the function code stored in field <f>. Specify <itab> to deactivate all function codes stored in the internal table <itab>. Field <f> and the lines of table <itab> should be of type C, and have length 20.

Regards,

Bhaskar