2006 Oct 11 6:42 PM
Hi!
I'm new to drill down reports.Can anybody help me to get it's fundas?
Points will be awarded!!!!!!!!!
thanks
Hi!
I'm new to drill down reports.Can anybody help me to get it's fundas?
Points will be awarded!!!!!!!!!
thanks
2006 Oct 11 6:47 PM
Drill down reports can be helpful when user wants to navigate to a transaction. for example, say the list has the sales docuement number in it, user can click on the sales document number and fire VA03.
report zrich_0002 no standard page heading.
data: ivbak type table of vbak with header line.
data : cursor_field(30),
field_value(30) .
select-options: s_vbeln for ivbak-vbeln.
start-of-selection.
select * into corresponding fields of table ivbak
from vbak
where vbeln in s_vbeln.
loop at ivbak.
write:/ ivbak-vbeln.
endloop.
at line-selection.
get cursor field cursor_field value field_value.
case cursor_field.
when 'IVBAK-VBELN'.
set parameter id 'AUN' field field_value.
call transaction 'VA03' and skip first screen..
endcase.
Regards,
Rich Heilman
2006 Oct 11 6:50 PM
Hi Ravi,
Please check this online document.
http://help.sap.com/printdocu/core/Print46c/en/data/pdf/CAREP/CAREP.pdf
Hope this will help.
Regards,
Ferry Lianto
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |