
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@abapify/asjson-parser
Advanced tools
[asJSON](https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abenabap_asjson.htm) - Canonical JSON Representation
asJSON - Canonical JSON Representation
General asJSON format is based on %heap
object delivering values and type metadata
So when we have a code like this:
REPORT ZTEST_HEAP.
start-of-selection.
types:
begin of payload_ts,
i type i,
i_ref type ref to i,
end of payload_ts.
data(payload) = value payload_ts(
i = 123
i_ref = new #( 123 )
).
data(json) = cl_sxml_string_writer=>create( if_sxml=>co_xt_json ).
call transformation id
source data = payload
result xml json.
cl_demo_output=>display_json( json = json->get_output( ) ).
the output it generates will be:
{
"DATA":
{
"I":123,
"I_REF":
{
"%ref":"#d1"
}
},
"%heap":
{
"d1":
{
"%type":"xsd:int",
"%val":123
}
}
The following library allows us to parse this payload as if we would deal with a regular ABAP object without data references
The code below
import { parse } from '@abapify/asjson-parser';
const parser;
console.log(parse(json));
would print the object like this:
{
"DATA":
{
"I":123,
"I_REF": 123
}
import { parse } from '@abapify/asjson-parser';
console.log(parse(json));
import { transform } from '@abapify/asjson-parser';
const object = JSON.parse(json);
console.log(transform(object));
import { proxy } from '@abapify/asjson-parser';
const object = JSON.parse(json);
console.log(proxy(object));
FAQs
[asJSON](https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abenabap_asjson.htm) - Canonical JSON Representation
We found that @abapify/asjson-parser demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.