cancel
Showing results for 
Search instead for 
Did you mean: 

retreive batch characteristics.

Former Member
0 Kudos

Hi,

I need to fetch material characteristics for the material, batch and plant given.

For example in the txn MSC3N if we enter a material, plant and batch number and when we click classification or Material data tab we can see the data. Even I require the same data using the Function modules.Can you let me know if any FM exist for this purpose.

Regards,

Nagaraju Donikena.

Accepted Solutions (1)

Accepted Solutions (1)

vinod_gunaware2
Active Contributor
0 Kudos
  • GET THE CLASSIFICATION AND CHARACTERISTICS

CALL FUNCTION <b>'CLAF_CLASSIFICATION_OF_OBJECTS'</b>

EXPORTING

CLASSTEXT = 'X'

CLASSTYPE = C_CLASSTYPE

LANGUAGE = SY-LANGU

OBJECT = W_OBJEK

OBJECTTABLE = C_OBJECTTABLE

KEY_DATE = SY-DATUM

INITIAL_CHARACT = 'X'

CHANGE_SERVICE_CLF = 'X'

TABLES

T_CLASS = T_CLASS

T_OBJECTDATA = T_OBJECTDATA

EXCEPTIONS

NO_CLASSIFICATION = 1

NO_CLASSTYPES = 2

INVALID_CLASS_TYPE = 3

OTHERS = 4.

IF SY-SUBRC <> 0.

regards

vinod

Answers (4)

Answers (4)

Former Member
0 Kudos

Check this FM - QC01_BATCH_VALUES_READ

Former Member
0 Kudos

Check this FM - C01_BATCH_VALUES_READ

vinod_gunaware2
Active Contributor
0 Kudos

VB_CHRG_BATCH_DIST_STATUS_GET

VB_CHRG_CHANGE_CHARACTER_POSS

VB_CHRG_CLOSE_BATCH_MASTER

VB_CHRG_OPEN_BATCH_MASTER

regards

vinod

Former Member
0 Kudos

Hi,

try

BAPI_MATERIAL_GET_DETAIL

BAPI_MATERIAL_GET_ALL

Regards,

Shashank

Former Member
0 Kudos

Hi ,

Thanks for the information.

The bapi BAPI_OBJCL_GETDETAILS has partly solved my problem.

And I am now looking for the material data tab in the transaction msc3n.Any help regarding that is appreciated.

Regards,

Nagaraju Donikena.

Former Member
0 Kudos

BAPI_BATCH_GET_DETAIL.