Application Development and Automation Blog Posts
Learn and share on deeper, cross technology development topics such as integration and connectivity, automation, cloud extensibility, developing at scale, and security.
cancel
Showing results for 
Search instead for 
Did you mean: 
joachimrees1
Active Contributor
564
If you "liked" my problem with ABAP restrictions - 72 characters  ( manfred.klein3 😉 )  you'll "love" this:

I think you can break most statements down do multiple lines, so that each line has less' than 72 character, like so:
"select * from mara into @l_mara where matnr = @p_matnr.

select * from mara
into @l_mara
where matnr = @p_matnr.

But there's - at least - one, where you cannot do that: ENHANCEMENT-POINT (and I guess it's true for ENHANCEMENT-SECTION as well).

Like in:
ENHANCEMENT-POINT zz_my_point_quite_long1 SPOTS zz_ENHANCEMENT_SPOT_MAXXED_OUT.

...count the characters.... (it's > 72 ! )

Sarcasm: So better stick with something short, like:
ENHANCEMENT-POINT z_V45 SPOTS z_V50.

best
Joachim
1 Comment
Labels in this area