I have a Web contents table ZCOOKIES that published from SAP GUI. The table have 2 columns USER and PASSWORD, and a button:

The button will push those DATA to table ZCOOKIES in SAP, how can I do it?
The ZCOOKIES table data in t-code SE16N:

The HTML and Javascript function for button that transfers those data to ZCOOKIES table:
<input type="button" style="width:5.740em" class="MobileButton " name="btnck[1]"
value="button" onclick="setOkCode('=BTNCK');" />
<script>
function setOkCode(current) {
var tr = $(current).parents("tr");
var id = tr.find('.id').text();
alert(id);
}
</script>
Since I don't think any possible way to push data from HTML to SAP? Any idea?
I'm coding in Web Application Builder (ITS) and ABAP is language to create table layout in SAP.
