Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Operational reporting API

Hema110190
Discoverer
0 Likes
783
  • SAP Managed Tags

How to combine different document type in a custom view creation in Operational reporting view management?

1 ACCEPTED SOLUTION
Read only

yoswisnu
Product and Topic Expert
Product and Topic Expert
0 Likes
752
  • SAP Managed Tags

Depending on the documentType, the join must be done on your own (after data is extracted, stored on your own DB).
Using parameter includePrimaryKeys = true and includeForeignKeys = true during metadata call should indicate whether the field is a PK or FK.

As of now, the list is incomplete though, only Analytical Reporting API has a complete PK/FK.
Usually UniqueName field of object is the PK.

2 REPLIES 2
Read only

yoswisnu
Product and Topic Expert
Product and Topic Expert
0 Likes
753
  • SAP Managed Tags

Depending on the documentType, the join must be done on your own (after data is extracted, stored on your own DB).
Using parameter includePrimaryKeys = true and includeForeignKeys = true during metadata call should indicate whether the field is a PK or FK.

As of now, the list is incomplete though, only Analytical Reporting API has a complete PK/FK.
Usually UniqueName field of object is the PK.

Read only

0 Likes
752
  • SAP Managed Tags

Thank you for the response.