cancel
Showing results for 
Search instead for 
Did you mean: 

tax code optional in document type for one company code

Former Member
0 Kudos

Hello experts,

Is it possible to make tax code optional in a document type only for one company code. If yes kindly explain me the process in detail.

Regards,

P.Krishna Chaitanya.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

No, It is not possible.

Answers (3)

Answers (3)

sanilbhandari
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi

If I understand your requirement correctly that for a particular document type, the line item should not contain a tax code, while for other Document Types, it should have a tax code. Note, the logic for making tax code optional/mandatory is made through the field tax category in the GL Master and not through the field status. further Build in a validation rule, using a logic as follow:

BKPF-BLART IN "SET NAME"

Check BSEG-MSKWZ<> ' '

Set an Error message

You can also create a subsitituion rule for populating tax code with a blank value if a particular doc type is used.

BKPF-BLART in 'SET NAME"

Substitute BSEG-MSKWZ= ' '

You may need to allow tax code as a field to be substituted in the maintainence view of table GB01 using T Code SM30 for boolean class 9

Regards

Sanil

srinivasa_maruvada
Active Contributor
0 Kudos

Create validation as below at OB28

Document Type = 'SA' AND Company Code = '1000'

BSEG-MWSK1 ''

Warning message check tax code

(and try other selections, other wise take the help of Abap)

FS00 will control at GL account level but not at Document level.

Srinivas

lakshmi_matta
Participant
0 Kudos

We can Control at the time of document entry by making optional in field status groups I think.

Former Member
0 Kudos

Hi Krishna,

Go to FS00 and you can keep the Tax Category field optional and check the box posting without tax allowed.

Hope this helps.

Vikas.

narasimhulu_konnipati
Active Contributor
0 Kudos

Hi,

We can't restrict the Tax code as optional for a doc. type. For this, you need to write down the Validation.

You can do this by FS00 for a GL account

Thanks