cancel
Showing results for 
Search instead for 
Did you mean: 

pc00_m40_f16

Former Member
0 Kudos

Hi,

CIT(TDS) not coming while printing form 16

Regards Nutan

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Nutan,

For CIT (TDS) address you need to implement the method GET_CIT_ADDRESS in BADI HR_IN_ER_ADDRESS. Also, Notes 1568324, 1570036, 1571048, 1573538 and 1576504 need to be implemented

Regards,

Nishtha

Former Member
0 Kudos

this method is implement but address is not coming

Former Member
0 Kudos

Dear Nutan,

Can you please let me know what code you have written in the method GET_CIT_ADDRESS.

i have two tax groups TXGRP '01' , '02'.

Based on these i have to hard code the text.

How to get the values TXGRP from form 16 program into this method so that according to conditon text can be sent.

Thanks

Ravi

Former Member
0 Kudos

Dear Nutun

1. To Enhance BADI you need to follow below given steps

a) Go to SE19, select New BadI->create implementation and supply the name of enhacement spot - HR_IN_ER_ADDRESS

b). Save your entries, and assign the implementation to a development class.

c). Place the cursor on the method, and double-click to enter method processing.

d). Enter the code for the implementation between the statements method <Interface name> ~ <Name of method> and endmethod.

e). Save and implement your code. Return to the Edit Implementation screen.

g. Choose Activate.

The code you stored in the method will be run when the application program is executed.

Here you have the changing parameter SADR that you would have to change with VALUES STREET, P O BOX NO, CITY AND PIN CODE FROM ADRC TABLE.

What to write in the GET_CIT_ADDRESS

a) declare a work area of type p0001.

b) Hard Code ( Pass values ) in the SADR FIelds. Only 4 fields are allowed.

STRAS ( only 35 chars)

PFACH ( only 10 chars)

ORT01

PSTLZ

e.g. SADR-STRAS = ' Income Tax Office'.

SADR-PFACH = 'huda mkt'.

SADR-ORT01 = Gurgaon'.

SADR-PSTLZ = '122001'.

Hope it will help you in enhancing BADI.

Ravi Grover