-
Notifications
You must be signed in to change notification settings - Fork 72
[TRAN] Add new object type TRAN #713
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
WDFYvonne
wants to merge
37
commits into
SAP:main
Choose a base branch
from
WDFYvonne:feature/tran
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 11 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
07c3c46
React to abaplint
WDFYvonne 8c0cd56
Merge branch 'SAP:main' into main
WDFYvonne eed0397
Merge branch 'SAP:main' into main
WDFYvonne 5e8a46f
Merge branch 'SAP:main' into main
WDFYvonne 2a6bfde
Merge branch 'SAP:main' into main
WDFYvonne 630dd2f
Add fildes for TRAN
WDFYvonne d663b3b
React to abaplint
WDFYvonne fcb415b
React of abaplint 2
WDFYvonne feea4b7
React to abaplint
WDFYvonne 21a23c2
React of abaplint 2
WDFYvonne 2b468bd
New types in AFF interface
WDFYvonne f374af9
Delete of SUSH
WDFYvonne 6a84f16
Add example for TRAN
WDFYvonne 65e5e7c
React to EditorConfig
WDFYvonne d7b5eb9
React to JSON examples
WDFYvonne 9604e30
React to validate JASON Examples
WDFYvonne e6162f1
React to error
WDFYvonne 346cc57
Merge branch 'main' into feature/tran
WDFYvonne 48237f3
Correct AFF
WDFYvonne 61a3cdf
React to Validate examples against schema
WDFYvonne 539934b
React to Validate examples against schema
WDFYvonne 8449a51
React to check markdown
WDFYvonne 9f652e7
New type in AFF
WDFYvonne 020596d
New Type in AFF
WDFYvonne 2d6ec4e
New Type in AFF
WDFYvonne 0b2887f
Merge branch 'main' into feature/tran
Markus1812 62f188b
React to CrossCheck1
WDFYvonne c3330f0
React to Validate examples against schema
WDFYvonne 9ac8039
Set right type for some fields
WDFYvonne 5ee72b8
Merge branch 'main' into feature/tran
schneidermic0 786710f
Updated for example
WDFYvonne 9afee69
React to Validate examples against schema
WDFYvonne c8de691
Merge branch 'main' into feature/tran
huber-nicolas 31f3443
Changes to AFF
WDFYvonne c15c275
React to abaplint error
WDFYvonne ce9fef6
React to CrossCheck1
WDFYvonne 33338a1
New defaults for constants
WDFYvonne File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# SUSH File Format | ||
|
||
File | Cardinality | Definition | Schema | Example | ||
:--- | :--- | :--- | :--- | :--- | ||
`<name>.sush.json` | 1 | [`zif_aff_sush_v1.intf.abap`](./type/zif_aff_sush_v1.intf.abap) | [`sush-v1.json`](./sush-v1.json) | [`z_aff_example_sush.sush.json`](./examples/z_aff_example_sush.sush.json) |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,228 @@ | ||
{ | ||
"$comment": "This file is autogenerated, do not edit manually, see https://github.com/SAP/abap-file-formats for more information.", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/sush/sush-v1.json", | ||
"title": "SUSH Object Type", | ||
"description": "Object type SUSH", | ||
"type": "object", | ||
"properties": { | ||
"formatVersion": { | ||
"title": "ABAP File Format Version", | ||
"description": "The ABAP file format version", | ||
"type": "string", | ||
"const": "1" | ||
}, | ||
"header": { | ||
"title": "Header", | ||
"description": "Header", | ||
"type": "object", | ||
"properties": { | ||
"description": { | ||
"title": "Description", | ||
"description": "Description of the ABAP object", | ||
"type": "string", | ||
"maxLength": 60 | ||
}, | ||
"originalLanguage": { | ||
"title": "Original Language", | ||
"description": "Original language of the ABAP object", | ||
"type": "string", | ||
"minLength": 2, | ||
"maxLength": 2, | ||
"pattern": "^[a-z]+$" | ||
}, | ||
"abapLanguageVersion": { | ||
"title": "ABAP Language Version", | ||
"description": "ABAP language version", | ||
"type": "string", | ||
"enum": [ | ||
"standard", | ||
"keyUser", | ||
"cloudDevelopment" | ||
], | ||
"enumTitles": [ | ||
"Standard", | ||
"ABAP for Key Users", | ||
"ABAP Cloud Development" | ||
], | ||
"enumDescriptions": [ | ||
"Standard", | ||
"ABAP for key user extensibility", | ||
"ABAP cloud development" | ||
], | ||
"default": "standard" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"description", | ||
"originalLanguage" | ||
] | ||
}, | ||
"general": { | ||
"title": "General", | ||
"description": "General", | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"title": "Application Name", | ||
"description": "Application Name of Authorization Default Value.", | ||
"type": "string", | ||
"maxLength": 30 | ||
}, | ||
"type": { | ||
"title": "Type", | ||
"description": "Type of Authorization Default Value.", | ||
"type": "string", | ||
"enum": [ | ||
"transaction", | ||
"?", | ||
"rfcFunctionModule", | ||
"hashValueForTadirObject", | ||
"hashValueForExternalService", | ||
"collisionHashValue" | ||
], | ||
"enumDescriptions": [ | ||
"Transaction", | ||
"?", | ||
"RFC Function Module", | ||
"Hash Value for TADIR Object", | ||
"Hash Value for External Service", | ||
"Collision Hash Value" | ||
] | ||
}, | ||
"okflag": { | ||
"title": "Maintenance Mode", | ||
"description": "Maintenance Mode.", | ||
"type": "string", | ||
"enum": [ | ||
"manualMaintenance", | ||
"automaticMaintenance(allAuthorizationObjects)", | ||
"automaticMaintenance(basisAuthorizationObjectsOnly)", | ||
"applicationDoesNotRequireDefaultValues", | ||
"applicationIsDeprecated", | ||
"applicationIsObsolete" | ||
], | ||
"enumDescriptions": [ | ||
"Manual Maintenance", | ||
"Automatic Maintenance (All Authorization Objects)", | ||
"Automatic Maintenance (Basis Authorization Objects Only)", | ||
"Application Does Not Require Default Values", | ||
"Application is Deprecated", | ||
"Application Is Obsolete" | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"name", | ||
"type", | ||
"okflag" | ||
] | ||
}, | ||
"authorizationObjects": { | ||
"title": "Authorization objects", | ||
"description": "Authorization objects", | ||
"type": "array", | ||
"items": { | ||
"title": "Authorization Objects Details", | ||
"description": "Authorization Objects Details", | ||
"type": "object", | ||
"properties": { | ||
"object": { | ||
"title": "Object", | ||
"description": "Name of Authorization Object", | ||
"type": "string", | ||
"maxLength": 10 | ||
}, | ||
"ttext": { | ||
"title": "Object Description", | ||
"description": "Authorization Object Description", | ||
"type": "string", | ||
"maxLength": 60 | ||
}, | ||
"okflag": { | ||
"title": "Maintenance Status", | ||
"description": "Maintenance Status", | ||
"type": "string", | ||
"enum": [ | ||
"noAuthorizationCheck", | ||
"authorizationCheckTakesPlace", | ||
"undefined", | ||
"authorizationCheckTakesPlace;DefaultValuesInUsobt", | ||
"undefined", | ||
"authorizationCheckTakesPlace,NoDefaultValues", | ||
"inactiveAuthorizationDefault" | ||
], | ||
"enumDescriptions": [ | ||
"No authorization check", | ||
"Authorization check takes place", | ||
"Undefined", | ||
"Authorization check takes place; default values in USOBT", | ||
"Undefined", | ||
"Authorization check takes place, no default values", | ||
"Inactive Authorization Default" | ||
] | ||
}, | ||
"fields": { | ||
"title": "Fields", | ||
"description": "Authorization Fields.", | ||
"type": "array", | ||
"items": { | ||
"title": "Authorization Field Details", | ||
"description": "Authorization Field Details", | ||
"type": "object", | ||
"properties": { | ||
"field": { | ||
"title": "Field", | ||
"description": "Name of Authorization Field", | ||
"type": "string", | ||
"maxLength": 10 | ||
}, | ||
"values": { | ||
"title": "Values", | ||
"description": "Name of Authorization Field Value", | ||
"type": "array", | ||
"items": { | ||
"title": "Default Authorization Values", | ||
"description": "Default Authorization Values", | ||
"type": "object", | ||
"properties": { | ||
"low": { | ||
"title": "From", | ||
"description": "From Value", | ||
"type": "string", | ||
"maxLength": 40 | ||
}, | ||
"high": { | ||
"title": "To", | ||
"description": "To Values", | ||
"type": "string", | ||
"maxLength": 40 | ||
} | ||
}, | ||
"additionalProperties": false | ||
} | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"field" | ||
] | ||
} | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"object" | ||
] | ||
} | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"formatVersion", | ||
"header", | ||
"general" | ||
] | ||
} |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
interface zif_aff_sush_v1 | ||
public . | ||
Check failure on line 2 in file-formats/sush/sush/type/zif_aff_sush_v1.intf.abap
|
||
types: | ||
"! <p class="shorttext">General</p> | ||
"! General | ||
"! $required | ||
begin of ty_general, | ||
"! <p class="shorttext">Application Name</p> | ||
"! Application Name of Authorization Default Value. | ||
"! $required | ||
name type usobx-name, | ||
"! <p class="shorttext">Type</p> | ||
"! Type of Authorization Default Value. | ||
"! $required | ||
type type usobx-type, | ||
"! <p class="shorttext">Maintenance Mode</p> | ||
"! Maintenance Mode. | ||
"! $required | ||
okflag type usob_status_flag, | ||
end of ty_general . | ||
|
||
types: | ||
"! <p class="shorttext">Default Authorization Values</p> | ||
"! Default Authorization Values | ||
begin of ty_value, | ||
"! <p class="shorttext">From</p> | ||
"! From Value | ||
"! $showAlways | ||
low type usobt-low, | ||
"! <p class="shorttext">To</p> | ||
"! To Values | ||
"! $showAlways | ||
high type usobt-high, | ||
end of ty_value . | ||
|
||
types: | ||
"! <p class="shorttext">Authorization Fields</p> | ||
"! Authorization Fields | ||
ty_values type standard table of ty_value with default key. | ||
|
||
types: | ||
"! <p class="shorttext">Authorization Field Details</p> | ||
"! Authorization Field Details | ||
begin of ty_fldtablestruc, | ||
"! <p class="shorttext">Field</p> | ||
"! Name of Authorization Field | ||
"! $required | ||
field type usobt-field, | ||
"! <p class="shorttext">Values</p> | ||
"! Name of Authorization Field Value | ||
values type ty_values, | ||
end of ty_fldtablestruc . | ||
|
||
types: | ||
"! <p class="shorttext">Authorization Fields</p> | ||
"! Authorization Fields | ||
ty_authorization_fields type standard table of ty_fldtablestruc with default key. | ||
|
||
types: | ||
"! <p class="shorttext">Authorization Objects Details</p> | ||
"! Authorization Objects Details | ||
begin of ty_objtablestruc, | ||
"! <p class="shorttext">Object</p> | ||
"! Name of Authorization Object | ||
"! $required | ||
object type usobx-object, | ||
"! <p class="shorttext">Object Description</p> | ||
"! Authorization Object Description | ||
"! $showAlways | ||
ttext type tobjt-ttext, | ||
"! <p class="shorttext">Maintenance Status</p> | ||
"! Maintenance Status | ||
"! $showAlways | ||
okflag type usobx-okflag, | ||
"! <p class="shorttext">Fields</p> | ||
"! Authorization Fields. | ||
"! $showAlways | ||
fields type ty_authorization_fields, | ||
|
||
end of ty_objtablestruc . | ||
|
||
types: | ||
"! <p class="shorttext">Authorization Objects</p> | ||
"! Authorization Objects | ||
ty_authorization_objects type standard table of ty_objtablestruc with default key. | ||
|
||
types: | ||
"! <p class="shorttext">SUSH Object Type</p> | ||
"! Object type SUSH | ||
begin of ty_main, | ||
"! $required | ||
format_version type zif_aff_types_v1=>ty_format_version, | ||
"! <p class="shorttext">Header</p> | ||
"! Header | ||
"! $required | ||
header type zif_aff_types_v1=>ty_header_60_src, | ||
"! <p class="shorttext">General</p> | ||
"! General | ||
"! $required | ||
general type ty_general, | ||
"! <p class="shorttext">Authorization objects</p> | ||
"! Authorization objects | ||
authorization_objects type ty_authorization_objects, | ||
end of ty_main . | ||
|
||
endinterface. | ||
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"formatVersion": "1", | ||
"header": { | ||
"description": "Authentication Default Values AFF", | ||
"originalLanguage": "en" | ||
} | ||
} |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Transaction File Format | ||
|
||
## Object Type Information | ||
|
||
Object Type | Description | Group | ||
:--- | :--- | :--- | ||
TRAN | Transaction | Others | ||
|
||
## File Structure | ||
|
||
File | Cardinality | Definition | Schema | Example | ||
:--- | :--- | :--- | :--- | :--- | ||
`<name>.tran.json` | 1 | [`zif_aff_tran_v1.intf.abap`](./type/zif_aff_tran_v1.intf.abap) | [`tran-v1.json`](./tran-v1.json) | [`se93_test_par.tran.json.tran.json`](./examples/se93_test_par.tran.json.tran.json) | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.