cancel
Showing results for 
Search instead for 
Did you mean: 

Alert Management

Former Member
0 Kudos

I want to set alert management,When we create purchase document at least minmum quantity should be in 100 .

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can create an alert based on user query like:


SELECT DISTINCT T1.DocNum FROM POR1 t0
INNER JOIN OPOR T1 on T1.DocEntry = T0.DocEntry
WHERE T0.Quantity < 100 AND 
DATEDIFF(DD,T1.CREATEDATE,GETDATE()) = 0

You can select this new query by clicking on Open Saved Query button to bring up Query Manager and assign to your new alert.

Thanks,

Gordon

Answers (2)

Answers (2)

jitin_chawla
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi,

You can check the following thread for similar issue. Check if you get ideas from the same :

Regards,

Jitin

former_member187989
Active Contributor
0 Kudos

Use SP Transaction notification for minimum qty in 100.

Jeyakanthan