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: 

Enhance IDPC for more countries by enhancement in FM J_1BSA_COMPONENT_ACTIVE

Former Member
0 Kudos

When trying to use IDCP with a invoice number , program shows a error message as "No Records Available".

I tried to debug the issue and found that system is calling a function module J_1BSA_COMPONENT_ACTIVE.



This function module checks for active components for different countries, In my case invoice country is UY, but there is no cede for country UY in this function module.

I have to enhance this function module for country UY also.

Kindly suggest if there any other way to overcome this situation.

Helpful answers will be rewarded.

Let me know in case you need any further information from my side.

Thanks in Advance!

2 REPLIES 2

Former Member
0 Kudos

Hi Shyam,

Hope you doing great!

I am facing same issue,Function module(J_1BSA_COMPONENT_ACTIVE) checks for active components for different countries, In my case country is AU(Australia) and NZ(Newzealand),

but there is no code for country NZ in the above function module.

In case of Australia when i compared it with other countries the code is :


*       Italy

      WHEN 'I'.
        active_component = 'IT'.
        IF component <> 'IT' AND component <> '**'.

          RAISE component_not_active.
        ENDIF.

Highlighted with color , In Australia highlighted piece of code is missing.

*         Australia


      WHEN 'AUS'.
        active_component = 'AU'.
        IF component <> 'AU'.
          RAISE component_not_active.
ENDIF.

Please share your valuable suggestions.

Thanks & Regards

Rajasekhar S

Former Member
0 Kudos

Hi Shyam,

Please share your inputs for above mention issue.

I have to enhance this function module for country NZ also.

Kindly suggest if there any other way to overcome this situation.

Thanks & Regards

Rajasekhar S