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

hi all, function type-related question

Former Member
0 Likes
657

When we use each type of the function types: E,H,P,S,T.

I know exit, may be using the others unconsciously. I wait for your helps.

Thanks in advance.

Deniz

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
630

Hi

We use the following like:

E -- for Forcable EXIT from the screen

T -- Transaction related use

P - LOcal GUI related function

H -- Help function

S -- System related functionality

Reward points if useful

Regards

Anji

When we use each type of the function types: E,H,P,S,T.

I know exit, may be using the others unconsciously. I wait for your helps.

Thanks in advance.

Deniz

4 REPLIES 4
Read only

Former Member
0 Likes
631

Hi

We use the following like:

E -- for Forcable EXIT from the screen

T -- Transaction related use

P - LOcal GUI related function

H -- Help function

S -- System related functionality

Reward points if useful

Regards

Anji

Read only

0 Likes
630

Thanks alot. However I know they represents. I want to know how to use them.

Please provide me a code sample or procedure.

Thank you.

Deniz.

Read only

0 Likes
630

Hi

Just as some guys have said to you, there are:

E -- for Forcable EXIT from the screen

H -- Help function

P - LOcal GUI related function

S -- System related functionality

T -- Transaction related use

So:

- The type E is to trigger the modules EXIT-COMMAND event;

- The type T can be used to run the CALL TRANSACTION statament: here the function code has to be the transaction code;

- The type H is to trigger the PROCESS ON HELP REQUEST (just like F1): so you can show an help view;

- The type P is for tabstrip only: here the logic is managed at GUI level, so it's a local on your pc and it should improve the performance;

- The type S is to run a system program

Max

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
630

Hi

E,H,P,S,T stands for:

E -- for Forcable EXIT from the screen

H -- Help function

P - LOcal GUI related function

S -- System related functionality

T -- Transaction related use

Regards,

Sreeram