- 
                Notifications
    
You must be signed in to change notification settings  - Fork 72
 
[SUCO] Add new object type SUCO #662
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
          
     Merged
      
      
    
  
     Merged
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            13 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      d320bd2
              
                Add files for SUCO
              
              
                WDFdaniel 5ba78f6
              
                React to abaplint
              
              
                WDFdaniel c48263e
              
                React to comparison between generated and provided
              
              
                WDFdaniel 4369890
              
                React to comparison between generated and provided - new
              
              
                WDFdaniel 499f4f5
              
                Removal of superfluous field for description
              
              
                WDFdaniel 1930a56
              
                React on Reviewers' Comments
              
              
                WDFdaniel 5fee00e
              
                Merge branch 'main' into feature/suco
              
              
                WDFdaniel ec217eb
              
                React to reviewers' feedback
              
              
                WDFdaniel cb22ad4
              
                Merge branch 'main' into feature/suco
              
              
                WDFdaniel e7c12a9
              
                React to reviewers' comment
              
              
                WDFdaniel 513303f
              
                Add `zif_aff_types_v1=>ty_header_80_cloud`
              
              
                schneidermic0 62cb3d1
              
                Merge branch 'main' into feature/suco
              
              
                wurzka b0a1130
              
                Switch to ty_header_80_cloud
              
              
                WDFdaniel 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 @@ | ||
| # SUCO File Format | ||
| 
     | 
||
| File | Cardinality | Definition | Schema | Example | ||
| :--- | :--- | :--- | :--- | :--- | ||
| `<name>.suco.json` | 1 | [`zif_aff_suco_v1.intf.abap`](./type/zif_aff_suco_v1.intf.abap) | [`suco-v1.json`](./suco-v1.json) | [`z_aff_example_suco.suco.json`](./examples/z_aff_example_suco.suco.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,11 @@ | ||
| { | ||
| "formatVersion": "1", | ||
| "header": { | ||
| "description": "", | ||
| "originalLanguage": "en" | ||
| }, | ||
| "leadingApplication": { | ||
| "objectType": "TRAN", | ||
| "objectName": "SACF" | ||
| } | ||
| } | 
  
    
      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 @@ | ||
| { | ||
| "$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/suco/suco-v1.json", | ||
| "title": "Object Type SUCO (Authorization Default Variant)", | ||
| "description": "Object type SUCO (authorization default variant)", | ||
| "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": 80 | ||
| }, | ||
| "originalLanguage": { | ||
| "title": "Original Language", | ||
| "description": "Original language of the ABAP object", | ||
| "type": "string", | ||
| "minLength": 2 | ||
| }, | ||
| "abapLanguageVersion": { | ||
| "title": "ABAP Language Version", | ||
| "description": "ABAP language version", | ||
| "type": "string", | ||
| "enum": [ | ||
| "standard", | ||
| "cloudDevelopment" | ||
| ], | ||
| "enumTitles": [ | ||
| "Standard", | ||
| "ABAP Cloud Development" | ||
| ], | ||
| "enumDescriptions": [ | ||
| "Standard", | ||
| "ABAP cloud development" | ||
| ], | ||
| "default": "standard" | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "required": [ | ||
| "description", | ||
| "originalLanguage" | ||
| ] | ||
| }, | ||
| "leadingApplication": { | ||
| "title": "Leading Application", | ||
| "description": "Leading application", | ||
| "type": "object", | ||
| "properties": { | ||
| "programId": { | ||
| "title": "Program ID", | ||
| "description": "Program ID", | ||
| "type": "string", | ||
| "maxLength": 4, | ||
| "default": "R3TR" | ||
| }, | ||
| "objectType": { | ||
| "title": "Object Type", | ||
| "description": "Object type", | ||
| "type": "string", | ||
| "maxLength": 4 | ||
| }, | ||
| "objectName": { | ||
| "title": "Object Name", | ||
| "description": "Object name", | ||
| "type": "string", | ||
| "maxLength": 40 | ||
| }, | ||
| "serviceType": { | ||
| "title": "Service Type", | ||
| "description": "Service type", | ||
| "type": "string", | ||
| "maxLength": 16 | ||
| }, | ||
| "serviceName": { | ||
| "title": "Service Name", | ||
| "description": "Service name", | ||
| "type": "string" | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "required": [ | ||
| "objectType", | ||
| "objectName" | ||
| ] | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "required": [ | ||
| "formatVersion", | ||
| "header", | ||
| "leadingApplication" | ||
| ] | ||
| } | 
  
    
      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,44 @@ | ||
| "! AFF Type for SUCO (Authorization Default Variant) | ||
| INTERFACE zif_aff_suco_v1 | ||
| PUBLIC. | ||
| 
     | 
||
| TYPES: | ||
| "! <p class="shorttext">Leading Application</p> | ||
| "! Leading application | ||
| BEGIN OF ty_leading_application, | ||
| "! <p class="shorttext">Program ID</p> | ||
| "! Program ID | ||
| "! $default 'R3TR' | ||
| program_id TYPE c LENGTH 4, | ||
| "! <p class="shorttext">Object Type</p> | ||
| "! Object type | ||
| "! $required | ||
| object_type TYPE c LENGTH 4, | ||
| "! <p class="shorttext">Object Name</p> | ||
| "! Object name | ||
| "! $required | ||
| object_name TYPE c LENGTH 40, | ||
| "! <p class="shorttext">Service Type</p> | ||
| "! Service type | ||
| service_type TYPE c LENGTH 16, | ||
| "! <p class="shorttext">Service Name</p> | ||
| "! Service name | ||
| service_name TYPE string, | ||
| END OF ty_leading_application. | ||
| 
     | 
||
| TYPES: | ||
| "! <p class="shorttext">Object Type SUCO (Authorization Default Variant)</p> | ||
| "! Object type SUCO (authorization default variant) | ||
| 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_80_cloud, | ||
| "! <p class="shorttext">Leading Application</p> | ||
| "! Leading application | ||
| "! $required | ||
| leading_application TYPE ty_leading_application, | ||
| 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": "AFF type for SUCO (Authorization Default Variant)", | ||
| "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
    
  
  
    
              
      
      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.