2007 May 17 9:58 PM
Hi All!!
I am entering a material number in the 1st screen and then hit enter, then it should show up the orders in which it is involved in the second screen, also they should be able to check the orders required. So could anyone suggest, how I can go on further with this.
Thanks,
Shekhar.
2007 May 17 10:01 PM
create two screens :
first screen : 9000
case sy-ucomm.
when 'ENT1'.
get the data from table.
leave to screen 9100.
second screen : 9100
design your layout ..
Thanks
Seshu
Hi All!!
I am entering a material number in the 1st screen and then hit enter, then it should show up the orders in which it is involved in the second screen, also they should be able to check the orders required. So could anyone suggest, how I can go on further with this.
Thanks,
Shekhar.
2007 May 17 10:01 PM
create two screens :
first screen : 9000
case sy-ucomm.
when 'ENT1'.
get the data from table.
leave to screen 9100.
second screen : 9100
design your layout ..
Thanks
Seshu
2007 May 17 10:03 PM
2007 May 17 10:06 PM
Create you program as module pool and assign a transaction code to it.
Thanks
Aneesh.
2007 May 17 10:06 PM
U can write it in executable...
but u need to create screens, PBO MOdules, PAI MOdules...for those screens... and u may create include for pbo and pai oder write in same executable program...
Regards
SAB
2007 May 17 10:09 PM
can u pls explain it more clearly because I havent done it before.
Thanks, points would be rewarded for more details.
2007 May 17 10:18 PM
1. Create a Executable program..
2. variable declaration. selection screen.
3. select statements..
4. Call Screen 100.
--> double click on screen and create and design as per ur requrement.
place a button.
double clcik on pai module --> create --> same in ZPROG.
PAI module appears in ZPROG.
place the code..
CASE SY-UCOMM.
WHEN 'BUTN'.
UR REQUIREMENT STEPS.......
...............
CALL SCREEN 200.
ENDCASE.
--> Double click on 200 --> create and design..
double clcik on 200 PBO module --> create
code it as per ur requirement..
--> Double click on 200 PAI --> create
module USER_COMMAND_0200 input.
CASE SY-UCOMM.
WHEN 'EXIT'. " EXIT button to return to previous screen 100.
SET SCREEN 0.
LEAVE SCREEN.
*LEAVE TO SCREEN 100.
ENDCASE.
endmodule. " USER_COMMAND_0200 INPUT
u can create a t-code for this program .. in SE93 and provide the program anme and initial screen number.
Regards
SAB
2007 May 18 2:58 PM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |