前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >在SAP WebClient UI里使用AJAX进行异步数据读取

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

作者头像
Jerry Wang
发布2020-08-14 09:48:44
7590
发布2020-08-14 09:48:44
举报

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

代码语言:javascript
复制
<%@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:

代码语言:javascript
复制
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.

代码语言:javascript
复制
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 )

代码语言:javascript
复制
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.

代码语言:javascript
复制
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

代码语言:javascript
复制
<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:

代码语言:javascript
复制
lv_url = cl_crm_web_utility=>create_url( iv_path = '/sap/crm/zajax'
  iv_query = lv_query
  iv_in_same_session = 'X' ).​

Create a new handler class which implement interface IF_HTTP_EXTENSION:

Implement the method HANDLE_REQUEST as below:

代码语言:javascript
复制
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:

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2020-08-13 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Part2
  • comment: this function is designed to support different kinds of browsers.
  • Part3
  • Monitor AJAX request and response in Chrome
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档