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
// ==UserScript== | |
// @name SAP ExtLogin override | |
// @namespace http://tampermonkey.net/ | |
// @version 2025-01-04 | |
// @description Override the vs code link with cursor:// | |
// @match https://*.applicationstudio.cloud.sap/remote-login.html* | |
// @grant none | |
// @run-at document-idle | |
// ==/UserScript== |
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 Z_TIMSTAMP_DEMO | |
*& | |
*&---------------------------------------------------------------------* | |
*& Demostrate how to get timestamp in ABAP and setup timezone | |
*& | |
*&---------------------------------------------------------------------* | |
REPORT Z_TIMSTAMP_DEMO. |
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
* Rather use https://gist.github.com/mydoghasworms/4888a832e28491c3fe47 | |
* The alternative is a better parser although it is not an emmitter) | |
*----------------------------------------------------------------------* | |
* CLASS json_util DEFINITION | |
*----------------------------------------------------------------------* | |
class json_util definition. | |
public section. | |
class-methods: | |
data_to_json importing data type any | |
returning value(json) type string, |