Do you have any question about this error?
Message type: E = Error
Message class: ARS_DEP_CHECKS - Dependency and Basic Release Checks – Check Messages
Message number: 035
Message text: Line type &1 of table type &2 in &3 is not released.
Table type &V2& is part of a released API. For proper usability in
source code with a restricted ABAP language version, also its line type
must be released with same release contract and visibility.
Once the table type is used in source code with a restricted ABAP
language version, referring to its line type leads to a syntax error.
Make the line type available with the same release contract and
visibility as table type &V2&.
If the line type is an ABAP dictionary structure with pronounced reuse
character, it can make sense to release it as an API on its own.
But in most cases, preferred solution is replacement of the line type by
a self-contained TYPES declaration in API &V3&.
Minimum requirement for this is to wrap the unreleased line type &V1&:
<NP>TYPES wrapped_line_type TYPE &V1&.</>
<NP>TYPES </>&V2&<NP> TYPE ... TABLE OF wrapped_line_type ...</>
But preferably, usage of the ABAP dictionary is completely replaced by a
self-contained TYPES declaration like the following:
<NP>TYPES:</>
<NP> BEGIN OF self_contained_line_type<(>,<)></>
<NP> field_1 TYPE c LENGTH 10<(>,<)></>
<NP> ... TYPE some_data_element<(>,<)></>
<NP> field_n TYPE string<(>,<)></>
<NP> END OF self_contained_line_type.</>
<NP>TYPES </>&V2&<NP> TYPE ... TABLE OF self_contained_line_type ...</>
Keep in mind that this declaration must be equivalent to the replaced
ABAP dictionary structure regarding both the field names and their data
type.
The system issues an error message and will not allow you to continue with this transaction until the error is resolved.
Error message extract from SAP system. Copyright SAP SE.
ARS_DEP_CHECKS035
- Line type &1 of table type &2 in &3 is not released. ?Get instant SAP help. Start your 7-day free trial now.
ARS_DEP_CHECKS034
&1 &2 from software component &3 must not be visible for &4.
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
ARS_DEP_CHECKS033
&1 is not an allowed successor type for type &2.
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
ARS_DEP_CHECKS036
Line type of table type &1 should be defined in &2.
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
ARS_DEP_CHECKS037
Inconsistent release data for API key &1 &2 &3 &4.
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
Click on this link to search all SAP messages.