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: 

error in smartform output

former_member574106
Participant
0 Kudos

Hi friends,

I am creating my first smartform. I did all the steps correctly including the driver program, but the entries under main table are coming empty like item, material no etc.I checked all the smartforms related blogs, but still the solution is not coming correct.  What is the error ? PFA.

Regards,

Saurav Lahiry

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Saurav,

As i can see the issue is with the form interface.You are not passing the it_vbrp in form interface.

instead you have declared it_vbrp in the global definition so the it_vbrp is empty.

remove it_vbrp from global data and declare it_vbrp in the form interface.  pass it_vbrp in FM_NAME functionmodule from your driver program.

1 REPLY 1

Former Member
0 Kudos

Hi Saurav,

As i can see the issue is with the form interface.You are not passing the it_vbrp in form interface.

instead you have declared it_vbrp in the global definition so the it_vbrp is empty.

remove it_vbrp from global data and declare it_vbrp in the form interface.  pass it_vbrp in FM_NAME functionmodule from your driver program.