on 2010 Jul 12 2:48 PM
Hello!
I'm working with CRM7.0 and now i have the requirement to run report from quotation view in web UI. For this purpose i need to create new button which will call my report. I've found that button can be created via BSP Component Workbench.
Who can guide me with creating?
Thanks in advance!
Request clarification before answering.
Hi,
you can create a button in do_prepare_output of the view
DATA: ls_button TYPE crmt_thtmlb_button.
IF gt_button IS INITIAL.
ls_button-text = 'TEST BUTTON'.
ls_button-on_click = 'NEW'.
ls_button-enabled = abap_true.
* ls_button-tooltip = 'TEST BUTTON'
APPEND ls_button TO gt_button.
CLEAR ls_button.
ENDIF.
I hope it will help you.
Regards,
Kamesh Bathla
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
2 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.