I need to read text stored for invoice, order, etc. In ABAP we can use READ_TEXT function module, but I need to read it within a CDS view. Is there a way to read text from database tables directly in a SELECT statement?
I need to read text stored for invoice, order, etc. In ABAP we can use READ_TEXT function module, but I need to read it within a CDS view. Is there a way to read text from database tables directly in a SELECT statement?
Something that I have done on an ABAP 7.50 system (EHP8) when using CDS for my OData service is just create a separate OData service that is a generic 'Standard Text' reader. Thisis a plain ABAP-based OData service modelled in SEGW.
Then whenever I want to display standard text in my app I make a call to this service. Works well. Seems that in S4 you can do this all in CDS.