九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
給SAP WebClient UI的表格行項目增添PDF預(yù)覽功能

In CRM UI by default the PDF preview is only available in document header level. For example once PDF Fact Sheet is clicked, the PDF is displayed in a popup window.

Suppose there are lots of document to be previewed as a PDF, you have to enter to overview page of each and preview there. A more efficient way is the preview functionality can be directly available in search result table as “One Click Action(OCA)”. This blog will explain the main required steps.

The example is built based on new Genil model CRMSM developed in CRM EHP3. For detail about this Genil model, please refer to this blog Twitter(also Facebook) is official integrated into CRM 7.0 EHP3.

Let’s have a look at what could be achieved as table line item preview.

Once the OCA in a given table row is clicked,

A new Popup is displayed with rendered PDF there.

Step by step for line item preview enablement

(1) since it is required to display PDF in popup, so component usage for reuse component GSURLPOPUP must be declared in runtime repository.

(2) Define OCA event handler in get_p callback:

Source code of GET_P:

METHOD get_p_thtmlb_oca.  CASE iv_property.    WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.      rv_value = cl_bsp_dlc_view_descriptor=>field_type_oca.    WHEN if_bsp_wd_model_setter_getter=>fp_onclick.      rv_value = 'PREVIEW'.  ENDCASE.ENDMETHOD.

(3) Create a new event handler for PREVIEW event:

METHOD eh_onpreview.    DATA: lv_event    TYPE REF TO cl_htmlb_event_tableview.    lv_event    ?= htmlb_event.    me->typed_context->searchresult->eh_on_one_click_action(       iv_htmlb_event    = lv_event       iv_htmlb_event_ex = htmlb_event_ex ).  ENDMETHOD.

The method above EH_ON_ONE_CLICK_ACTION is implemented in context node class:

METHOD eh_on_one_click_action.  DATA: lv_event     TYPE string,        lv_index     TYPE string,        lr_col       TYPE REF TO cl_crm_bol_entity.  SPLIT iv_htmlb_event_ex->event_defined AT '.' INTO lv_event lv_index.  me->get_bo_by_index( conv #( lv_index ) ).  lr_col ?= me->collection_wrapper->get_current( ).  CHECK lr_col IS NOT INITIAL.  CASE lv_event.    WHEN 'PREVIEW'.      mr_owner->open_pdf( lr_col ).    WHEN OTHERS.  ENDCASE.ENDMETHOD.

Inside this method, the PDF preview task is delegated to method OPEN_PDF:

METHOD open_pdf.    DATA(lv_uuid) = ir_bol->get_property_as_string( 'UUID' ).    CONCATENATE 'uuid=' lv_uuid INTO DATA(lv_query).    DATA(lv_url) = cl_crm_web_utility=>create_url( iv_path = '/sap/crm/social_print'                                             iv_query = lv_query                                             iv_in_same_session = 'X' ).    SELECT SINGLE internal_id INTO @DATA(lv_id) FROM crmd_soc_post WHERE uuid = @lv_uuid.    DATA(lv_title) = 'Social Post preview: ' && lv_id.    DATA(lr_popup) =  me->comp_controller->window_manager->create_popup(  iv_interface_view_name = 'GSURLPOPUP/MainWindow'                                                                    iv_usage_name          = 'CUGSURLPopup'                                                                    iv_title               = lv_title ).    DATA(lr_cn) = lr_popup->get_context_node( 'PARAMS' ).    DATA(lr_obj) = lr_cn->collection_wrapper->get_current( ).    DATA(ls_params) = VALUE crmt_gsurlpopup_params( url = lv_url height = '700' ).    lr_obj->set_properties( ls_params ).    lr_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_plain ).    lr_popup->set_window_width( 700 ).    lr_popup->set_window_height( 700 ).    lr_popup->open( ).  ENDMETHOD.

(4) Create a new ICF node social_print in tcode SICF:

Create a new handler class ZCL_SOCIAL_PRINT for this node.

(5) Inside the handler class mentioned in step 4, an Adobe print form template ZPF_SOCIAL_POST is used.

As a result you need to create it in tcode SFP. You have two objects to create in this transaction code.

(1) A form interface ZIF_SOCIAL_POST. This interface declares importing signature which will be filled by the PDF consumer with business data. The signature required by this example could be found in below screenshot.

(2). A template file which defines PDF layout. In the design time you specify the mapping relationship between UI elements in the template with their corresponding data nodes created in form interface.

Click Layout tab to open Form Builder, and define data binding there.

For this example, you can just type “fb_xdp_up” in command area and upload the template file locally.

Once uploaded, activate both interface and template.

In the runtime the ABAP data to be displayed is converted to xml format and merged into template by ADS ( Adobe Document Service ). If you meet with any trouble during PDF generation phase, you can debug method CL_FP_PDF_OBJECT~EXECUTE_INTERNAL to find the root cause.

The user parameter FPTRACELEVEL is a convenient way to get detail trace for PDF rendering detail.

本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
ABAP 集成釘釘開放平臺_sap strust_Seele
通過 PHP 動態(tài)構(gòu)建 PDF 文件
bShare提供了自定義分享內(nèi)容
從卷組VG移除并刪除物理卷PV
VC++ 6.0的小花招,你會玩嗎?
D3D中的網(wǎng)格(Mesh)
更多類似文章 >>
生活服務(wù)
熱點新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服