I'm creating a view in a ArcGIS Pro 3.0.3 mobile geodatabase.
I've entered the view name. Now, I'll paste SQL into the View Definition (using CTRL+V, since right-click >> paste is greyed out).
Problem: When I run the GP tool, the name that I entered previously gets cleared.
That's not the desired behavior.


WITH RECURSIVE cte AS (
SELECT 2023 AS year_
UNION ALL
SELECT year_ + 1
FROM cte
WHERE year_ < 2023 + (10) -1
)
SELECT row_number() over (ORDER BY cte.year_, amount) as OBJECTID, cte.year_, p.amount
FROM cte
LEFT JOIN Projects_MobileGDB p
ON cte.year_ = p.year_
Could that issue be fixed?