cancel
Showing results for 
Search instead for 
Did you mean: 

Select-options in Smartforms

Former Member
0 Kudos

Dear Friends,

I have created ( modified a standard) smartform for Purchase order details.

I have no print program,since I have placed the whole code within the smartform

Now How should I place Select-options to give range of purchase order numbers.

thanx in advance

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

hi,

u need to do it through the program only..

create a program and define your selection-screen there.

SUBMIT your report in the text editor.

regards,

pankaj singh

former_member181962
Active Contributor
0 Kudos

HI Annapurna,

There is no way to have a smartform getting triggered without a Driver Program.

There must be one. Check in NACE transaction or TNAPR table to find the prnt program.

Once you find the print program, you can fill an internal table based on the select options

select-options: s_ebeln for ekko-ebeln.

select ebeln into table itab where ebeln in s_ebeln.

loop at itab.

  • Original Code.

endloop.

Regards,

Ravi

Former Member
0 Kudos

hi,

when i faced this problem, i have created one internal table in the driver prog and i passed the values of select option to that internal table and i passed that internal table to smartforms.

reward the points if its helpful.

Regards,

Balu