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

Selection screen

Former Member
0 Likes
388

Hi,

I want to desing the selection screen with the following requirements.

selection screen having 3 bloks. In first block i want customer and company code. in second screen i want two check boxes like all company code and specified co.code. In third block i want sales order book under that i want checkbox all sales area.

Regards

Srinu

1 ACCEPTED SOLUTION
Read only

varma_narayana
Active Contributor
0 Likes
366

Hi

Try this.

TABLES : KNB1.

selection screen begin of block B1 with frame title text-001.

SELECT-OPTIONS S_kunnr FOR KNB1-KUNNR.

parameter p_bukrs type KNB1-BUKRS.

end of block B1.

selection screen begion of block B2 with frame title text-002.

parameter cb_All as checkbox.

parameter cb_Sel as checkbox.

end of block b2.

selection screen begion of block b3 with frame title text-003.

**parameter : p_sb type <as per ur need>.

parameter cb_SA as checkbox .

end of block b3.

reward if helpful.

2 REPLIES 2
Read only

Former Member
0 Likes
366

HI

selection screen begion of block b1 with frame title text-001.

parameter p_kunnr like kna1-kunnr.

parameter p_bukrs type bukrs_d.

end of block b1.

selection screen begion of block b2 with frame title text-002.

parameter p_chkbox1 as checkbox.

parameter p_chkbox2 as checkbox.

end of block b2.

selection screen begion of block b3 with frame title text-003.

parameter {your field for sales order book define as earlier}

parameter p_checkbox3 as checkbox with text "all sales areas".

end of block b3.

reward if helpful

vivekanand

Read only

varma_narayana
Active Contributor
0 Likes
367

Hi

Try this.

TABLES : KNB1.

selection screen begin of block B1 with frame title text-001.

SELECT-OPTIONS S_kunnr FOR KNB1-KUNNR.

parameter p_bukrs type KNB1-BUKRS.

end of block B1.

selection screen begion of block B2 with frame title text-002.

parameter cb_All as checkbox.

parameter cb_Sel as checkbox.

end of block b2.

selection screen begion of block b3 with frame title text-003.

**parameter : p_sb type <as per ur need>.

parameter cb_SA as checkbox .

end of block b3.

reward if helpful.