Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
0836a3f
Delete cap-notebook/demoapp/app/package-lock.json
vibhutikumar07 Apr 23, 2025
1b0a782
Update package.json
vibhutikumar07 Apr 23, 2025
5b4b868
Update fiori-service.cds
akshatjain-official Apr 25, 2025
caf086e
Update attachment-extension.cds
akshatjain-official Apr 25, 2025
72914cc
Update attachment-extension.cds
akshatjain-official Apr 25, 2025
3d62012
Merge pull request #180 from cap-java/akshatjain-official-patch-2
yashmeet29 Apr 25, 2025
3a17a93
Merge branch 'develop_deploy' into akshatjain-official-patch-3
yashmeet29 Apr 25, 2025
93b1144
Merge pull request #181 from cap-java/akshatjain-official-patch-3
yashmeet29 Apr 25, 2025
6abe8da
Revert "Update fiori-service.cds" (#184)
akshatjain-official Apr 25, 2025
8e8d092
Revert "Update attachment-extension.cds" (#185)
akshatjain-official Apr 25, 2025
952cc6b
added extended fields (#187)
akshatjain-official Apr 29, 2025
5977c80
Added References ,Footnotes annotation (#186)
akshatjain-official Apr 29, 2025
631a38a
Update attachment-extension.cds
yashmeet29 Apr 29, 2025
ed4898d
Update attachment-extension.cds
yashmeet29 Apr 29, 2025
c233546
Update pom.xml
vibhutikumar07 May 13, 2025
e5fcc0b
Update pom.xml
vibhutikumar07 May 13, 2025
bf00552
update cds file (#201)
rishikunnath2747 May 22, 2025
3334790
New UserService Init
akshatjain-official May 23, 2025
52b576e
Update admin-service.cds
PujaDeshmukh17 May 26, 2025
1f79765
Merge pull request #208 from cap-java/PujaDeshmukh17-patch-2
yashmeet29 May 26, 2025
26eef61
Update pom.xml
yashmeet29 May 29, 2025
0538578
Update pom.xml
yashmeet29 May 29, 2025
28832f9
Update attachment-extension.cds
PujaDeshmukh17 May 29, 2025
4460beb
Add files via upload
PujaDeshmukh17 May 29, 2025
6bc4974
Update attachment-extension.cds
PujaDeshmukh17 May 29, 2025
5f631a9
Merge pull request #214 from cap-java/PujaDeshmukh17-patch-2
yashmeet29 May 29, 2025
1f62157
Merge pull request #215 from cap-java/PujaDeshmukh17-patch-3
yashmeet29 May 29, 2025
98a3fdb
fix for dropwdown
rishikunnath2747 May 30, 2025
2e3dde9
Merge pull request #216 from cap-java/dropdownChanges
yashmeet29 May 30, 2025
c6b50f3
Merge pull request #206 from cap-java/my-feature-branch
akshatjain-official Jun 2, 2025
9e3c0e3
changes
rishikunnath2747 Jun 4, 2025
daa8418
update cds file
rishikunnath2747 Jun 4, 2025
ff46c3e
Merge pull request #219 from cap-java/developDeployChanges
yashmeet29 Jun 5, 2025
e327a1b
[CHANGED]: Attachment Extension
akshatjain-official Jun 10, 2025
48777dd
Merge pull request #221 from cap-java/IntegrationTest_MultipleSchema
akshatjain-official Jun 10, 2025
81ce718
Update attachment-extension.cds
PujaDeshmukh17 Jun 11, 2025
810f9cb
Update fiori-service.cds
PujaDeshmukh17 Jun 11, 2025
a79d557
Merge pull request #228 from cap-java/PujaDeshmukh17-patch-3
PujaDeshmukh17 Jun 12, 2025
d03a2f1
Merge pull request #227 from cap-java/PujaDeshmukh17-patch-2
PujaDeshmukh17 Jun 12, 2025
948703a
Merge remote-tracking branch 'origin/develop_deploy' into localDeploy…
rishikunnath2747 Jun 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cap-notebook/demoapp/app/admin-books/fiori-service.cds
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,7 @@ annotate AdminService.Books with {
annotate AdminService.Books with {
genre @Common.ValueListWithFixedValues;
}

annotate AdminService.Books.attachments with {
customProperty1 @Common.ValueListWithFixedValues;
}
18 changes: 12 additions & 6 deletions cap-notebook/demoapp/srv/attachment-extension.cds
Original file line number Diff line number Diff line change
Expand Up @@ -17,37 +17,43 @@ entity Statuses @cds.autoexpose @readonly {

extend Attachments with {
statusText : Association to Statuses on statusText.code = $self.status;
Working___DocumentInfoRecordString : String
customProperty1 : WDIRS_CodeList_TYPE
@SDM.Attachments.AdditionalProperty: {
name: 'Working:DocumentInfoRecordString'
}
@(title: 'DocumentInfoRecordString');
Working___DocumentInfoRecordInt : Integer
customProperty2 : Integer
@SDM.Attachments.AdditionalProperty: {
name: 'Working:DocumentInfoRecordInt'
};
abc___myId1 : String
customProperty3 : String
@SDM.Attachments.AdditionalProperty: {
name: 'abc:myId1'
}
@(title: 'id1');
abc___myId2 : String
customProperty4 : String
@SDM.Attachments.AdditionalProperty: {
name: 'abc:myId2'
}
@(title: 'id2');
Working___DocumentInfoRecordDate : DateTime
customProperty5 : DateTime
@SDM.Attachments.AdditionalProperty: {
name: 'Working:DocumentInfoRecordDate'
}
@(title: 'DocumentInfoRecordDate');
Working___DocumentInfoRecordBoolean : Boolean
customProperty6 : Boolean
@SDM.Attachments.AdditionalProperty: {
name: 'Working:DocumentInfoRecordBoolean'
}
@(title: 'DocumentInfoRecordBoolean');
}

entity WDIRSCodeList : CodeList {
key code : String(30) @Common.Text : name @Common.TextArrangement: #TextFirst;
};

type WDIRS_CodeList_TYPE : Association to one WDIRSCodeList;

annotate Books.attachments with {
status @(
Common.Text: {
Expand Down
Loading