Application Development 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: 

ENQUEUE DEQUEUE Fonctional location

adil
Participant
0 Kudos

Hi

I want use dequeue an enqueue for fonctional location

i found this FM 'AIC3_FUNCTLOCS_ENQUEUE_DEQUEUE'

but i d'not know how to use it

can any one help me

best ragerd.

1 REPLY 1

Former Member
0 Kudos

Hi

For enque:

CALL FUNCTION 'AIC3_FUNCTLOCS_ENQUEUE_DEQUEUE'

EXPORTING

I_ACTION = 'E'

I_LOGSYSTEM = LOGSYSTEM (Logical system name)

I_FLG_ALL_FUNCTLOCS = 'X'

EXCEPTIONS

FOREIGN_LOCK = 1

SYSTEM_FAILURE = 2.

For deque:

CALL FUNCTION 'AIC3_FUNCTLOCS_ENQUEUE_DEQUEUE'

EXPORTING

I_ACTION = 'D'

I_LOGSYSTEM = LOGSYSTEM (Logical system name)

I_FLG_ALL_FUNCTLOCS = 'X'.

Nalan