on 2024 Apr 05 7:03 PM
Hi friends
I would be thankful if you can provide me the ABAP DDIC names of the following Cloud CDS views:
I_MfgOrderItemSerialNumber
I_ManufacturingOrder
I_MfgOrderWithStatus
I_SerialNumberManufacturingOrd
Many thank!
Tom
Request clarification before answering.
Hi Tom,
as already mentioned by Sandra, you can do that yourself.
I still quickly did it for you:
I_MfgOrderItemSerialNumber -> IPPMFGORDITMSERN
I_ManufacturingOrder -> IMFGORDER
I_MfgOrderWithStatus -> IMFGORDERWSTTS
I_SerialNumberManufacturingOrd -> this is not a CDS view but an entity view?
Best,
Edrilan Berisha
SAP S/4HANA Cloud Financials Development
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Tom1-2-3I don't understand what you don't understand. You are trying to use IPPMFGORDITMSERN which is the "CDS-managed DDIC View" of the CDS view I_MfgOrderItemSerialNumber (defined in the annotation @AbapCatalog.sqlViewName). I doubt that a standard application (B/4HANA in your case) permits using CDS-managed DDIC views, instead you should refer to the CDS view (and better use the CDS view entity if it exists).
ABAP CDS - CDS-managed DDIC Views:
The CDS-managed DDIC view should not, however, be used in ABAP. It can be used wherever DDIC database tables or DDIC database views can also be specified using its name CDS_DB_VIEW, such as after the TYPE addition, in ABAP SQL read statements and also in Native SQL, AMDP, or after the TABLES statement. But this is not recommended. More particularly, the use of the CDS-managed DDIC view in ABAP SQL read statements is obsolete and forbidden in strict mode from ABAP release 7.50.
(CDS_DB_VIEW is taken from the obsolete language syntax "SELECT ... FROM cds_db_view ...")
| User | Count |
|---|---|
| 27 | |
| 20 | |
| 20 | |
| 7 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.