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: 

Related to table field: KOBEZ

Former Member
0 Kudos

Hi,

This field is available in one structure But I am unable to find this field (KOBEZ) in any table.

If anybody's know the table name, then do let me know.

Thanks

Devinder

4 REPLIES 4

Former Member
0 Kudos

HI Devinder,

KOBEZ is the Account descriptuon field with char 30. do the where used list for that data eleement.although i have done it and it is not present in any table but it is there in programs and structure.why you want to see it in any tanle , any particualr reason, you can always use it in the table in the same way it is used in the structure,

some structures in which this field is used are: ACCIT_FI,bsegl,bsegs,bseg_alv,bsez,bsez_line etc

hope this helps.

thanks

tanmaya

0 Kudos

Hi,

Just do let me know that, How can I use this field (from structure) in my program, whereas I'm using "JOINS" . Because I'm using multiple table for my program.

Thanks

Devinder

0 Kudos

Hi,

Just do let me know that, How can I use this field (from structure) in my program, whereas I'm using "JOINS" . Because I'm using multiple table for my program.

Thanks

Devinder

0 Kudos

hi devinder ,

do you want to use it in abap program ,

can you post your code which tables are u using and which tables need to joi,

what you can do is cretae a internal table and work area and can use the field.



types: begin of ty_kobez,
          kobez type kobez,
         end of ty_kobez.

data : it_kobez type standard table of ty_kobez,
         wa_kobez type ty_kobez.
" now your itab and wa will contain this field.

select your fieldname
into table itab_tab1
from tab1 as a inner join tab2 as b on a~join field = b~joinfield
for all entries in it_tab2
where ----.

SELECT A~VBELN a~posnr a~werks a~matnr a~objnr
*           INTO CORRESPONDING FIELDS OF TABLE gt_vbak
*           FROM VBAP AS A INNER JOIN JEST AS B ON A~OBJNR = B~OBJNR
*           FOR ALL ENTRIES IN GT_VBAK1
*           WHERE B~stat = c_e0004
*           AND B~inact = space
*           AND A~POSNR = GT_VBAK1-POSNR
*           and a~vbeln = GT_VBAK1-vbeln.
**           and a~matnr ne 'BOXES'.

if you dont have that field in your join table then you can t use the join conditionon the basis of that field.

thanks,

Tanmaya