on 2014 Mar 13 3:18 PM
Hello Experts,
My client have requirement to print the payslip directly from ESS portal without using PDF plugin print button.
Client do not want to send the printing request on backend, when I click on 'Send Print Request' button the payslip would be printed directly like when we click on PDF plugin print button.
Is it possible to achieve this.
Please help me out.
Thanks & Regards,
Prajyot D.
can you advise which version and show your screenprints what you see? read here http://help.sap.com/erp2005_ehp_06/helpdata/en/dd/028fd3bd2f452998c9d195a8989e1d/content.htm?framese... requent for central printing will generate a spool request in the backend, you can hide these buttons and save the one a pdf on your local machine http://scn.sap.com/thread/3409518
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
can you check this BADI as well Badi - XSS_REM_INTERFACE Method - DEFINE_PRINTBUTTON_STATUS Parameter Description EX_PRINTBUTTON_ENABLED Pushbutton active EX_PRINTBUTTON_VISIBLE Pushbutton visible Use above technical information to hide print button
in your case check here We have a BADI enabled that might be related to this item: this is uner WEB DYNPRO ABAP HRESS_PAYSLIP_BADI_IMPL - BAdI for Payslip (Implementation) I've found a METHOD under this BADI which is similar to the one you provided: METHOD - IF_HRESS_PAYSLIP_BADI~ADJUST_PRINTBUTTON_STATUS Here's the code: method IF_HRESS_PAYSLIP_BADI~ADJUST_PRINTBUTTON_STATUS. * see method 'ADJUST_FIELD_CATALOG' mv_print_button_enabled = abap_true. * precondition: * button must be visible via configuration * and action_id 'HRGRT_REQUEST_PTRINT' must be used for * if precondition above is not valid this method has no functionality * and setting will be ignored. ev_enabled = mv_print_button_enabled. endmethod.
User | Count |
---|---|
114 | |
8 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.