Skip to content

Commit

Permalink
[AIFR] - Adding field aifRecipient to AFF for AIFR
Browse files Browse the repository at this point in the history
  • Loading branch information
D047539 committed Nov 15, 2024
1 parent be2717f commit 424bccc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions file-formats/aifr/aifr-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"type": "string",
"maxLength": 15
},
"aifRecipientName": {
"aifRecipient": {
"title": "AIF Recipient",
"description": "SAP Application Interface recipient",
"type": "string",
Expand All @@ -75,7 +75,7 @@
"additionalProperties": false,
"required": [
"namespace",
"aifRecipientName"
"aifRecipient"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion file-formats/aifr/examples/z_aff_example_aifr.aifr.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
},
"generalInformation":{
"namespace": "AIFNS",
"aifRecipientName": "REC_WS_INB"
"aifRecipient": "REC_WS_INB"
}
}
4 changes: 2 additions & 2 deletions file-formats/aifr/type/zif_aff_aifr_v1.intf.abap
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ INTERFACE zif_aff_aifr_v1
"! <p class="shorttext">Namespace</p>
"! Namespace of the recipient
"! $required
namespace TYPE c LENGTH 15,
namespace TYPE c LENGTH 15,
"! <p class="shorttext">AIF Recipient</p>
"! SAP Application Interface recipient
"! $required
aif_recipient_name TYPE c LENGTH 25, "/AIF/RECIPIENT_NAME
aif_recipient TYPE c LENGTH 25, "/AIF/RECIPIENT_NAME

Check failure on line 14 in file-formats/aifr/type/zif_aff_aifr_v1.intf.abap

View check run for this annotation

abaplint / abaplint

Do not use end of line comments - move comment to previous row instead

https://rules.abaplint.org/check_comments
END OF ty_general_information,

"! <p class="shorttext">Recipient</p>
Expand Down

0 comments on commit 424bccc

Please sign in to comment.