Application Development and Automation 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: 
Read only

Document Catagory (VBRK-VBTYP)

Former Member
0 Likes
5,012

Hi All,

How to get the Text associated with Document Catagory(VBRK-VBTYP) of Billing Documents?

For each Billing Document, we can get the Document catagory as 'M', 'O, etc...

I would like to fetch the Text associated with this field...."M" refers to Invoice, 'O" refers to Inquiry..etc...

From which table, can i get the description...???

Regards

Pavan

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,690

Did You try the table VBFA for the same .

Just check this table and in the document category try to see if there is a check table associated in the field of document category.

I hope this might be defined at the domain level.

Vijay.

5 REPLIES 5
Read only

Former Member
0 Likes
2,690

sorry

Edited by: Amit Sawant on Jan 12, 2008 1:56 PM

Read only

0 Likes
2,690

Can anyone Help me in this Regards...????

Regards

Pavan

Read only

Former Member
0 Likes
2,690

Pawan,

I do not think there is a table for that.

Values are Stored at the domain level.

Check the Values Range in Domain "VBTYP".

To get the values from domain,

Use the Function module "FICO_DOMAIN_VALUES_GET".

Pass the values

I_TABLE_NAME VBRK

I_FIELD_NAME VBTYP

I_LANGU EN

You will get all the values

Hope this helps.

Vinodh Balakrishnan

Read only

Former Member
0 Likes
2,691

Did You try the table VBFA for the same .

Just check this table and in the document category try to see if there is a check table associated in the field of document category.

I hope this might be defined at the domain level.

Vijay.

Read only

0 Likes
2,690

Hi.. In case you didn't find the solution yet... hope this can help...

SELECT SINGLE ddtext

INTO p_ccattxt

FROM dd07t

WHERE domname EQ 'VBTYP'

AND ddlanguage EQ 'E'

AND domvalue_l EQ <vbtyp>.

<vbtyp> is the value of the Document Category.