Conversation
|
I've discussed the problem with |
|
Checked once again in a call with Elena:
Now both read and write for Genres are working fine |
|
Testing
SQL:
SELECT T1."BOOK_ID" as "@cds4j:fk:book_ID",
T1."ID",
T1."NAME",
T1."PAGE",
T1."PARENT_ID",
T1."BOOK_ID",
TRUE as "IsActiveEntity",
FALSE as "HasActiveEntity",
T1."HASDRAFTENTITY",
T1."DRAFTADMINISTRATIVEDATA_DRAFTUUID",
T1."LIMITEDDESCENDANTCOUNT",
T1."DISTANCEFROMROOT",
T1."DRILLSTATE",
T1."LIMITEDRANK"
FROM "ADMINSERVICE_BOOKS" T0
INNER JOIN (
SELECT ACTIVE.*,
COALESCE(DRAFT.HasActiveEntity, false) as HasDraftEntity,
DRAFT.DraftAdministrativeData_DraftUUID as DraftAdministrativeData_DraftUUID
from "ADMINSERVICE_CONTENTSHIERARCHY" ACTIVE
left outer join "ADMINSERVICE_CONTENTSHIERARCHY_DRAFTS" DRAFT on ACTIVE."ID" = DRAFT."ID"
) T1 ON (T1."BOOK_ID" = T0."ID")
and (T0."ID" = ?)results in
|
|
There is still an issue in 4.8.1 with the error: |
| }; | ||
|
|
||
| annotate AdminService.GenreHierarchy with @Hierarchy.RecursiveHierarchyActions #GenreHierarchy: { | ||
| annotate AdminService.GenreHierarchy with @Hierarchy.RecursiveHierarchyActions #GenreHierarchyHierarchy: { |
There was a problem hiding this comment.
I think we should avoid the duplicate HierarchyHierarchy
| $Type : 'UI.PresentationVariantType', | ||
| Visualizations : ['@UI.LineItem'], | ||
| RecursiveHierarchyQualifier: 'GenreHierarchy' | ||
| RecursiveHierarchyQualifier: 'GenreHierarchyHierarchy' |
There was a problem hiding this comment.
I think we should avoid the duplicate HierarchyHierarchy
| "@com.sap.vocabularies.UI.v1.LineItem": { | ||
| "tableSettings": { | ||
| "hierarchyQualifier": "GenreHierarchy", | ||
| "hierarchyQualifier": "GenreHierarchyHierarchy", |
There was a problem hiding this comment.
I think we should avoid the duplicate HierarchyHierarchy
No description provided.