You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ABAP Cleaner version 1.12.0 with default configuration
SELECT
FROM c_respymgmtteamheadertp AS team_header
JOIN c_respymgmtteamownertp AS team_owner ON team_owner~respymgmtteamid = team_header~respymgmtteamid
FIELDS DISTINCT team_owner~respymgmtteamowneruserid
WHERE team_header~respymgmtteamnameforsearch = @team_name_for_search
AND team_owner~teamownerenddate >= @at_date
AND team_owner~teamownerstartdate <= @at_date
INTO TABLE @result.
Gets reformatted to
SELECT
FROM c_respymgmtteamheadertp AS team_header
JOIN c_respymgmtteamownertp
AS team_owner ON team_owner~respymgmtteamid = team_header~respymgmtteamid
FIELDS DISTINCT team_owner~respymgmtteamowneruserid
WHERE team_header~respymgmtteamnameforsearch = @team_name_for_search
AND team_owner~teamownerenddate >= @at_date
AND team_owner~teamownerstartdate <= @at_date
INTO TABLE @result.
Whereas if I add the optional INNER key word it works as expected
SELECT
FROM c_respymgmtteamheadertp AS team_header
INNER JOIN
c_respymgmtteamownertp AS team_owner ON team_owner~respymgmtteamid = team_header~respymgmtteamid
FIELDS DISTINCT team_owner~respymgmtteamowneruserid
WHERE team_header~respymgmtteamnameforsearch = @team_name_for_search
AND team_owner~teamownerenddate >= @at_date
AND team_owner~teamownerstartdate <= @at_date
INTO TABLE @result.
The text was updated successfully, but these errors were encountered:
ABAP Cleaner version 1.12.0 with default configuration
Gets reformatted to
Whereas if I add the optional INNER key word it works as expected
The text was updated successfully, but these errors were encountered: