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: 

Need table or function module

Former Member
0 Kudos

I have equpment number in IE03. When i click on Class Overview for the equipment, it displays Equipment Classification in a table control... This has Characteristic desc. and value assigned....

one of it is <b>Equipment Contract Material</b> for which value is maintained.

I need to retrieve this value either using tables or function modules....

Could any one throw light on this...

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Ramesh,

Check the tables AUSP,CABN,CABNT,INOB to fetch the characteristics

and check the fun modules and BAPI

BAPI_OBJCL_GETDETAIL

BAPI_OBJCL_CHANGE

or use the fun module:

CLAF_CLASSIFICATION_OF_OBJECTS.

Reward points for useful Answers

Regards

Anji

6 REPLIES 6

Former Member
0 Kudos

Hi,

For retrieving the characteristic values..You can use the function module BAPI_OBJCL_GETDETAIL

Thanks

Naren

Former Member
0 Kudos

Hi Ramesh,

Check the tables AUSP,CABN,CABNT,INOB to fetch the characteristics

and check the fun modules and BAPI

BAPI_OBJCL_GETDETAIL

BAPI_OBJCL_CHANGE

or use the fun module:

CLAF_CLASSIFICATION_OF_OBJECTS.

Reward points for useful Answers

Regards

Anji

Former Member
0 Kudos

try BAPI_CHARACT_GETDETAIL Function module

Former Member
0 Kudos

i have only equipment number... i have tried all FM specified but could not get the actual value required.

former_member182346
Active Contributor
0 Kudos

PLz try

BAPI_CLASS_GET_CHARACTERISTICS

u need to pass the class name and class type.

thanks& rerards

vinsee

Former Member
0 Kudos

Done this way....

SELECT atinn adzhl INTO CORRESPONDING FIELDS OF cabn

FROM cabn

WHERE atnam = 'EQPT_CONTRACT_MATERIAL'.

ENDSELECT.

IF sy-subrc EQ 0.

SELECT SINGLE atwrt

FROM ausp

INTO v_itab-typbz

WHERE objek = Equipment Number)

AND atinn = cabn-atinn

AND adzhl = cabn-adzhl

AND klart = '002'.