- 
                Notifications
    You must be signed in to change notification settings 
- Fork 72
Add structured values for ATC check variants (CHKV) #721
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
      
      
            bjoern-jueliger-sap
  wants to merge
  5
  commits into
  SAP:main
  
    
      
        
          
  
    
      Choose a base branch
      
     
    
      
        
      
      
        
          
          
        
        
          
            
              
              
              
  
           
        
        
          
            
              
              
           
        
       
     
  
        
          
            
          
            
          
        
       
    
      
from
bjoern-jueliger-sap:chkv-structured-values
  
      
      
   
  
    
  
  
  
 
  
      
    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 all commits
      Commits
    
    
            Show all changes
          
          
            5 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      7dd7653
              
                Add structured values
              
              
                bjoern-jueliger-sap 6698e37
              
                Remove unnecessary added space
              
              
                bjoern-jueliger-sap d44a83c
              
                Remove more unnecessary spaces
              
              
                bjoern-jueliger-sap 0cb835e
              
                abaplint: Capitalization & 7.02 compliant syntax
              
              
                bjoern-jueliger-sap 51e1b77
              
                abaplint: Type clause alignment
              
              
                bjoern-jueliger-sap 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
    
  
  
    
              
  
    
      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 | ||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|  | @@ -27,23 +27,47 @@ INTERFACE zif_aff_chkv_v1 | |||||||||||||||||||||||||
| "! <p class="shorttext">Entry in Value List</p> | ||||||||||||||||||||||||||
| "! A parameter value in the parameter value list | ||||||||||||||||||||||||||
| ty_param_value TYPE string, | ||||||||||||||||||||||||||
| "! <p class="shorttext">Component</p> | ||||||||||||||||||||||||||
| "! Component of a structure as a key-value pair | ||||||||||||||||||||||||||
| BEGIN OF ty_structured_value_comp, | ||||||||||||||||||||||||||
| "! <p class="shorttext">Component Name</p> | ||||||||||||||||||||||||||
| "! Name of a component of a structure | ||||||||||||||||||||||||||
| "! $required | ||||||||||||||||||||||||||
| field TYPE string, | ||||||||||||||||||||||||||
| "! <p class="shorttext">Component Value</p> | ||||||||||||||||||||||||||
| "! Value of a component of a structure | ||||||||||||||||||||||||||
| "! $required | ||||||||||||||||||||||||||
| value TYPE string, | ||||||||||||||||||||||||||
| END OF ty_structured_value_comp, | ||||||||||||||||||||||||||
| "! <p class="shorttext">Structure</p> | ||||||||||||||||||||||||||
| "! A structured value as a list of key-value pairs | ||||||||||||||||||||||||||
| ty_structured_value TYPE SORTED TABLE OF ty_structured_value_comp WITH UNIQUE KEY field, | ||||||||||||||||||||||||||
| "! <p class="shorttext">Structure List</p> | ||||||||||||||||||||||||||
| "! A list of structured values | ||||||||||||||||||||||||||
| ty_structured_value_list TYPE STANDARD TABLE OF ty_structured_value WITH DEFAULT KEY, | ||||||||||||||||||||||||||
|  | ||||||||||||||||||||||||||
| "! <p class="shorttext">Parameter</p> | ||||||||||||||||||||||||||
| "! Parameter of ATC check | ||||||||||||||||||||||||||
| BEGIN OF ty_parameter, | ||||||||||||||||||||||||||
| "! <p class="shorttext">Parameter Name</p> | ||||||||||||||||||||||||||
| "! The parameter name | ||||||||||||||||||||||||||
| "! $required | ||||||||||||||||||||||||||
| name TYPE string, | ||||||||||||||||||||||||||
| name TYPE string, | ||||||||||||||||||||||||||
| "! <p class="shorttext">Parameter Value</p> | ||||||||||||||||||||||||||
| "! The value of the parameter | ||||||||||||||||||||||||||
| value TYPE string, | ||||||||||||||||||||||||||
| value TYPE string, | ||||||||||||||||||||||||||
| "! <p class="shorttext">Parameter Structure</p> | ||||||||||||||||||||||||||
| "! A structured value of a parameter | ||||||||||||||||||||||||||
| structured_value TYPE ty_structured_value, | ||||||||||||||||||||||||||
| "! <p class="shorttext">Parameter Structure List</p> | ||||||||||||||||||||||||||
| "! A list of structured values of a parameter | ||||||||||||||||||||||||||
| structured_value_list TYPE ty_structured_value_list, | ||||||||||||||||||||||||||
| 
      Comment on lines
    
      +59
     to 
      +64
    
   There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, but I'm struggling with making a better proposals. But maybe syncing it with  
        Suggested change
       
 | ||||||||||||||||||||||||||
| "! <p class="shorttext">List of Parameter Values</p> | ||||||||||||||||||||||||||
| "! List of values for a multi-value check parameter | ||||||||||||||||||||||||||
| value_list TYPE STANDARD TABLE OF ty_param_value WITH DEFAULT KEY, | ||||||||||||||||||||||||||
| value_list TYPE STANDARD TABLE OF ty_param_value WITH DEFAULT KEY, | ||||||||||||||||||||||||||
| "! <p class="shorttext">List of Range Values</p> | ||||||||||||||||||||||||||
| "! List of range values for a check parameter | ||||||||||||||||||||||||||
| value_range_list TYPE ty_ranges, | ||||||||||||||||||||||||||
| value_range_list TYPE ty_ranges, | ||||||||||||||||||||||||||
| END OF ty_parameter, | ||||||||||||||||||||||||||
|  | ||||||||||||||||||||||||||
| "! <p class="shorttext">Parameters</p> | ||||||||||||||||||||||||||
|  | ||||||||||||||||||||||||||
      
      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.
  
    
  
    
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We usually recommend having the title (
<p class="shorttext">...</p>) and the name of the component in sync or at least almost in sync (likevalueandComponent Value). Forfieldthis is not the case. What do you think about renaming it toor
Better proposals are welcome ;)