Application Development and Automation 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: 
Read only

Function Module for creating material determinations

Former Member
0 Likes
1,118

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
Read only

Former Member
0 Likes
903

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
Read only

Former Member
0 Likes
905

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.

Read only

Former Member
0 Likes
903

Hi,

Check out FM > AD21_UPDATE_AD01C_MAT

Reards,

Himanshu

Read only

0 Likes
903

Try out the FM, AD15_MATERIAL_DETERMINATION.

Regards,

Prathap

Read only

Former Member
0 Likes
903

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