Application Development 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: 

Operational reporting API

Hema110190
Discoverer
0 Kudos
232
  • SAP Managed Tags:

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

1 ACCEPTED SOLUTION

yoswisnu
Advisor
Advisor
0 Kudos
201
  • 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

yoswisnu
Advisor
Advisor
0 Kudos
202
  • 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.

0 Kudos
201
  • SAP Managed Tags:

Thank you for the response.