Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | const {cx_root} = await import("./cx_root.clas.mjs"); // cl_alv_changed_data_protocol.clas.abap class cl_alv_changed_data_protocol { static INTERNAL_TYPE = 'CLAS'; static INTERNAL_NAME = 'CL_ALV_CHANGED_DATA_PROTOCOL'; static IMPLEMENTED_INTERFACES = []; static ATTRIBUTES = {"MT_MOD_CELLS": {"type": () => {return abap.types.TableFactory.construct(new abap.types.Structure({ "row_id": new abap.types.Integer({qualifiedName: "I"}), "sub_row_id": new abap.types.Integer({qualifiedName: "I"}), "fieldname": new abap.types.Character(30, {}), "value": new abap.types.Character(128, {}), "error": new abap.types.Character(1, {}), "tabix": new abap.types.Integer({qualifiedName: "I"}), "style": new abap.types.Hex({length: 4}), "style2": new abap.types.Hex({length: 4}), "style3": new abap.types.Hex({length: 4}), "style4": new abap.types.Hex({length: 4})}, "LVC_S_MODI", "LVC_S_MODI", {}, {}), {"withHeader":false,"keyType":"DEFAULT","primaryKey":{"isUnique":false,"type":"STANDARD","keyFields":[],"name":"primary_key"},"secondary":[]}, "LVC_T_MODI");}, "visibility": "U", "is_constant": " ", "is_class": " "}}; static METHODS = {}; constructor() { this.me = new abap.types.ABAPObject(); this.me.set(this); this.INTERNAL_ID = abap.internalIdCounter++; this.FRIENDS_ACCESS_INSTANCE = { }; this.mt_mod_cells = abap.types.TableFactory.construct(new abap.types.Structure({ "row_id": new abap.types.Integer({qualifiedName: "I"}), "sub_row_id": new abap.types.Integer({qualifiedName: "I"}), "fieldname": new abap.types.Character(30, {}), "value": new abap.types.Character(128, {}), "error": new abap.types.Character(1, {}), "tabix": new abap.types.Integer({qualifiedName: "I"}), "style": new abap.types.Hex({length: 4}), "style2": new abap.types.Hex({length: 4}), "style3": new abap.types.Hex({length: 4}), "style4": new abap.types.Hex({length: 4})}, "LVC_S_MODI", "LVC_S_MODI", {}, {}), {"withHeader":false,"keyType":"DEFAULT","primaryKey":{"isUnique":false,"type":"STANDARD","keyFields":[],"name":"primary_key"},"secondary":[]}, "LVC_T_MODI"); } async constructor_(INPUT) { if (super.constructor_) { await super.constructor_(INPUT); } return this; } } abap.Classes['CL_ALV_CHANGED_DATA_PROTOCOL'] = cl_alv_changed_data_protocol; export {cl_alv_changed_data_protocol}; |