Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
oData_v4_Filter_Issue
  • Loading branch information
Udineshsap13 committed Oct 17, 2022
1 parent 783f688 commit 3111b2c
Show file tree
Hide file tree
Showing 13 changed files with 813 additions and 2 deletions.
41 changes: 41 additions & 0 deletions app/ovpv4/README.md
@@ -0,0 +1,41 @@
## Application Details
| |
| ------------- |
|**Generation Date and Time**<br>Mon Oct 17 2022 10:44:23 GMT+0200 (Central European Summer Time)|
|**App Generator**<br>@sap/generator-fiori-elements|
|**App Generator Version**<br>1.7.5|
|**Generation Platform**<br>CLI|
|**Floorplan Used**<br>Overview Page V4|
|**Service Type**<br>Local Cap|
|**Service URL**<br>http://localhost:4004/reporting/
|**Module Name**<br>ovpv4|
|**Application Title**<br>OVP v4 Filter Issue|
|**Namespace**<br>v4.ovp|
|**UI5 Theme**<br>sap_horizon|
|**UI5 Version**<br>1.107.0|
|**Enable Code Assist Libraries**<br>False|
|**Enable TypeScript**<br>False|
|**Add Eslint configuration**<br>False|
|**FilterEntity Type**<br>MessageHeaderSet|

## ovpv4

OVP v4 Filter Issue

### Starting the generated app

- This app has been generated using the SAP Fiori tools - App Generator, as part of the SAP Fiori tools suite. In order to launch the generated app, simply start your CAP project and navigate to the following location in your browser:

http://localhost:4004/ovpv4/webapp/index.html

- It is also possible to run the application using mock data that reflects the OData Service URL supplied during application generation. In order to run the application with Mock Data, run the following from the generated app root folder:

```
npm run start-mock
```

#### Pre-requisites:

1. Active NodeJS LTS (Long Term Support) version and associated supported NPM version. (See https://nodejs.org)


1 change: 1 addition & 0 deletions app/ovpv4/annotations.cds
@@ -0,0 +1 @@
using ReportingService as service from '../../srv/reporting-service';
15 changes: 15 additions & 0 deletions app/ovpv4/package.json
@@ -0,0 +1,15 @@
{
"name": "ovpv4",
"version": "0.0.1",
"description": "OVP v4 Filter Issue",
"keywords": [
"ui5",
"openui5",
"sapui5"
],
"main": "webapp/index.html",
"scripts": {
"deploy-config": "npx -p @sap/ux-ui5-tooling fiori add deploy-config cf"
},
"devDependencies": { }
}
4 changes: 4 additions & 0 deletions app/ovpv4/ui5.yaml
@@ -0,0 +1,4 @@
specVersion: "2.5"
metadata:
name: v4.ovp.ovpv4
type: application
12 changes: 12 additions & 0 deletions app/ovpv4/webapp/Component.js
@@ -0,0 +1,12 @@
sap.ui.define(
["sap/ovp/app/Component"],
function (Component) {
"use strict";

return Component.extend("v4.ovp.ovpv4.Component", {
metadata: {
manifest: "json"
}
});
}
);
18 changes: 18 additions & 0 deletions app/ovpv4/webapp/annotations/annotation.xml
@@ -0,0 +1,18 @@
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
<edmx:Include Namespace="com.sap.vocabularies.Common.v1" Alias="Common"/>
</edmx:Reference>
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/UI.xml">
<edmx:Include Namespace="com.sap.vocabularies.UI.v1" Alias="UI"/>
</edmx:Reference>
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Communication.xml">
<edmx:Include Namespace="com.sap.vocabularies.Communication.v1" Alias="Communication"/>
</edmx:Reference>
<edmx:Reference Uri="/reporting/$metadata">
<edmx:Include Namespace="ReportingService"/>
</edmx:Reference>
<edmx:DataServices>
<Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="local">
</Schema>
</edmx:DataServices>
</edmx:Edmx>
9 changes: 9 additions & 0 deletions app/ovpv4/webapp/i18n/i18n.properties
@@ -0,0 +1,9 @@
# This is the resource bundle for v4.ovp.ovpv4

#Texts for manifest.json

#XTIT: Application name
appTitle=OVP v4 Filter Issue

#YDES: Application description
appDescription=OVP v4 Filter Issue
35 changes: 35 additions & 0 deletions app/ovpv4/webapp/index.html
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>OVP v4 Filter Issue</title>
<style>
html, body, body > div, #container, #container-uiarea {
height: 100%;
}
</style>
<script
id="sap-ui-bootstrap"
src="https://sapui5.hana.ondemand.com/1.107.0/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-resourceroots='{
"v4.ovp.ovpv4": "./"
}'
data-sap-ui-oninit="module:sap/ui/core/ComponentSupport"
data-sap-ui-compatVersion="edge"
data-sap-ui-async="true"
data-sap-ui-frameOptions="trusted"
></script>
</head>
<body class="sapUiBody sapUiSizeCompact" id="content">
<div
data-sap-ui-component
data-name="v4.ovp.ovpv4"
data-id="container"
data-settings='{"id" : "v4.ovp.ovpv4"}'
data-handle-validation="true"
></div>
</body>
</html>

0 comments on commit 3111b2c

Please sign in to comment.