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: 

material Characterstic values and its text

Former Member
0 Kudos

HI,

I need material Characterstic values and its texts

CABN Characteristic Detail

AUSP Characteristic Values

CAWN Characteristic Values

CAWNT Characteristic Value Texts

KSML Characteristic Allocation to Class

But my AUSP table dont have all material numbers which i need to give the condition ausp-OBJNUM = mara-matnr and my mara-atinn filed also blank to fetch the values directly.

But the CABN,CAWN,CAWNT holds the data

Any new inputs and conditions other than these

Regards

Rashed

10 REPLIES 10

Former Member
0 Kudos

Hi,

You need to search the object number in INOB(Link between Internal Number and Object) table first then you will get the record from AUSP.

In INOB you can put the material number in objek field

sample attached

MANDT CUOBJ KLART OBTAB OBJEK

013 000000000000021515 001 MARA 000000000000905030

Hopefully It should solve your probelm.

Regards,

Atul

0 Kudos

Hi

I need link for MATNR field and ATINN in cabm table.

my mara-atinn field is blank.

Any inputs please

Edited by: Rasheed salman on Apr 7, 2009 9:22 AM

0 Kudos

Try this function module

CALL FUNCTION 'BAPI_MATERIAL_GETCHARMERCHHIER'

EXPORTING

MATERIAL = MATNR -


> material

LANGUAGE = 'E'

  • LANGUAGE_ISO =

  • MATERIAL_EVG =

  • IMPORTING

  • RETURN =

TABLES

CHARACTERISTICS = LT_CHAR -


> internal table with characteristic values.

Regards,

Aswin.

0 Kudos

Hi

Any link with material tables and CABN,CABNT,CAWN,CAWNT tables

as my AUSP tables dont have required data and MARA-atinn dont have values

Please give inputs

Regards

0 Kudos

Hello

What type of material characteristic are you looking for ?

Type of class are 001 or 023 ?

0 Kudos

Hi,

To get the Characteristic values for a material, we need to use the following FM.

BAPI_OBJCL_GETDETAIL

For sample code, see the link:

Regards,

Shailaja

0 Kudos

300

0 Kudos

Hello

1. Goto INOB with KLART = '300' OBTAB = 'MARA' OBJEK = material number (with leading zeros). Get INOB-CUOBJ

2. Goto AUSP with OBJEK = INOB-CUOBJ ATINN = characteristic name KLART = '300'

3. Goto KSSK with OBJEK = INOB-CUOBJ KLART = '300' . Get KSSK-KLINT

4. With KSSK-KLINT goto KSML and get IMERK.

5. With KSML-IMERK as ATINN goto CAWN, CABN, etc ......

0 Kudos

Hi all

Thanks for the inputs

i am using MARC-CUOBJ value for +instance = MARC-CUOBJj+ i am using VC_I_GET_CONFIGURATION to get ATINN numbers for the material numbers.

But my problem is i am geting all characterstic values and descriptions assigned to this ATINN number.

but i want the Characterstic values and descriptions that are selected

Any inputs Plz

Regards

Rasheed

Former Member
0 Kudos

ME_VAR_GET_CLASSIFICATION to get classifications of particular number matnr shd be passed

Thanks guys for all the inputs