2016 Apr 14 11:54 AM
Hi Gurus,
Please help me out ..I have two check box one is for condition L record other for j record.now i want to get both in one display screen and also wnat to show l and j in a column that will show the record type.
Thanks...
Hi Gurus,
Please help me out ..I have two check box one is for condition L record other for j record.now i want to get both in one display screen and also wnat to show l and j in a column that will show the record type.
Thanks...
2016 Apr 14 12:10 PM
write: /condition L, condition J,
Or I say it in another way. Please give more details or code snippet of what YOU have tried already.
Where are you stuck ?
2016 Apr 14 12:22 PM
Thanks for your response..
report requirement is like if radio button r1 = X then join data if R2= 'X' leave data if R3 = X then both join and leave data with addition of column message which shows of R1 condition data and R2 condition Data in a one display...
2016 Apr 14 12:10 PM
Not sure what you are trying to accomplish. But checkboxes are easily displayed in a selection screen, or al dynpro.
2016 Apr 14 12:42 PM
Hope this is what you are asking for..
Code :
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 2.
SELECTION-SCREEN COMMENT 4(10) TEXT-000.
SELECTION-SCREEN POSITION 16.
PARAMETERS L RADIOBUTTON GROUP GRP1.
SELECTION-SCREEN COMMENT 18(10) TEXT-001.
SELECTION-SCREEN POSITION 30.
PARAMETERS J RADIOBUTTON GROUP GRP1.
SELECTION-SCREEN COMMENT 32(10) TEXT-002.
SELECTION-SCREEN END OF LINE.
Create Text Elements
2016 Apr 14 12:43 PM
Prepare one final internal table with an additional field 'Condition'. Loop through condition1 record and append to finla internal table along with condition = 'L'. And similarly loop through condition2 and move records. Then display the final prepared table in output.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |