cancel
Showing results for 
Search instead for 
Did you mean: 

help in selection screen

Former Member
0 Kudos

i want a selection screen where there are a few check boxes and radio buttons. beside the radio buttons there would be predefined labels .

But now, here in the requirement, every label should have its own destination alloted and the printer pop should not come at all. It should all be done internally and the labels have to be printed once they are selected.

as soon as we click on the radio button we should not have the pop up asking for the printer name. instead it should automatically be going to that printer destination.

The idea which the functional guys have given is that a table has to be created with a particular destination for each of it.

can this be done???if yes how?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

thanq very much for the help. but can you please tell me how to get the print out directly without the pop up asking for the printer being displayed???

Former Member
0 Kudos

Hi,

To remove popup for printer parameters, use this

Call function 'OPEN_FORM'

Exporting

dialog = space

Cheers.

...Reward if useful.

Former Member
0 Kudos

Hi,

To remove popup for printer parameters, use this

data: opt type itcpo.

opt-tddest = <printer_name>.

opt-TDIMMED = 'X'.

opt-TDNEWID = 'X'.

Call function 'OPEN_FORM'

Exporting

dialog = space

option = opt

Cheers.

...Reward if useful.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

You may maintain the printer in table TVARV via transaction SM30, maintain 1 printer for each of the radiobuttons. In your program, read table TVARV based on the radiobutton selected.

Cheers.

...Reward if useful.