cancel
Showing results for 
Search instead for 
Did you mean: 

Invoice

Former Member
0 Kudos

Hi all,

I am working on Invoice and got a requirement to print the TAX Code 1 Field on the header.

I am unable to figure out TAX Code1 field in VF02/ VF03.

Any help is highly appreciated.

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Thanks for the reply.

I did check that table and there are fields like :

TAXK1....Tax classification 1 for customer

.

.

.

.TAXK9. Tax classification 9 for customer.

Is there any place where it will be displayed on transaction?

Thanks-

Former Member
0 Kudos

Hi,

IN the header data, under Taxes block, you find 9 small boxes, these fields refer to that.

Place your cursor on this field, press F1 and click on "Technical Information", you get teh table and field related to this screen field.

Regards,

Subramanian

Former Member
0 Kudos

My requirement is to print the Tax code1 on the Invoice in SAP Script.

All those fields I mentioned earlier are single charecter fields.

What am I supposed to print on printout of Invoice Header , please help me out.

Thanks-

Former Member
0 Kudos

Hi,

Did u check,

STCEG_H CHAR 1 Origin of sales tax ID number

If this is not the field, then better ask the functional analyst to give the technical details. They are supposed to give.

Regards,

Subramanian

Former Member
0 Kudos

Will check with the functional guy,,

It doesn't make sense for me to print single charecter on the output, there should be more meaning ful information.

Thanks-

Former Member
0 Kudos

Hi subramanian,

One more quick question.

Where can I find

- Planned Goods Issue date

- Actual Goods Issue date. on the same transaction VF02 / 03,, It would be great help if you can provide me technical names or where they are placed in the transaction.

Thanks

Former Member
0 Kudos

Hi,

Values come from the domain.

DATA: ws_dd07v TYPE dd07v,

i_dd07v TYPE STANDARD TABLE OF dd07v.

clear: i_dd07v, ws_dd07v.

CALL FUNCTION 'DD_DD07V_GET'

EXPORTING

domain_name = 'STCEG_H'

langu = sy-langu

withtext = 'X'

TABLES

dd07v_tab = i_dd07v

EXCEPTIONS

access_failure = 1

OTHERS = 2.

IF sy-subrc <> 0.

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

ENDIF.

SORT i_dd07v BY domvalue_l.

READ TABLE i_dd07v INTO ws_dd07v WITH KEY domvalue_l = wa_STCEG_H.

IF sy-subrc = 0.

MOVE ws_dd07v-ddtext TO v_actual_domain_text.

endif.

I think those will be found in LIKP table. The link betn VBRK and LIKP is the VBELN.

Regards,

Subramanian

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Did u check the VBRK table?

Regards,

Subramanian