Hi APEX Team,
I noticed that some shared components are exported without including their component comments in the generated export scripts even though the comments exist in the related metadata tables.
For example, when exporting a list such as the Navigation Bar, the generated script looks like this:
wwv_flow_imp_shared.create_list(
p_id=>wwv_flow_imp.id(92667778050575221786)
,p_name=>'Navigation Bar'
,p_list_status=>'PUBLIC'
,p_version_scn=>15660769246022
);
However, in the table WWV_FLOW_LISTS
, the column LIST_COMMENT
contains the component comment which is not included in the export.
It seems that some components such as LOVs have already been fixed to include comments in their export, but other shared components like Lists are still missing this.
Could the team please review and update the export generation logic so that all component comments are consistently included across all shared components?