-
Notifications
You must be signed in to change notification settings - Fork 64
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
[EDOT] Add new object EDOT #682
base: main
Are you sure you want to change the base?
Changes from 1 commit
a8ec8b7
499d83a
e1e96b2
ecdefa0
3a2e9b9
a1ec907
6ed5d4c
4c96d92
a7025f3
bdd762a
8848e73
1c07f07
777533b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,90 +1,84 @@ | ||||||
"! <p class="shorttext synchronized" lang="en">Create eDocument Types</p> | ||||||
"! eDocument types that can be used in eInvoice Process | ||||||
"! <p class="shorttext synchronized" lang="en">eDocument Type</p> | ||||||
"! eDocument types that can be used in eInvoice process | ||||||
INTERFACE zif_aff_edot_v1 PUBLIC. | ||||||
|
||||||
"! <p class="shorttext">eDocument Type</p> | ||||||
"! Specify eDocument types | ||||||
TYPES ty_edoc_type TYPE c LENGTH 10. | ||||||
|
||||||
"! <p class="shorttext">Description</p> | ||||||
"! Description | ||||||
TYPES ty_short_description TYPE c LENGTH 30. | ||||||
TYPES: | ||||||
"! <p class="shorttext">SRAL Configuration Type</p> | ||||||
"! eDocument SRAL Configuration type | ||||||
"! SRAL configuration type | ||||||
BEGIN OF ty_sral_configuration, | ||||||
GuilhermeSaraiva96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
"! <p class="shorttext">File Type</p> | ||||||
"! File Type | ||||||
"! File type | ||||||
"! $required | ||||||
file_type TYPE c LENGTH 10, | ||||||
file_type TYPE c LENGTH 10, | ||||||
"! <p class="shorttext">File Structure Type</p> | ||||||
"! File Structure type | ||||||
"! File structure type | ||||||
"! $required | ||||||
file_structure_type TYPE c LENGTH 30, | ||||||
file_structure TYPE c LENGTH 30, | ||||||
"! <p class="shorttext">File Description</p> | ||||||
"! File Description type | ||||||
file_description_type TYPE c LENGTH 60, | ||||||
"! File description | ||||||
file_description TYPE c LENGTH 60, | ||||||
"! <p class="shorttext">File Cloud Relevancy</p> | ||||||
"! File Cloud Relevancy type | ||||||
not_cloud_relevant_type TYPE abap_bool, | ||||||
"! File cloud relevancy type | ||||||
is_cloud_relevant TYPE abap_bool, | ||||||
GuilhermeSaraiva96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
END OF ty_sral_configuration. | ||||||
"! <p class="shorttext">SRAL Configuration Types</p> | ||||||
"! SRAL Configuration types | ||||||
"! <p class="shorttext">SRAL Configuration</p> | ||||||
"! SRAL configuration | ||||||
TYPES ty_sral_configurations TYPE SORTED TABLE OF ty_sral_configuration WITH UNIQUE KEY file_type. | ||||||
|
||||||
TYPES: | ||||||
"! <p class="shorttext">eDocument Type Specific Additional Table Type</p> | ||||||
"! eDocument Type Specific Additional Table type | ||||||
"! <p class="shorttext">eDocument Type Specific Additional Tables</p> | ||||||
"! eDocument type specific additional tables | ||||||
BEGIN OF ty_additional_table, | ||||||
"! <p class="shorttext">Sequence Number Type</p> | ||||||
GuilhermeSaraiva96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
"! Sequence Number | ||||||
"! <p class="shorttext">Sequence Number</p> | ||||||
"! Sequence number | ||||||
"! $required | ||||||
sequence_number_type TYPE c LENGTH 10, | ||||||
sequence_number TYPE c LENGTH 10, | ||||||
"! <p class="shorttext">Table Name</p> | ||||||
"! Table name | ||||||
"! $required | ||||||
table_name TYPE zif_aff_types_v1=>ty_object_name_30, | ||||||
table_name TYPE zif_aff_types_v1=>ty_object_name_30, | ||||||
END OF ty_additional_table. | ||||||
"! <p class="shorttext">eDocument Type Specific Additional Table Types</p> | ||||||
"! eDocument Type Specific Additional Table types | ||||||
TYPES ty_additional_tables TYPE SORTED TABLE OF ty_additional_table WITH UNIQUE KEY sequence_number_type. | ||||||
"! <p class="shorttext">eDocument Type Specific Additional Tables</p> | ||||||
"! eDocument type specific additional tables | ||||||
TYPES ty_additional_tables TYPE SORTED TABLE OF ty_additional_table WITH UNIQUE KEY sequence_number. | ||||||
|
||||||
TYPES: | ||||||
"! <p class="shorttext">General Information</p> | ||||||
"! eDocument Type | ||||||
"! General information | ||||||
BEGIN OF ty_edoc_information, | ||||||
"! <p class="shorttext">eDocument Type</p> | ||||||
"! eDoc Type | ||||||
"! $required | ||||||
edocument_type TYPE ty_edoc_type, | ||||||
"! <p class="shorttext">Description</p> | ||||||
"! eDocument Type Description | ||||||
"! $required | ||||||
edoc_type_desc TYPE ty_short_description, | ||||||
"! <p class="shorttext">eDocument Local Table Name</p> | ||||||
"! eDocument local table name | ||||||
table_name TYPE zif_aff_types_v1=>ty_object_name_30, | ||||||
"! <p class="shorttext">Created in Contingency Mode</p> | ||||||
"! Contingency | ||||||
"! Created in contingency mode | ||||||
contingency TYPE abap_bool, | ||||||
"! <p class="shorttext">eDocument Type Created Using Contingency</p> | ||||||
GuilhermeSaraiva96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
"! Contingency Type | ||||||
"! eDocument type created using contingency | ||||||
contingency_type TYPE c LENGTH 10, | ||||||
GuilhermeSaraiva96 marked this conversation as resolved.
Show resolved
Hide resolved
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.
Suggested change
same for the shortest |
||||||
"! <p class="shorttext">Table Name</p> | ||||||
"! Table name | ||||||
table_name TYPE zif_aff_types_v1=>ty_object_name_30, | ||||||
"! <p class="shorttext">Preprocess Before Archiving</p> | ||||||
"! Archive Prep Req Type | ||||||
"! $required | ||||||
archive_prep_req_type TYPE abap_bool, | ||||||
"! Preprocess before archiving | ||||||
archive_prep_req TYPE abap_bool, | ||||||
"! <p class="shorttext">Additional Selection Fields</p> | ||||||
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.
Suggested change
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. corrected |
||||||
"! Additional selection fields of validation report | ||||||
edocument_sral_configuration TYPE ty_sral_configurations, | ||||||
"! <p class="shorttext">eDocument Type Specific Additional Tables</p> | ||||||
GuilhermeSaraiva96 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
"! eDocument Type Specific Additional Tables | ||||||
"! eDocument type specific additional tables | ||||||
edoc_spec_additional_table TYPE ty_additional_tables, | ||||||
END OF ty_edoc_information. | ||||||
TYPES: | ||||||
"! <p class="shorttext">Header</p> | ||||||
"! The header for an ABAP main object (without source code) with a description of 30 characters (no key user) | ||||||
BEGIN OF ty_header_30_cloud, | ||||||
"! $required | ||||||
description TYPE c LENGTH 30, | ||||||
"! $required | ||||||
original_language TYPE zif_aff_types_v1=>ty_original_language, | ||||||
abap_language_version TYPE zif_aff_types_v1=>ty_abap_language_version_cloud, | ||||||
END OF ty_header_30_cloud. | ||||||
|
||||||
TYPES: | ||||||
"! <p class="shorttext">eDocument Type</p> | ||||||
"! eDocument Type | ||||||
"! eDocument type | ||||||
BEGIN OF ty_main, | ||||||
"! <p class="shorttext">Format Version</p> | ||||||
"! Format version | ||||||
|
@@ -93,9 +87,9 @@ INTERFACE zif_aff_edot_v1 PUBLIC. | |||||
"! <p class="shorttext">Header</p> | ||||||
"! Header | ||||||
"! $required | ||||||
header TYPE zif_aff_types_v1=>ty_header_60, | ||||||
"! <p class="shorttext">eDocument Type</p> | ||||||
"! eDocument Type | ||||||
header TYPE ty_header_30_cloud, | ||||||
"! <p class="shorttext">General Information</p> | ||||||
"! General information | ||||||
"! $required | ||||||
general_information TYPE ty_edoc_information, | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"formatVersion": "1", | ||
"header": { | ||
"description": "Create eDocument Types", | ||
"description": "eDocument Type", | ||
"originalLanguage": "en" | ||
} | ||
} |
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.
This file should be deleted
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.
somehow i coudn't see this hidden file but anyhow i replaced whole folder
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.
The file is there again, which is strange as it is excluded in our
.gitignore
. Assuming you are on macOS, can you please try the steps described here on your feature branch? https://www.geeksforgeeks.org/how-to-remove-ds_store-files-from-git-repositories/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.
thank you for the link, I have deleted and push to git. please check now