You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having an issues with 2.7.0 version.
In my cds, I have a function like this:
function getBusinessModelMetadata() returns String;
In 2.6.2 version, this will create an interface:
export enum FuncGetBusinessModelMetadata {
name = "getBusinessModelMetadata"
}
But, in 2.7.0, it will return:
export enum FuncGetBusinessModelMetadata {
name = "GetBusinessModelMetadata"
}
The first letter is uppercase, which mess up the cds routing handler.
The text was updated successfully, but these errors were encountered:
I'm having an issues with 2.7.0 version.
In my cds, I have a function like this:
function getBusinessModelMetadata() returns String;
In 2.6.2 version, this will create an interface:
export enum FuncGetBusinessModelMetadata {
name = "getBusinessModelMetadata"
}
But, in 2.7.0, it will return:
export enum FuncGetBusinessModelMetadata {
name = "GetBusinessModelMetadata"
}
The first letter is uppercase, which mess up the cds routing handler.
The text was updated successfully, but these errors were encountered: