日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

在SAP WebClient UI里使用AJAX进行异步数据读取

發(fā)布時(shí)間:2023/12/19 编程问答 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 在SAP WebClient UI里使用AJAX进行异步数据读取 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

For POC purpose I need to implement the AJAX functionality in Webclient UI component.
The UI component has only one input field:

Once type “a” into the input field, it immediately displays all the records in the database table SCARR whose column carrname contains the character “a” ( without any other operation like manual refresh)

change the value in the input field, the page will display the latest matched result automatically:

Here below are the steps how to build this very simple UI component which implement AJAX functionality:

(1) Create a new UI component and a new empty view

In the html view, paste the following code:
Part1

<%@page language="abap"%> <%@extension name="htmlb" prefix="htmlb"%> <% data: lv_url TYPE string, lv_query type string. lv_query = 'query='. lv_url = cl_crm_web_utility=>create_url( iv_path = '/sap/crm/zajax' iv_query = lv_query iv_in_same_session = 'X' ). %>

Since we will send asynchronous xml request to ABAP backend to query records from database table. The query must be implemented in ABAP backend. Here I will create a new ICF service node to accomplish such query. The creation of ICF node and its handler class will be discussed later. In this step we just need to pass in the ICF node path ‘/sap/crm/zajax’ to metod create_url. That method will return the url which would be used as prefix of the final url of the asynchronous request to be sent to ABAP backend.

Part2

Here we define the four JavaScript functions:

function GetXmlHttpObject(){if (window.XMLHttpRequest) {return new XMLHttpRequest();}if (window.ActiveXObject) {return new ActiveXObject("Microsoft.XMLHTTP");}return null; }

comment: this function is designed to support different kinds of browsers.

function stateChanged() {if (xmlhttp.readyState == 4) {document.getElementById("result").innerHTML = xmlhttp.responseText;document.getElementById("result").style.border = "1px solid #A5ACB2";} }

comment: this function is callback function which will automatically be called when the backend response returned by our ICF handler class is available to consume ( that means, the result is ready to be displayed in the frontend UI )

function getRequestURL(str) {var url = "<%= lv_url %>" + str;url = url + "&sid=" + Math.random();return url; }

comment: this function will assemble the final url which is to be sent to ABAP backend. The ABAP variable lv_url contains the full url of our icf node appended with request prefix “query=”. So within this function we just simply concatenate the string which is typed by end user in the input field.

function showResult(str){if (str.length == 0 ) {document.getElementById("result").innerHTML = "";document.getElementById("result").style.border = "0px";return;}xmlhttp = GetXmlHttpObject();if (xmlhttp == null ){alert ("Your browser does not support XML HTTP Request");return;}var requesturl = getRequestURL(str);xmlhttp.onreadystatechange = stateChanged ;xmlhttp.open("GET",requesturl,true);xmlhttp.send(null); }

comment: we will bind this function to event onkeyup of input field, so that once we finish the typing in input field, it will be called.
Within it, the asynchronous xml request is sent. We bind our callback function “stateChanged” to xmlhttp.onreadystatechange and do not need to care about when to call it – instead the framework will call this callback automatically when it should be called.

Part3

<body> input name: <input type="text" id="fname" onkeyup="showResult(this.value)" /> <div id = "result" ></div> </body>?

comment: just bind the event handler to event “onkeyup”.

for the complete source code which could directly be “Ctrl + C” and “Ctrl + V”, please find it in attachment.

(2) Create a new ICF node and its handler class

Use tcode SICF, create a new ICF node.

The path should be consistent with the hardcode path in the method call in step one:

lv_url = cl_crm_web_utility=>create_url( iv_path = '/sap/crm/zajax'iv_query = lv_queryiv_in_same_session = 'X' ).?

Create a new handler class which implement interface IF_HTTP_EXTENSION:

Implement the method HANDLE_REQUEST as below:

method IF_HTTP_EXTENSION~HANDLE_REQUEST. DATA: lv_input_str TYPE string, lv_html TYPE string, lt_scarr TYPE TABLE OF scarr. FIELD-SYMBOLS: <fs_scarr> TYPE scarr.lv_input_str = server->request->get_form_field( 'query' ). SELECT * FROM scarr INTO TABLE lt_scarr. IF strlen( lv_input_str ) > 0.LOOP AT lt_scarr ASSIGNING <fs_scarr>.FIND lv_input_str IN <fs_scarr>-carrname IGNORING CASE.CHECK sy-subrc = 0.IF strlen( lv_html ) = 0.CONCATENATE `<a href=’` <fs_scarr>-url `’ target=’_blank’>`<fs_scarr>-carrname `</a>` INTO lv_html.ELSE.CONCATENATE lv_html `<br />` `<a href=’` <fs_scarr>-url `’ target=’_blank’>`<fs_scarr>-carrname `</a>` INTO lv_html.ENDIF.ENDLOOP. ENDIF.IF strlen( lv_html ) = 0.lv_html = '&lt;no suggestion&gt;'. ENDIF.server->response->set_cdata( lv_html ). endmethod.

Monitor AJAX request and response in Chrome

It is very convenient to monitor AJAX behavior via developer tool in Chrome. Launch the U component with Chrome, click F12 to open developer tool. Then mark the checkbox “Any XHR” under “XHR Breakpoints”.

So that once there is a AJAX request sent from your application, the developer tool will automatically stop at the very code in which the XHR ( XML Header Request ) is sent:
Switch to debug mode, and then type a character like “a” in the input field, the session will stop – The UI becomes gray and
there is a tooltip “Paused in debugger” in the top-right part of the window:

In the left-most part of development tool, you can observe which view the AJAX request is sent from. In our example from prefix “bspwd_cmp_test” we could judge that currently our ui component is launched in test mode ( by clicking the test button in UI Component Workbench);
In the middle part we could see the exact line where the request is sent;

In the right most part we could check the detail value of variables used in JavaScript and the function callstack, just the same logic as ABAP debugger. For example we could get the detail of XHR like request url, and what character end user has input.

click F10 to step over until the response is returned from ABAP backend.

Put the mouse into field “responseText” and it will display the complete content of it:

要獲取更多Jerry的原創(chuàng)文章,請(qǐng)關(guān)注公眾號(hào)"汪子熙":

總結(jié)

以上是生活随笔為你收集整理的在SAP WebClient UI里使用AJAX进行异步数据读取的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。