cancel
Showing results for 
Search instead for 
Did you mean: 

Using AUTO_STATUS

Former Member
0 Kudos

Hello experts,

I would like to use the flag AUTO_STATUS as part of a condition for automatic mail execution in SLFN.

This flag is SAP standard (at least in VAR scenario) but there is no container element for this.

So I defined one as follows:

Element: AUTO_STATUS

Description: AUTO_STATUS

Shorttext: AUTO_STATUS

ABAP-Dictionary-Datatype: CHAR1

Now I am not sure how to use it correctly. I want the mail being sent when User Status is Exxx and the document is flagged for automatic message forwarding to SAP (AUTO_STATUS is set).

So what would be the correct start condition:

case 1)

&AUTO_STATUS& = X and User Status = ExxxSLFC0001

or

case 2)

&AUTO_STATUS& = Exxx

or

case 3)

&AUTO_STATUS& = ExxxSLFC0001

Thanks in advance,

Christian Kaunzner

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Ok, I think I got it.

AUTO_STATUS is just another user status (E0011) which can be set in parallel to the regular user status.

Correct condition would be:

User status = ExxxSLFC0001 and User status = E0011SLFC0001

Could anyone confirm this?

Thanks.