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: 

Variant Configuration

Former Member
0 Kudos

I need to print the name of the variant characteristic and the characteristic value for Foreign trade - Export Invoice. Can anyone help me regd this??

There is a FM - "ME_VAR_GET_CLASSIFICATION" But, this FM is related to Purchasing. I need the similar kind or related one for export invoice.

2 REPLIES 2

Former Member
0 Kudos

Hi Vinid,

YOu van try function module : VC_I_GET_CONFIGURATION_IBASE

CALL FUNCTION 'VC_I_GET_CONFIGURATION_IBASE'

EXPORTING

INSTANCE = VBAP-CUOBJ

  • BUSINESS_OBJECT =

  • LANGUAGE = SY-LANGU

  • IV_INVALID_POSSIBLE = ' '

  • IV_NEUTRAL = ' '

TABLES

CONFIGURATION = CO

  • ET_CONF_WITH_AUTHOR =

EXCEPTIONS

INSTANCE_NOT_FOUND = 1

OTHERS = 2

.

or

CALL FUNCTION 'CUD0_GET_VAL_FROM_INSTANCE'

EXPORTING

INSTANCE = VBAP-CUOBJ

TABLES

ATTRIBUTES = ATTRIBUTES

EXCEPTIONS

INSTANCE_NOT_FOUND = 1

OTHERS = 2.

Lanka

0 Kudos

Hi,

I tried with these 2 FM's but the values are not populating from these FM's. Can anyone help me regd this.