An organizational unit, a level below the company code, is used primarily for reporting taxes on sales and purchases. For each line of business, companies must register with the GSTN.
In the SAP system, the business place represents the political state. Typically, there must be one GSTIN per political state that the business operates in. The GSTIN obtained for every political state must be entered in the business place details.
(One correction here: A business place does not always correspond to a political state as highlighted at the start of the blog. A business place corresponds to a GSTIN Reg Number and an entity can have more than one GSTIN No in a state. The tax laws in India allow that) by sanil0309
In the SAP system, assign the GST identification number for each business place in Customizing for Cross-Application Components, under General Application Functions Business Place Business Place Configuration. Under the India group box, enter the GSTIN in the Tax Number 3 field.
Next, you assign the business place to a plant. You do this in Customizing for Cross-Application Components, under General Application Functions Business Place Assign Business Places to Plants.
data: wa_dynpfields type ty_dynpfields.
wa_dynpfields-fieldname = 'INVFO-BUPLA'.
append wa_dynpfields to it_dynpfields.
call function 'DYNP_VALUES_READ'
exporting
dyname = dyn_program_name
dynumb = dyn_screen_no
translate_to_upper = 'X'
tables
dynpfields = it_dynpfields.
constants: c_bseg(25) type c value '(SAPMF05A)BSEG'.
field-symbols: <fs_bseg> type bseg.
assign (c_ydrseg) to <fs_bseg>.
* perform custom validation using <fs_bseg>-bupla
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
9 | |
2 | |
2 | |
2 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 |