‎2008 Feb 21 9:48 AM
in selection-screen i have one selection-screen block and it contain 5 select-options
while displaying on screeen I want complete block should come on Center.
Insted of diplaying on Uper left side..
how to do that..?
Thanks in advance
point is assurd
‎2008 Feb 21 9:57 AM
TABLES EKKO.
********END OF DATA DECLARATIONS*********
********SELECTION SCREEN DESIGN ***********
SELECTION-SCREEN SKIP 9.
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
PARAMETER : P_WERKS LIKE MARC-WERKS MODIF ID S1.
SELECT-OPTIONS : S_EBELN FOR EKKO-EBELN NO INTERVALS MODIF ID S2.
SELECTION-SCREEN END OF BLOCK B1.
******END OF SELECTION SCREEN DESIGN****************
‎2008 Feb 21 9:52 AM
Hi,
i dont think you can move the block. How ever you can place the select option at desired location.
use the statement begin of line. Note: the selection text(label) wont appear if you use begin of line. Hence you need to use text symbols to display the label
Check the sample code.
SELECTION-SCREEN :
SKIP, BEGIN OF LINE,COMMENT 5(27) v_1 FOR FIELD p_max.
PARAMETERS p_max(2) TYPE n DEFAULT '30' OBLIGATORY.
SELECTION-SCREEN END OF LINE.
*---------------------------------------------------------------------*
INITIALIZATION.
v_1 = 'Maximum of records to read'.
Regards,
Niyaz
Edited by: Niyaz Ahamed on Feb 21, 2008 3:29 PM
‎2008 Feb 21 9:54 AM
Hi,
call the selection screen starting at and ending at positions
call selection-screen 1100 starting at col1 lin1 ending at col2 lin2
<REMOVED BY MODERATOR>
rgds
umakanth
Edited by: Alvaro Tejada Galindo on Feb 21, 2008 4:54 PM
‎2008 Feb 21 9:55 AM
hi,
From any program in which selection screens are defined, you can call these screens at any point of the program flow using the following statement:
CALL SELECTION-SCREEN numb [STARTING AT x1 y1]
[ENDING AT x2 y2].
This statement calls selection screen number numb. The selection screen called must be defined in the calling program either as the standard selection screen (screen number 1000) or as a an independent selection screen (any screen number).
You can display a user-defined selection screen as a modal dialog box using the STARTING AT and ENDING ATadditions
‎2008 Feb 21 9:57 AM
TABLES EKKO.
********END OF DATA DECLARATIONS*********
********SELECTION SCREEN DESIGN ***********
SELECTION-SCREEN SKIP 9.
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
PARAMETER : P_WERKS LIKE MARC-WERKS MODIF ID S1.
SELECT-OPTIONS : S_EBELN FOR EKKO-EBELN NO INTERVALS MODIF ID S2.
SELECTION-SCREEN END OF BLOCK B1.
******END OF SELECTION SCREEN DESIGN****************
‎2008 Feb 21 10:01 AM
‎2008 Feb 21 10:02 AM
Hi Jim,
First Execute ur porgram then ur selection-screen will appear. From there choose system - > status from menu bar. There double click on the screen(Default - 1000) and then go to Layout. In the Layout u can position ur selection-screen in what way u want.
Regards,
Balavardhan.K
‎2008 Feb 21 10:02 AM
Hi
try this
SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-002.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 1.
SELECTION-SCREEN COMMENT 1(10) TEXT-R01 FOR FIELD BUY.
PARAMETERS: BUY RADIOBUTTON GROUP G1.
SELECTION-SCREEN POSITION 16.
SELECTION-SCREEN COMMENT 16(10) TEXT-R02 FOR FIELD SELL.
PARAMETERS: SELL RADIOBUTTON GROUP G1.
SELECTION-SCREEN END OF LINE.
PARAMETERS: EXCH(3) TYPE C AS LISTBOX VISIBLE.
Thanks
Vasudha
‎2008 Feb 21 10:08 AM
‎2008 Feb 21 10:13 AM
hi,
try this line of code befor u crete the block.
selection-screen skip 9.
ex:
selection-screen skip 9.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE txt1.
PARAMETERS : p_accno TYPE zacc_master2-zaccno MODIF ID bl1.
PARAMETERS : p_stat TYPE zcust_master2-zcustid MODIF ID bl2.
SELECTION-SCREEN END OF BLOCK b1.
regards,
sri
‎2008 Feb 21 10:13 AM