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: 

Function Module for creating material determinations

Former Member
0 Kudos

Hi,

I looked for a function module to create material determinations like in transaction VB11. I couldn´t find any, can anybody help me out with that issue?

Many thanks,

Christoph

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Critoph,

One way is to debug the transaction VB11 to find out the Function Module used in transaction to create material determinations.

Open the transaction and execute it in debug mode, put break point at ABAP statement CALL Function and execute, you will get to know the function module required.

You can also, create a RFC enabled function module, which contains total recording of your transaction and has a call transaction 'VB11'. From this you can easily post the data. But, be careful before record it. Because the screens will be changes

according to each key combination.

But since recording is obsolete in now, I think the first method would be appropriate.

Please let me know if this helps..

Regards,

Amit.

4 REPLIES 4

Former Member
0 Kudos

Hi Critoph,

One way is to debug the transaction VB11 to find out the Function Module used in transaction to create material determinations.

Open the transaction and execute it in debug mode, put break point at ABAP statement CALL Function and execute, you will get to know the function module required.

You can also, create a RFC enabled function module, which contains total recording of your transaction and has a call transaction 'VB11'. From this you can easily post the data. But, be careful before record it. Because the screens will be changes

according to each key combination.

But since recording is obsolete in now, I think the first method would be appropriate.

Please let me know if this helps..

Regards,

Amit.

Former Member
0 Kudos

Hi,

Check out FM > AD21_UPDATE_AD01C_MAT

Reards,

Himanshu

0 Kudos

Try out the FM, AD15_MATERIAL_DETERMINATION.

Regards,

Prathap

Former Member
0 Kudos

Thank you all for your help.

I solved the problem.

There exists a function module called 'RV_MAT_SUB_SAVE' that can create new material determinations.

Christoph