Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

How to change the list box to F4 Help for Billing type in VF01

Former Member
0 Kudos

Hi All,

In VF01 for Billing type i am getting List box. Now I have to add one more field to that list box.

like F1 invoice

F2 Invoice returns.

or

Is there any possiblity of making it as F4 Help instead of List Box.

Please throw some lite on this issue.

Regards,

Rohit.

2 REPLIES 2

Former Member
0 Kudos

The value table for this is:TVFK

You have to update Billing: Document Types.

Thanks and Regards

Former Member
0 Kudos

Hi ,

The list box is getting the value from the table TVFK .

You can get the table name from the VALUE TABLE of FKART which is the domain

for the field Billing Type .

You need to Update the table TVFk programatically. Like - -

TABLES : tvfk.
tvfk-FKART = 'F1'.  " Billing type
tvfk-KOPGR = 
.
.
.
tvfk-VTEXT = 'Invoice '.  " Billing type description
UPDATE TVKF FROM TVKF.  " Update the table

Similarly you have to update the table by the F2 and and description.


tvfk-FKART = 'F2'.
tvfk-KOPGR = 
.
.
.
tvfk-VTEXT = 'Invoice returns'.
UPDATE TVKF FROM TVKF.

Regards

Pinaki