cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to block users from manual document numbering??

former_member202778
Participant
0 Kudos

Is it possible to block users from manual document numbering?? In document numbering setting manual is not visible.. But when creating the documents any user can change the numbering series to manual... Is it possible to block?

Accepted Solutions (1)

Accepted Solutions (1)

Johan_H
Active Contributor
0 Kudos

Hi,

You can block this in Authorizations.

Administration > System initialization > Authorizations > General Authorizations > General > Document Manual Numbering. (near the bottom)

Regards,

Johan

former_member202778
Participant
0 Kudos

Thanks

Answers (1)

Answers (1)

kothandaraman_nagarajan
Active Contributor
0 Kudos

Hi,

You may try with SP_Transaction notification.

IF

@transaction_type in ('A') AND (@OBJECT_TYPE='17')


BEGIN

If

exists (select T0.DocEntry from ORDR  t0 where T0.DocEntry =  @list_of_cols_val_tab_del and T0.[Series] = 1 )


Begin


SET

@error = 10

SET

@error_message = 'Manual series not allowed'

End

end