cancel
Showing results for 
Search instead for 
Did you mean: 

IO number in validation

Former Member
0 Kudos

I want to design OB28 rule like this: GL account 5000000 can't accept both cost center and IO (other than A series IO)

for example: debit 5000000 2000USD in cost center 1234 and IO 1234, will issue warning message

but debit 5000000 2000USD in cost center 1234 and IO A1234, will pass

debit 5000000 2000USD in cost center 1234 only, will pass

debit 5000000 2000USD in IO 1234 only, will pass

My initial design is in the condition G/L=5000000 and order NOT like 'A*'.

check cost center='' or order=''

but i find in condition we can't specify NOT like.

what should I write OB28 rules?

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

tks

Former Member
0 Kudos

Hi Dear,

In validation <> sign stands for not equal to.. You can use that symbol in your equation.

Regards,

Sheetal

Former Member
0 Kudos

Thanks, but still not work.

my OB28 prerequiste:

BSEG-HKONT = '50000000' AND

BSEG-AUFNR <> 'A*'

my check is:

BSEG-KOSTL = '' OR BSEG-AUFNR = ''

but when i post to 5000000, cost center=1234, IO=A123, it still gives me warning message, can't pass validation.

it should pass

Former Member
0 Kudos

hi

in OB28

pre-requisite to be

BSEG-HKONT = '50000000' AND

BSEG-KOSTL <> ''

check is

BSEG-AUFNR <> 'A*'

kindly check the above.

thanks

Former Member
0 Kudos

Do you mean

pre-requisite to be

BSEG-HKONT = '50000000' AND

BSEG-KOSTL<> ''

check is

BSEG-AUFNR= 'A*' ?

even above, it fails when user books debit 5000000 in cost center 1234 and IO 1234, it didn't issue warning message

It should not pass in such case

I changed to

BSEG-HKONT = '50000000' AND

BSEG-KOSTL= ''

check is

BSEG-AUFNR= 'A*'

also same error, by the way, I book debit 5000000 in cost center 1234 and IO A1234, it didn't issue warning message too(this is correct)