Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
report ztcode. | |
parameters: month type dats default sy-datum obligatory, | |
user type usr02-bname obligatory default sy-uname. | |
types: begin of zusertcode, | |
operation type char30, | |
type type char10, | |
count type swncshcnt, | |
end of zusertcode. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ZCL_ABAP_BENCHMARK_TOOL definition | |
public | |
final | |
create public . | |
public section. | |
class-methods START_TIMER . | |
class-methods STOP_TIMER . | |
class-methods GC . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sap.ui.define([ | |
"sap/ui/model/json/JSONModel", | |
"jquery.sap.storage" | |
], function(JSONModel, jQuery) { | |
"use strict"; | |
return JSONModel.extend("sap.ui.demo.cart.model.CartModel", { | |
_STORAGE_KEY : "LOCALSTORAGE_MODEL", | |
_storage : jQuery.sap.storage(jQuery.sap.storage.Type.local), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys, cv2 | |
# Refactored https://realpython.com/blog/python/face-recognition-with-python/ | |
def cascade_detect(cascade, image): | |
gray_image = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) | |
return cascade.detectMultiScale( | |
gray_image, | |
scaleFactor = 1.15, | |
minNeighbors = 5, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html><head> | |
<meta http-equiv='X-UA-Compatible' content='IE=edge' /> | |
<title>GoogleMap Example with Data Binding used</title> | |
<script id='sap-ui-bootstrap' type='text/javascript' | |
src='https://openui5.hana.ondemand.com/resources/sap-ui-core.js' | |
data-sap-ui-theme='sap_bluecrystal' | |
data-sap-ui-libs='sap.m'></script> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta charset="UTF-8"> | |
<title>Sample using the OpenUI5 googlemaps library</title> | |
<script id="sap-ui-bootstrap" | |
src="/sap/ui5/1/resources/sap-ui-core.js" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*{ REPLACE SU1K901157 1 | |
*\ READ TABLE orgtask_agents_sum | |
*\ WITH KEY org_obj = lv_orgobject. | |
*\ IF sy-subrc EQ 0. | |
*\ p_workitem = orgtask_agents_sum-workitemid. | |
*\ ELSE. | |
*\ SELECT * FROM swworgtask | |
*\ APPENDING TABLE lt_swworgtask | |
*\ WHERE org_obj = lv_orgobject AND | |
*\ task_obj = tcats-task. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
isXMLView = function(oControl) { | |
return oControl.getMetadata().getName() === "sap.ui.core.mvc.XMLView"; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta charset="UTF-8"> | |
<title>test</title> | |
<script id="sap-ui-bootstrap" | |
xxxsrc="https://openui5.netweaver.ondemand.com/resources/sap-ui-core.js" |
NewerOlder