cancel
Showing results for 
Search instead for 
Did you mean: 

Web IDE for HANA does not prompt for the OData support when create Java module in XSA MTA App.

sudhiranjan_lenka
Contributor
0 Kudos

Hello Expert,

I am working on a POC to create MTA project on HANA XSA.

I created one CDS artifact with OData annotation as mentioned below. Then I tried to create one java module but it doesn't show me the option to select for OData support. Please help.

  1. Version of Web IDE for HANA is HANA 2 SPS 03 Patch 7 ( Build 4.3.33 )
  2. HANA DB Version is HANA 2.0 SPS02
namespace MyFirstXSA_SL.DB;
@OData.publish : true
context FirstCDS {
entity employee {
    key empid: String(100);
    name: String(100);
  };
};

Thanks,

Sudhir

Accepted Solutions (1)

Accepted Solutions (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

This particular CDS based OData Java framework was recently deprecated in favor of the newer Application Programming Model based approach. The wizards were removed to keep people from creating new applications that use an obsolete approach.

sudhiranjan_lenka
Contributor
0 Kudos

Thank you so much Thomas for the quick response.

Could you please help me with any reference to create OData through Java module in HANA XSA?

Thanks,

Sudhir.

Answers (1)

Answers (1)

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

The recommendation moving forward is to use the new Application Programming Model:

https://blogs.sap.com/2018/06/05/introducing-the-new-application-programming-model-for-sap-cloud-pla...

sudhiranjan_lenka
Contributor
0 Kudos

Thank you!!