-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathtoc.yml
More file actions
1000 lines (968 loc) · 57.3 KB
/
toc.yml
File metadata and controls
1000 lines (968 loc) · 57.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Getting started with ODC
- href: eap/getting-started/intro.md
- topics:
- href: eap/getting-started/system-requirements.md
- href: eap/getting-started/configure-http-proxy.md
- href: eap/getting-started/overview-portal-studio.md
- href: eap/getting-started/types-of-apps.md
- href: eap/getting-started/hello-world.md
- href: eap/getting-started/sample-app.md
- href: eap/getting-started/open-oml-in-odc-studio.md
# Onboarding for developers
- href: eap/onboarding/intro.md
- topics:
- href: eap/onboarding/differences-sql.md
# Agentic development
- href: eap/agentic-development/intro.md
- topics:
# Create apps (Mentor Web)
- href: eap/agentic-development/mentor-web/how-it-works.md
- topics:
- href: eap/agentic-development/mentor-web/create-app.md
- href: eap/agentic-development/mentor-web/blueprint.md
- href: eap/agentic-development/mentor-web/prompts.md
- href: eap/agentic-development/mentor-web/requirements-doc.md
- href: eap/agentic-development/mentor-web/capabilities.md
- href: eap/agentic-development/mentor-web/ai-tools.md
# Modify apps (Mentor Studio)
- href: eap/agentic-development/mentor-studio/how-it-works.md
- topics:
- href: eap/agentic-development/mentor-studio/modify-app.md
- href: eap/agentic-development/mentor-studio/prompts.md
- href: eap/agentic-development/mentor-studio/capabilities.md
# Concepts
- href: eap/agentic-development/effective-prompts.md
- href: eap/agentic-development/thinking-with-ai.md
- href: eap/agentic-development/architecture.md
- href: eap/agentic-development/sdlc.md
- href: eap/agentic-development/ai-limitations.md
# Building apps
- href: eap/building-apps/intro.md
- topics:
# Build AI-powered apps
- href: eap/building-apps/build-ai-powered-apps/intro.md
- topics:
- href: eap/building-apps/build-ai-powered-apps/ai-models.md
- topics:
- href: eap/building-apps/build-ai-powered-apps/add-ai-models.md
- href: eap/building-apps/build-ai-powered-apps/add-ai-search-services.md
- href: eap/building-apps/build-ai-powered-apps/integrate-ai-models-logic-rag.md
- topics:
- href: eap/building-apps/build-ai-powered-apps/agentic-apps.md
- topics:
- href: eap/building-apps/build-ai-powered-apps/agentic-patterns.md
- href: eap/building-apps/build-ai-powered-apps/create-agent.md
- href: eap/building-apps/build-ai-powered-apps/guardrails.md
- topics:
- href: eap/building-apps/build-ai-powered-apps/configure-agent-guardrails.md
- href: eap/building-apps/build-ai-powered-apps/consumer-app.md
- href: eap/building-apps/build-ai-powered-apps/function-calling.md
- href: eap/building-apps/build-ai-powered-apps/image-input.md
- href: eap/building-apps/build-ai-powered-apps/testing.md
- href: eap/building-apps/build-ai-powered-apps/debug-agentic-apps.md
- href: eap/building-apps/build-ai-powered-apps/about-agent-evaluations.md
- topics:
- href: eap/building-apps/build-ai-powered-apps/construct-dataset.md
- href: eap/building-apps/build-ai-powered-apps/run-your-first-evaluation.md
- href: eap/building-apps/build-ai-powered-apps/structured-output.md
- href: eap/building-apps/build-ai-powered-apps/prompt-engineering.md
- href: eap/building-apps/build-ai-powered-apps/agent-long-running.md
- href: eap/building-apps/build-ai-powered-apps/agent-2-agent/agent-2-agent.md
- topics:
- href: eap/building-apps/build-ai-powered-apps/agent-2-agent/using-agent-2-agent.md
- href: eap/building-apps/build-ai-powered-apps/semantic-search/semantic-search-intro.md
- topics:
- href: eap/building-apps/build-ai-powered-apps/semantic-search/using-semantic-search.md
# MCPs and other tools
- href: eap/building-apps/build-ai-powered-apps/tools/intro.md
- topics:
- href: eap/building-apps/build-ai-powered-apps/tools/mcp-connectors.md
- href: eap/building-apps/build-ai-powered-apps/tools/prebuilt-connectors.md
- href: eap/building-apps/build-ai-powered-apps/tools/unsupported-structures.md
# AI Agent Builder
- href: eap/building-apps/use-ai/intro.md
- topics:
- href: eap/building-apps/use-ai/overall-process.md
# Configure model
- href: eap/building-apps/use-ai/configure-model/intro.md
- topics:
- href: eap/building-apps/use-ai/configure-model/configure-azure-model.md
- href: eap/building-apps/use-ai/configure-model/add-azure-model-to-aibuilder.md
- href: eap/building-apps/use-ai/configure-model/configure-aws-model.md
- href: eap/building-apps/use-ai/configure-model/add-aws-model-to-aibuilder.md
- href: eap/building-apps/use-ai/configure-model/add-custom-ai-model.md
- href: eap/building-apps/use-ai/configure-model/aiab-custom-model-api-contract.md
# Configure data source
- href: eap/building-apps/use-ai/configure-data-source/intro.md
- topics:
- href: eap/building-apps/use-ai/configure-data-source/configure-azure-data-source.md
- href: eap/building-apps/use-ai/configure-data-source/add-azure-data-source-to-aibuilder.md
- href: eap/building-apps/use-ai/configure-data-source/configure-aws-data-source.md
- href: eap/building-apps/use-ai/configure-data-source/add-aws-data-source-to-aibuilder.md
- href: eap/building-apps/use-ai/configure-data-source/add-custom-data-source.md
- href: eap/building-apps/use-ai/configure-data-source/aiab-api-contract.md
# Function calling
- href: eap/building-apps/use-ai/function-calling/overview.md
- topics:
- href: eap/building-apps/use-ai/function-calling/use-function-calling.md
# Create agent
- href: eap/building-apps/use-ai/create-agent.md
# Integrate agent
- href: eap/building-apps/use-ai/integrate-agent.md
# Analyse agent
- href: eap/building-apps/use-ai/analyse-agent.md
# Data management
- href: eap/building-apps/data/intro.md
- topics:
# Data modeling
- href: eap/building-apps/data/modeling.md
- topics:
- href: eap/building-apps/data/modeling/entity.md
- href: eap/building-apps/data/modeling/entity-create.md
- href: eap/building-apps/data/modeling/excel-bootstrap.md
- href: eap/building-apps/data/modeling/entity-static.md
- href: eap/building-apps/data/modeling/relationship/relationships.md
- topics:
- href: eap/building-apps/data/modeling/relationship/relationship-one-to-one.md
- href: eap/building-apps/data/modeling/relationship/relationship-one-to-many.md
- href: eap/building-apps/data/modeling/relationship/relationship-many-to-many.md
- href: eap/building-apps/data/crud-wrappers.md
# Fetch data from the database
- href: eap/building-apps/data/fetch-data/intro.md
- topics:
- href: eap/building-apps/data/fetch-data/aggregate.md
- topics:
- href: eap/building-apps/data/fetch-data/supported-join-types.md
- href: eap/building-apps/data/fetch-data/calculated-attribute-create.md
- href: eap/building-apps/data/fetch-data/sort-aggregate.md
- href: eap/building-apps/data/fetch-data/distinct.md
- href: eap/building-apps/data/fetch-data/filter-results.md
- href: eap/building-apps/data/fetch-data/fetch-data-nl.md
- href: eap/building-apps/data/fetch-data/transaction-external-entities.md
- href: eap/building-apps/data/fetch-data/dynamic-sort.md
- href: eap/building-apps/data/edit-data.md
# Combine data from different sources
- href: eap/building-apps/data/fetch-data/data-mash.md
- topics:
- href: eap/building-apps/data/fetch-data/queries.md
- href: eap/building-apps/data/fetch-data/transactions-data-mashup.md
- href: eap/building-apps/data/fetch-data/data-mashup-errors.md
- href: eap/building-apps/data/fetch-data/sql/use-sql.md
- topics:
- href: eap/building-apps/data/fetch-data/sql/ansi-92-syntax.md
- topics:
- href: eap/building-apps/data/fetch-data/sql/ansi-92-select.md
- href: eap/building-apps/data/fetch-data/sql/ansi-92-insert.md
- href: eap/building-apps/data/fetch-data/sql/ansi-92-update.md
- href: eap/building-apps/data/fetch-data/sql/ansi-92-delete.md
- href: eap/building-apps/data/fetch-data/sql/stored-procedure.md
- href: eap/building-apps/data/fetch-data/sql/ansi-92-operators.md
- href: eap/building-apps/data/fetch-data/sql/ansi-92-data-types.md
# Best practices Data
- href: eap/building-apps/data/data-best-practices/intro.md
- topics:
- href: eap/building-apps/data/data-best-practices/data-purging.md
- href: eap/building-apps/data/data-best-practices/data-archiving.md
- href: eap/building-apps/data/sharing.md
- href: eap/building-apps/data/data-types.md
- href: eap/building-apps/data/convert-data-types.md
- href: eap/building-apps/data/edit-data.md
- href: eap/building-apps/data/structure-create-use.md
- href: eap/building-apps/data/client-variable.md
- href: eap/building-apps/data/secure-data-mobile.md
# Offline data synchronization
- href: eap/building-apps/data/offline/intro.md
- topics:
- href: eap/building-apps/data/offline/sync-implement.md
- href: eap/building-apps/data/offline/sync-reference.md
- href: eap/building-apps/data/offline/sync-checklist.md
- href: eap/building-apps/data/offline/mobile/complex-sync.md
- href: eap/building-apps/data/offline/patterns/intro.md
- topics:
- href: eap/building-apps/data/offline/patterns/read-only-data.md
- href: eap/building-apps/data/offline/patterns/read-only-data-optimized.md
- href: eap/building-apps/data/offline/patterns/read-write-data-last-write-wins.md
- href: eap/building-apps/data/offline/patterns/read-write-data-with-conflict-detection.md
- href: eap/building-apps/data/offline/patterns/read-write-data-one-to-many.md
# UI
- href: eap/building-apps/ui/intro.md
- topics:
# Screen
- href: eap/building-apps/ui/screen-about.md
- topics:
- href: eap/building-apps/ui/creating-screens/screen-creating.md
- href: eap/building-apps/ui/creating-screens/create-screen-scratch.md
- href: eap/building-apps/ui/creating-screens/best-practices-screens.md
- href: eap/building-apps/ui/interaction/fetch-display.md
- href: eap/building-apps/ui/creating-screens/best-practices-fetch-display-data.md
# Reuse ui
- href: eap/building-apps/ui/reuse/intro.md
- href: eap/building-apps/ui/reuse/block-create-reuse.md
# Icons
- href: eap/building-apps/ui/icons/intro.md
- href: eap/building-apps/ui/icons/icon-widget-ref.md
# Patterns
- href: eap/building-apps/ui/patterns/intro.md
- topics:
- href: eap/building-apps/ui/patterns/adaptive/intro.md
- topics:
- href: eap/building-apps/ui/patterns/adaptive/columns.md
- href: eap/building-apps/ui/patterns/adaptive/gallery.md
- href: eap/building-apps/ui/patterns/adaptive/displayondevice.md
- href: eap/building-apps/ui/patterns/adaptive/masterdetail.md
- href: eap/building-apps/ui/patterns/content/intro.md
- topics:
- href: eap/building-apps/ui/patterns/content/accordion.md
- href: eap/building-apps/ui/patterns/content/alert.md
- href: eap/building-apps/ui/patterns/content/blankslate.md
- href: eap/building-apps/ui/patterns/content/card.md
- href: eap/building-apps/ui/patterns/content/carditem.md
- href: eap/building-apps/ui/patterns/content/cardsectioned.md
- href: eap/building-apps/ui/patterns/content/chatmessage.md
- href: eap/building-apps/ui/patterns/content/flipcontent.md
- href: eap/building-apps/ui/patterns/content/floatingcontent.md
- href: eap/building-apps/ui/patterns/content/listitemcontent.md
- href: eap/building-apps/ui/patterns/content/section.md
- href: eap/building-apps/ui/patterns/content/cardbackground.md
- href: eap/building-apps/ui/patterns/content/sectiongroup.md
- href: eap/building-apps/ui/patterns/content/tag.md
- href: eap/building-apps/ui/patterns/content/tooltip.md
- href: eap/building-apps/ui/patterns/content/useravatar.md
- href: eap/building-apps/ui/patterns/interaction/intro.md
- topics:
- href: eap/building-apps/ui/patterns/interaction/actionsheet.md
- href: eap/building-apps/ui/patterns/interaction/animate.md
- href: eap/building-apps/ui/patterns/interaction/animatedlabel.md
- href: eap/building-apps/ui/patterns/interaction/bottomsheet.md
- href: eap/building-apps/ui/patterns/interaction/carousel.md
- href: eap/building-apps/ui/patterns/interaction/data-grid/data-grid-overview.md
- topics:
- href: eap/building-apps/ui/patterns/interaction/data-grid/data-grid-fetch-data.md
- href: eap/building-apps/ui/patterns/interaction/data-grid/data-grid-edit.md
- href: eap/building-apps/ui/patterns/interaction/data-grid/data-grid-save.md
- href: eap/building-apps/ui/patterns/interaction/datepicker.md
- href: eap/building-apps/ui/patterns/interaction/datepickerrange.md
- href: eap/building-apps/ui/patterns/interaction/dropdownsearch.md
- href: eap/building-apps/ui/patterns/interaction/dropdowntags.md
- href: eap/building-apps/ui/patterns/interaction/floatingactions.md
- href: eap/building-apps/ui/patterns/interaction/inputwithicon.md
- href: eap/building-apps/ui/patterns/interaction/lightboximage.md
- href: eap/building-apps/ui/patterns/interaction/monthpicker.md
- href: eap/building-apps/ui/patterns/interaction/map/intro.md
- href: eap/building-apps/ui/patterns/interaction/notification.md
- href: eap/building-apps/ui/patterns/interaction/rangeslider.md
- href: eap/building-apps/ui/patterns/interaction/rangesliderinterval.md
- href: eap/building-apps/ui/patterns/interaction/scrollablearea.md
- href: eap/building-apps/ui/patterns/interaction/search.md
- href: eap/building-apps/ui/patterns/interaction/sidebar.md
- href: eap/building-apps/ui/patterns/interaction/stackedcards.md
- href: eap/building-apps/ui/patterns/interaction/timepicker.md
- href: eap/building-apps/ui/patterns/interaction/video.md
- href: eap/building-apps/ui/patterns/navigation/intro.md
- topics:
- href: eap/building-apps/ui/patterns/navigation/bottombaritem.md
- href: eap/building-apps/ui/patterns/navigation/breadcrumbs.md
- href: eap/building-apps/ui/patterns/navigation/pagination.md
- href: eap/building-apps/ui/patterns/navigation/sectionindex.md
- href: eap/building-apps/ui/patterns/navigation/submenu.md
- href: eap/building-apps/ui/patterns/navigation/tabs.md
- href: eap/building-apps/ui/patterns/navigation/timelineitem.md
- href: eap/building-apps/ui/patterns/navigation/wizard.md
- href: eap/building-apps/ui/patterns/numbers/intro.md
- topics:
- href: eap/building-apps/ui/patterns/numbers/badge.md
- href: eap/building-apps/ui/patterns/numbers/counter.md
- href: eap/building-apps/ui/patterns/numbers/iconbadge.md
- href: eap/building-apps/ui/patterns/numbers/progressbar.md
- href: eap/building-apps/ui/patterns/numbers/progresscircle.md
- href: eap/building-apps/ui/patterns/numbers/rating.md
- href: eap/building-apps/ui/patterns/utilities/intro.md
- topics:
- href: eap/building-apps/ui/patterns/utilities/aligncenter.md
- href: eap/building-apps/ui/patterns/utilities/buttonloading.md
- href: eap/building-apps/ui/patterns/utilities/centercontent.md
- href: eap/building-apps/ui/patterns/utilities/inlinesvg.md
- href: eap/building-apps/ui/patterns/utilities/margincontainer.md
- href: eap/building-apps/ui/patterns/utilities/mouseevents.md
- href: eap/building-apps/ui/patterns/utilities/separator.md
- href: eap/building-apps/ui/patterns/utilities/swipeevents.md
- href: eap/building-apps/ui/patterns/utilities/touchevents.md
- href: eap/reference/apis/chart-intro.md
- topics:
- href: eap/reference/apis/area.md
- href: eap/reference/apis/bar.md
- href: eap/reference/apis/column.md
- href: eap/reference/apis/donut.md
- href: eap/reference/apis/line.md
- href: eap/reference/apis/pie.md
- href: eap/reference/apis/radar.md
- href: eap/reference/apis/data.md
# Screen Templates
- href: eap/building-apps/ui/screen-template/intro.md
- topics:
- href: eap/building-apps/ui/screen-template/sample-data.md
- href: eap/building-apps/ui/screen-template/replace-data.md
- href: eap/building-apps/ui/screen-template/template-compatibility.md
- href: eap/building-apps/ui/navigation/ui-flow.md
- href: eap/building-apps/ui/navigation/navigate-to-detail-screen.md
- href: eap/building-apps/ui/navigation/pass-information-between-screens.md
- href: eap/building-apps/ui/ui-interactions.md
- href: eap/building-apps/ui/customize-ui-styles.md
# Theme
- href: eap/building-apps/ui/themes/intro.md
- href: eap/building-apps/ui/themes/theme-library.md
# Custom authentication flows
- href: eap/building-apps/ui/custom-auth.md
# Self registration
- href: eap/building-apps/ui/self-registration/intro.md
- topics:
- href: eap/building-apps/ui/self-registration/screen.md
- href: eap/building-apps/ui/self-registration/logic.md
- href: eap/building-apps/ui/self-registration/email.md
- href: eap/building-apps/ui/self-registration/create-validation-form.md
- href: eap/building-apps/ui/screen-block-lifecycle-events.md
# Accessibility
- href: eap/building-apps/ui/accessibility/intro.md
- topics:
- href: eap/building-apps/ui/accessibility/testing-fixing-accessibility-issues.md
- href: eap/building-apps/ui/accessibility/aria-roles-and-attributes.md
- href: eap/building-apps/ui/accessibility/ui-patterns-accessibility-reference.md
- href: eap/building-apps/ui/accessibility/additional-accessibility-resources.md
# Logic
- href: eap/building-apps/logic/intro.md
- topics:
- href: eap/building-apps/logic/input-parameter.md
- href: eap/building-apps/logic/local-variable.md
- href: eap/building-apps/logic/output-parameter.md
- href: eap/building-apps/logic/application-ready.md
- href: eap/building-apps/logic/application-resume.md
- href: eap/building-apps/logic/excel-record-list.md
- href: eap/building-apps/logic/record-list-excel.md
- href: eap/building-apps/logic/expressions.md
- topics:
- href: eap/building-apps/logic/expressions/expression-editor.md
- href: eap/building-apps/logic/expressions/operators.md
- href: eap/building-apps/logic/expressions/operands.md
- href: eap/building-apps/logic/best-practices-logic.md
- href: eap/building-apps/logic/ai-logic-suggestions.md
# Extend your apps with external logic
- href: eap/building-apps/external-logic/intro.md
- topics:
- href: eap/building-apps/external-logic/README.md
- href: eap/building-apps/external-logic/best-practices.md
- href: eap/building-apps/external-logic/REFERENCE.md
- href: eap/building-apps/external-logic/upgrade-net8.md
- href: eap/building-apps/external-logic/mtls.md
- href: eap/building-apps/external-logic/soap.md
# Forge
- href: eap/building-apps/forge/intro.md
- topics:
- href: eap/building-apps/forge/install.md
- href: eap/building-apps/forge/document.md
- href: eap/building-apps/forge/submit.md
# Libraries
- href: eap/building-apps/libraries/libraries.md
- topics:
- href: eap/building-apps/libraries/use-public-elements.md
- href: eap/building-apps/libraries/app-lib-properties-edit.md
# Events
- href: eap/building-apps/events/intro.md
- topics:
- href: eap/building-apps/events/backend-events.md
- href: eap/building-apps/events/implement-events.md
- href: eap/building-apps/events/database-events.md
- href: eap/building-apps/events/events-properties.md
# Merge
- href: eap/building-apps/merge/intro.md
- topics:
- href: eap/building-apps/merge/concepts.md
- href: eap/building-apps/merge/merge-example.md
# Multilingual
- href: eap/building-apps/ui/multilingual/intro.md
- topics:
- href: eap/building-apps/ui/multilingual/translate-your-app.md
- href: eap/building-apps/ui/multilingual/translation-editor.md
- href: eap/building-apps/ui/multilingual/translation-management.md
# Mobile apps
- href: eap/building-apps/mobile/intro.md
- topics:
# Mobile UI
- href: eap/building-apps/mobile/mobile-ui/mobile-ui-overview.md
- topics:
- href: eap/building-apps/mobile/mobile-ui/framework-comparison.md
# Create a mobile package
- href: eap/building-apps/mobile/configuring-mobile-apps.md
- topics:
# Intro to extensibility configurations
- href: eap/building-apps/mobile/extensibility-configurations/customize-system-bars-edge-to-edge.md
- href: eap/building-apps/mobile/extensibility-configurations-json-schema.md
# Universal extensibility configurations
- href: eap/building-apps/mobile/extensibility-configurations.md
- topics:
- href: eap/building-apps/mobile/extensibility-configurations/extensibility-app-reference.md
- href: eap/building-apps/mobile/extensibility-configurations/extensibility-lib-reference.md
- href: eap/building-apps/mobile/extensibility-configurations-use-cases.md
# Cordova-based extensibility configurations
- href: eap/building-apps/mobile/legacy-extensibility-configuration.md
- topics:
- href: eap/building-apps/mobile/cordova-extensibility-configurations-use-cases.md
- href: eap/building-apps/mobile/build-actions.md
- topics:
- href: eap/building-apps/mobile/build-actions-android.md
- href: eap/building-apps/mobile/build-actions-iOS.md
- href: eap/building-apps/mobile/migrate-cordova-schema.md
- href: eap/building-apps/mobile/extensibility-configurations/troubleshooting-errors.md
#Mobile plug-ins
- href: eap/integration-with-systems/mobile-plugins/intro.md
- topics:
- href: eap/integration-with-systems/mobile-plugins/capacitor-plugins/integrate-plugin-in-app.md
- href: eap/integration-with-systems/mobile-plugins/migrate-cordova-plugin.md
- href: eap/integration-with-systems/mobile-plugins/capacitor-plugins/dual-stack-plugin.md
- href: eap/integration-with-systems/mobile-plugins/capacitor-plugins/build-capacitor-plugin.md
- topics:
- href: eap/integration-with-systems/mobile-plugins/capacitor-plugins/setup-and-implementation.md
- href: eap/integration-with-systems/mobile-plugins/capacitor-plugins/android-implementation.md
- href: eap/integration-with-systems/mobile-plugins/capacitor-plugins/ios-implementation.md
- href: eap/integration-with-systems/mobile-plugins/using-cordova-plugins.md
#OS supported mobile plugins
- href: eap/integration-with-systems/mobile-plugins/os-supported-plugins.md
- topics:
- href: eap/integration-with-systems/mobile-plugins/barcode/intro.md
- href: eap/integration-with-systems/mobile-plugins/camera/intro.md
- topics:
- href: eap/integration-with-systems/mobile-plugins/camera/camera-ref.md
- href: eap/integration-with-systems/mobile-plugins/camera/camera-migration-guide-1-to-2.md
- href: eap/integration-with-systems/mobile-plugins/camera/camera-version-1.md
- href: eap/integration-with-systems/mobile-plugins/camera/camera-ref-version-1.md
- href: eap/integration-with-systems/mobile-plugins/common-plugin/intro.md
- href: eap/integration-with-systems/mobile-plugins/calendar/intro.md
- href: eap/integration-with-systems/mobile-plugins/contacts/intro.md
- href: eap/integration-with-systems/mobile-plugins/file-plugin/intro.md
- topics:
- href: eap/integration-with-systems/mobile-plugins/file-plugin/file-plugin-ref.md
- href: eap/integration-with-systems/mobile-plugins/file-plugin/file-plugin-migration-guide.md
- href: eap/integration-with-systems/mobile-plugins/file-plugin/file-plugin-version-1.md
- href: eap/integration-with-systems/mobile-plugins/file-transfer-plugin/intro.md
- href: eap/integration-with-systems/mobile-plugins/file-viewer/intro.md
- href: eap/integration-with-systems/mobile-plugins/firebase-plugin/intro.md
- topics:
- href: eap/integration-with-systems/mobile-plugins/firebase-plugin/firebase-cloud-messaging-plugin-server-action.md
- href: eap/integration-with-systems/mobile-plugins/firebase-plugin/firebase-cloud-messaging-plugin-configurator-api.md
- href: eap/integration-with-systems/mobile-plugins/firebase-plugin/firebase-cm-plugin-api-v1-v2.md
- href: eap/integration-with-systems/mobile-plugins/health-fitness/intro.md
- href: eap/integration-with-systems/mobile-plugins/haptics-plugin/intro.md
- topics:
- href: eap/integration-with-systems/mobile-plugins/haptics-plugin/haptics-ref.md
- href: eap/integration-with-systems/mobile-plugins/inapp-browser/inapp-browser.md
- href: eap/integration-with-systems/mobile-plugins/keystore-plugin/intro.md
- topics:
- href: eap/integration-with-systems/mobile-plugins/keystore-plugin/keystore-ref.md
- href: eap/integration-with-systems/mobile-plugins/keyboard-plugin/intro.md
- topics:
- href: eap/integration-with-systems/mobile-plugins/keyboard-plugin/keyboard-ref.md
- href: eap/integration-with-systems/mobile-plugins/location/intro.md
- href: eap/integration-with-systems/mobile-plugins/payments-plugin/intro.md
- href: eap/integration-with-systems/mobile-plugins/ssl-pinning/intro.md
- href: eap/building-apps/mobile/creating-mobile-package.md
- topics:
- href: eap/building-apps/mobile/mobile-build-types.md
- href: eap/building-apps/mobile/mabs-overview.md
- href: eap/building-apps/mobile/migrate-cordova-to-capacitor.md
# Keeping apps up to date for your users
- href: eap/building-apps/mobile/apps-up-to-date.md
# Progressive web app
- href: eap/building-apps/mobile/pwa.md
- href: eap/building-apps/mobile/privacy-updates-for-apple-app-store-submissions.md
# Emails
- href: eap/building-apps/sending-emails/intro.md
- topics:
- href: eap/building-apps/sending-emails/working.md
- href: eap/building-apps/sending-emails/sending.md
- href: eap/building-apps/sending-emails/attachments.md
- href: eap/building-apps/sending-emails/widgets.md
# Handling exceptions
- href: eap/building-apps/handling-exceptions/handle-exceptions.md
- topics:
- href: eap/building-apps/handling-exceptions/handling-mechanism.md
# Timers
- href: eap/building-apps/timers/intro.md
- topics:
- href: eap/building-apps/timers/timer-create-run.md
- href: eap/building-apps/timers/timer-monitor.md
# Workflows
- href: eap/building-apps/workflows/business-processes.md
- topics:
- href: eap/building-apps/workflows/workflows-in-odc.md
- href: eap/building-apps/workflows/using-workflows.md
- href: eap/building-apps/workflows/workflow-components.md
- topics:
- href: eap/building-apps/workflows/start-workflow.md
- href: eap/building-apps/workflows/add-conditional-start.md
- href: eap/building-apps/workflows/add-human-activity.md
- href: eap/building-apps/workflows/add-human-activity-procedure.md
- href: eap/building-apps/workflows/human-activity-states.md
- href: eap/building-apps/workflows/add-automatic-activity.md
- href: eap/building-apps/workflows/add-decisions.md
- href: eap/building-apps/workflows/add-wait.md
- href: eap/building-apps/workflows/parallel-workflow.md
- href: eap/building-apps/workflows/sla-workflow.md
- href: eap/building-apps/workflows/go-to-previous-step.md
- href: eap/building-apps/workflows/terminate-workflow.md
- href: eap/building-apps/workflows/end-workflow.md
- href: eap/building-apps/workflows/agentic-workflows.md
- href: eap/building-apps/workflows/logs.md
- href: eap/building-apps/workflows/troubleshooting-workflows.md
- href: eap/building-apps/workflows/filter-workflows.md
- href: eap/building-apps/workflows/system-entities.md
- href: eap/building-apps/workflows/built-in-functions.md
- href: eap/building-apps/workflows/bpmn-notation.md
# Reuse
- href: eap/building-apps/reuse/intro.md
- href: eap/building-apps/reuse/handle-changes.md
# SEO
- href: eap/building-apps/seo/seo-best-practices.md
- topics:
- href: eap/building-apps/seo/improve-seo-prerendering.md
- href: eap/building-apps/seo/prerender-usage-config.md
- href: eap/building-apps/seo/generating-sitemap-robot-files.md
- href: eap/building-apps/seo/redirect-domains.md
- href: eap/building-apps/seo/custom-404.md
- href: eap/building-apps/seo/remove-ts-query-strings.md
# Debugging apps
- href: eap/debugging-apps/intro.md
- topics:
- href: eap/debugging-apps/breakpoints.md
- href: eap/debugging-apps/watches.md
- href: eap/debugging-apps/threads.md
- href: eap/debugging-apps/inspect-network-traffic.md
- href: eap/debugging-apps/debugger-ui-reference.md
- href: eap/debugging-apps/troubleshoot-debugger-connection.md
# Testing Apps
- href: eap/testing-apps/testing-apps.md
- topics:
- href: eap/testing-apps/test-automation-in-delivery-lifecycle.md
- href: eap/testing-apps/testing-bdd-framework.md
- href: eap/testing-apps/automated-testing/web-ui-testing.md
- href: eap/testing-apps/ui-testing-selenium/ui-testing-selenium.md
# Deploying apps
- href: eap/deploying-apps/deploy-apps.md
- topics:
- href: eap/deploying-apps/deployment-inconsistencies.md
- href: eap/deploying-apps/one-cp.md
- href: eap/deploying-apps/rollback.md
# Integration with external systems
- href: eap/integration-with-systems/intro.md
- topics:
# AI integration
- href: eap/integration-with-systems/ai-integration.md
# Integrate with external data sources using Data Fabric
- href: eap/integration-with-systems/external-databases/intro.md
- topics:
- href: eap/integration-with-systems/external-databases/create-connection-external-data.md
- href: eap/integration-with-systems/external-databases/handle-null-values.md
- href: eap/integration-with-systems/external-databases/sap-odata.md
- href: eap/integration-with-systems/external-databases/external-data-type.md
#Consume REST API
- href: eap/integration-with-systems/consume_rest/intro.md
- topics:
- href: eap/integration-with-systems/consume_rest/consume-a-rest-api.md
- href: eap/integration-with-systems/consume_rest/generate-reuse-oauth-token.md
- href: eap/integration-with-systems/consume_rest/token-based-auth-consume-dev-pattern.md
- href: eap/integration-with-systems/consume_rest/rest-api-structures.md
- href: eap/integration-with-systems/consume_rest/simple-customizations.md
- href: eap/integration-with-systems/consume_rest/refresh-rest-service.md
- href: eap/integration-with-systems/consume_rest/unsupported-use-cases.md
- href: eap/integration-with-systems/consume_rest/handling-rest-errors.md
# Exposing REST APIs
- href: eap/integration-with-systems/exposing_rest/intro.md
- topics:
- href: eap/integration-with-systems/exposing_rest/expose-a-rest-api.md
- href: eap/integration-with-systems/exposing_rest/token-based-auth-expose-dev-pattern.md
- href: eap/integration-with-systems/exposing_rest/key-management-and-json-web-keys.md
- href: eap/integration-with-systems/exposing_rest/customize-rest-urls.md
- href: eap/integration-with-systems/exposing_rest/document-an-exposed-rest-api.md
- href: eap/integration-with-systems/exposing_rest/throw-a-custom-error-in-an-exposed-rest-api.md
- href: eap/integration-with-systems/exposing_rest/change-the-http-status-code-of-a-rest-api.md
- href: eap/integration-with-systems/exposing_rest/built-in-http-status-codes.md
#Javascript
- href: eap/integration-with-systems/javascript/javascript.md
- topics:
- href: eap/integration-with-systems/javascript/async.md
- href: eap/integration-with-systems/javascript/use-external-lib.md
# Security
- href: eap/security/security.md
- topics:
- href: eap/security/sentry.md
- href: eap/security/hipaa.md
- href: eap/security/pci.md
- href: eap/security/configure-csp.md
- topics:
- href: eap/security/implement-csp.md
- href: eap/security/impacts-removing-unsafe-directives.md
- href: eap/security/app-shield/intro.md
- topics:
- href: eap/security/app-shield/protection-features-description.md
- href: eap/security/app-shield/obfuscate-custom-rules.md
- href: eap/security/app-shield/ExitOnUrl.md
- href: eap/security/app-shield/query-all-packages.md
- href: eap/security/app-shield/troubleshooting.md
- href: eap/security/cookies.md
- href: eap/security/set-as-secret.md
# App Architecture
- href: eap/app-architecture/intro.md
- topics:
- href: eap/app-architecture/recommended-architecture.md
- href: eap/app-architecture/reuse-elements.md
- href: eap/app-architecture/reuse-templates.md
- href: eap/app-architecture/service-actions.md
# Manage platform and apps lifecycle
- href: eap/manage-platform-app-lifecycle/intro.md
- topics:
- href: eap/manage-platform-app-lifecycle/platform-architecture/intro.md
- topics:
- href: eap/manage-platform-app-lifecycle/platform-architecture/networking.md
- href: eap/manage-platform-app-lifecycle/platform-architecture/identity.md
- href: eap/manage-platform-app-lifecycle/self-hosted/sh-overview.md
- topics:
- href: eap/manage-platform-app-lifecycle/self-hosted/sh-install-reqs.md
- href: eap/manage-platform-app-lifecycle/self-hosted/sh-cluster-components.md
- href: eap/manage-platform-app-lifecycle/self-hosted/sh-shared-responsibility.md
- href: eap/manage-platform-app-lifecycle/self-hosted/install-sh-process.md
- topics:
- href: eap/manage-platform-app-lifecycle/self-hosted/sh-db-setup.md
- href: eap/manage-platform-app-lifecycle/self-hosted/install-sh.md
- href: eap/manage-platform-app-lifecycle/self-hosted/sh-domain-config.md
- href: eap/manage-platform-app-lifecycle/configuration-management.md
- href: eap/manage-platform-app-lifecycle/configure-app-settings.md
- href: eap/manage-platform-app-lifecycle/custom-domains.md
- href: eap/manage-platform-app-lifecycle/private-gateway.md
- href: eap/manage-platform-app-lifecycle/odc-public-ips.md
- href: eap/manage-platform-app-lifecycle/configure-emails.md
- href: eap/manage-platform-app-lifecycle/sso.md
- href: eap/manage-platform-app-lifecycle/filter-ip.md
- href: eap/manage-platform-app-lifecycle/subscription-console.md
- href: eap/getting-started/capacity-limits.md
- href: eap/deleting-apps/intro.md
- href: eap/manage-platform-app-lifecycle/self-service-db-operations.md
- topics:
- href: eap/manage-platform-app-lifecycle/platform-updates/postgres16-update.md
# User management
- href: eap/user-management/intro.md
- topics:
- href: eap/user-management/create-deactivate-and-delete-users.md
- href: eap/user-management/grant-and-revoke-user-roles.md
- href: eap/user-management/best-practices-user-management.md
- href: eap/user-management/it-users/intro.md
- topics:
- href: eap/user-management/roles.md
- href: eap/user-management/end-users/intro.md
- topics:
- href: eap/user-management/end-users/groups.md
- href: eap/user-management/secure-app-with-roles.md
- href: eap/user-management/classify-users.md
- href: eap/manage-platform-app-lifecycle/external-idps/intro.md
- topics:
- href: eap/manage-platform-app-lifecycle/external-idps/apps.md
- href: eap/manage-platform-app-lifecycle/external-idps/apps-delete-login-screen.md
- href: eap/manage-platform-app-lifecycle/external-idps/configure-openid-connect.md
- href: eap/manage-platform-app-lifecycle/external-idps/configure-saml2.md
- href: eap/manage-platform-app-lifecycle/external-idps/configure-social-accelerators.md
- href: eap/manage-platform-app-lifecycle/external-idps/azure-ad.md
- href: eap/manage-platform-app-lifecycle/external-idps/okta.md
- href: eap/manage-platform-app-lifecycle/external-idps/end-user-group-mapping.md
- href: eap/manage-platform-app-lifecycle/external-idps/manage-external-idps.md
- href: eap/manage-platform-app-lifecycle/external-idps/assign-idp.md
- href: eap/manage-platform-app-lifecycle/external-idps/redirect-uris.md
- href: eap/manage-platform-app-lifecycle/external-idps/identity-claims-email-verification.md
- href: eap/user-management/configure-user-session.md
- href: eap/user-management/passwords.md
# Monitoring and troubleshooting
- href: eap/monitor-and-troubleshoot/monitor-apps.md
- topics:
- href: eap/monitor-and-troubleshoot/app-health.md
# Analytics stream
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-overview.md
- topics:
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-apm.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-configure.md
- topics:
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-datadog.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-dynatrace.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-elastic.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-new-relic.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-splunk.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-amazon-s3.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-opentelemetry.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-log-ref.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-traces-ref.md
- href: eap/monitor-and-troubleshoot/stream-app-analytics/stream-app-analytics-metrics-ref.md
- href: eap/monitor-and-troubleshoot/audit-trail/audit-trail.md
- topics:
- href: eap/monitor-and-troubleshoot/audit-trail/audit-trail-streaming.md
- href: eap/monitor-and-troubleshoot/audit-trail/audit-trail-requirements.md
# Manage technical debt
- href: eap/monitor-and-troubleshoot/manage-technical-debt/managing-tech-debt.md
- topics:
- href: eap/monitor-and-troubleshoot/manage-technical-debt/how-does-aims-works.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/working-with-code-quality.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/getting-started-aims-tl.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/getting-started-aims-dev.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/severity-classification-criteria.md
# Architecture
- href: eap/monitor-and-troubleshoot/manage-technical-debt/architecture/architecture.md
- topics:
- href: eap/monitor-and-troubleshoot/manage-technical-debt/architecture/app-consuming-rest-directly.md
# Maintainability
- href: eap/monitor-and-troubleshoot/manage-technical-debt/maintainability/maintainability.md
- topics:
- href: eap/monitor-and-troubleshoot/manage-technical-debt/maintainability/long-undocumented-flow.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/maintainability/missing-descriptions-on-public-element-or-parameter.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/maintainability/hard-coded-statements.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/maintainability/unused-action-in-app-or-library.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/maintainability/unused-aggregate-or-sql-query.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/maintainability/reminder-comments.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/maintainability/too-much-disabled-code.md
#Performance
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/performance.md
- topics:
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/aggregate-or-sql-query-inside-a-cycle.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/inefficient-query-count.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/inline-css-style.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/long-server-requests-timeout.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/multiple-server-requests-inside-client-actions.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/sequence-of-connected-aggregates.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/unlimited-records-in-aggregate.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/unlimited-records-in-sql-query.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/inefficient-empty-list-test.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/avoid-long-running-timers.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/css-in-the-screen-style-sheet.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/large-resource.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/large-image.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/non-optimized-local-fetch.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/non-optimized-local-storage.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/not-taking-advantage-of-local-storage.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/incorrect-offline-sync-method.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/no-asynchronous-offline-sync.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/complex-splash-screen.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/performance/server-requests-in-client-events.md
#Security
- href: eap/monitor-and-troubleshoot/manage-technical-debt/security/security.md
- topics:
- href: eap/monitor-and-troubleshoot/manage-technical-debt/security/avoid-setting-screens-accessible-everyone.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/security/exposed-rest-services-are-not-secured.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/security/insecure-usage-of-getuserid-in-client-block-parameters.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/security/insecure-usage-of-getuserid-on-client-context.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/security/screen-aggregates-exposing-system-entities-on-anonymous-screens.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/security/sql-injection.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/security/visible-disabled-button.md
- href: eap/monitor-and-troubleshoot/manage-technical-debt/security/server-call-screen-accessible-everyone.md
- href: eap/monitor-and-troubleshoot/traces/intro.md
- topics:
- href: eap/monitor-and-troubleshoot/traces/server-side-traces.md
- href: eap/monitor-and-troubleshoot/traces/client-side-traces.md
# REST APIs
- href: eap/reference/apis/public-rest-apis/overview.md
- topics:
- href: eap/reference/apis/public-rest-apis/getting-started.md
- href: eap/reference/apis/public-rest-apis/authentication/oauth-concept.md
- topics:
- href: eap/reference/apis/public-rest-apis/authentication/about-api-client.md
- href: eap/reference/apis/public-rest-apis/authentication/using-oauth-access-api.md
- href: eap/reference/apis/public-rest-apis/authentication/create-api-client.md
- href: eap/reference/apis/public-rest-apis/authentication/generate-new-secret.md
- href: eap/reference/apis/public-rest-apis/authentication/get-access-token.md
- href: eap/reference/apis/public-rest-apis/authentication/about-oidc-discovery-document.md
- href: eap/reference/apis/public-rest-apis/authentication/call-api.md
- href: eap/reference/apis/public-rest-apis/authentication/suspend-resume-access-api-client.md
- href: eap/reference/apis/public-rest-apis/authentication/best-practices-for-api-credentials.md
- href: eap/reference/apis/public-rest-apis/pagination-rest-apis.md
- href: eap/reference/apis/public-rest-apis/rate-limiting.md
- href: eap/reference/apis/public-rest-apis/api-references.md
- topics:
- href: eap/reference/apis/identity-v1.md
- href: eap/reference/apis/portfolio-v1.md
- href: eap/reference/apis/build-v1.md
- href: eap/reference/apis/deployment-v1.md
- href: eap/reference/apis/dependency-v1.md
- href: eap/reference/apis/asset-v1.md
- href: eap/reference/apis/asset-config-v1.md
- href: eap/reference/apis/env-config-v1.md
- href: eap/reference/apis/code-quality-api-v1.md
- href: eap/reference/apis/external-library-generation-api-v1.md
- href: eap/reference/apis/public-rest-apis/use-cases.md
- topics:
- href: eap/reference/apis/public-rest-apis/end-user-management-use-cases/intro.md
- topics:
- href: eap/reference/apis/public-rest-apis/end-user-management-use-cases/create-user-assign-role.md
- href: eap/reference/apis/public-rest-apis/asset-governance-use-cases/asset-governance-intro.md
- topics:
- href: eap/reference/apis/public-rest-apis/asset-governance-use-cases/list-templates.md
- href: eap/reference/apis/public-rest-apis/asset-governance-use-cases/create-asset.md
- href: eap/reference/apis/public-rest-apis/asset-governance-use-cases/manage-asset-permissions.md
- href: eap/reference/apis/public-rest-apis/ci-cd-apis-use-cases/intro.md
- topics:
- href: eap/reference/apis/public-rest-apis/ci-cd-apis-use-cases/select-revision-build.md
- href: eap/reference/apis/public-rest-apis/ci-cd-apis-use-cases/code-quality.md
- href: eap/reference/apis/public-rest-apis/ci-cd-apis-use-cases/generated-code-sast.md
- href: eap/reference/apis/public-rest-apis/ci-cd-apis-use-cases/set-version-release-notes.md
- href: eap/reference/apis/public-rest-apis/ci-cd-apis-use-cases/asset-configurations.md
- href: eap/reference/apis/public-rest-apis/ci-cd-apis-use-cases/deploy-asset.md
- href: eap/reference/apis/public-rest-apis/ci-cd-apis-use-cases/release-library.md
- href: eap/reference/apis/public-rest-apis/upload-external-library-api.md
# Reference
- href: eap/reference/intro.md
- topics:
- href: eap/reference/isolation.md
# Libraries
- href: eap/reference/libraries/intro.md
- topics:
- href: eap/reference/libraries/binarydata.md
- href: eap/reference/libraries/datetime.md
- href: eap/reference/libraries/http.md
- href: eap/reference/libraries/math.md
- href: eap/reference/libraries/sanitization.md
- href: eap/reference/libraries/security.md
- href: eap/reference/libraries/text.md
- href: eap/reference/libraries/textdictionary.md
- href: eap/reference/libraries/url.md
- href: eap/reference/libraries/xml.md
- href: eap/reference/libraries/zip.md
# Logic actions
- href: eap/reference/logic-actions/logic-actions.md
- topics:
- href: eap/reference/logic-actions/client-action.md
- href: eap/reference/logic-actions/server-action.md
# Service actions
- href: eap/reference/service-actions/intro.md
- topics:
- href: eap/reference/service-actions/call-agent-function-calling.md
# System actions
- href: eap/reference/system-actions/intro.md
- topics:
- href: eap/reference/system-actions/auth.md
- href: eap/reference/system-actions/user.md
- href: eap/reference/system-actions/workflows.md
- href: eap/reference/system-actions/get-default-domain.md
# Built-in functions
- href: eap/reference/built-in-functions/intro.md
- topics:
- href: eap/reference/built-in-functions/data-conversion.md
- href: eap/reference/built-in-functions/dateandtime.md
- href: eap/reference/built-in-functions/email.md
- href: eap/reference/built-in-functions/format.md
- href: eap/reference/built-in-functions/math.md
- href: eap/reference/built-in-functions/numeric.md
- href: eap/reference/built-in-functions/organization.md
- href: eap/reference/built-in-functions/roles.md
- href: eap/reference/built-in-functions/text.md
- href: eap/reference/built-in-functions/url.md
- href: eap/reference/apis/javascript/intro.md
- topics:
- href: eap/reference/apis/javascript/applicationcontext.md
- href: eap/reference/apis/javascript/applicationlifecycle.md
- href: eap/reference/apis/javascript/device.md
- href: eap/reference/apis/javascript/feedbackmessage.md
- href: eap/reference/apis/javascript/logger.md
- href: eap/reference/apis/javascript/navigation.md
- href: eap/reference/apis/javascript/validation.md
- href: eap/reference/apis/javascript/view.md
- href: eap/reference/shortcutkeys.md
- href: eap/reference/command-line/odc-command-line.md
- href: eap/reference/data-grid-ref.md
# Errors
- href: error/intro.md
- topics:
# Errors Forge Service
- href: error/frge/intro.md
- topics:
- href: error/frge/os-frge-ast-40001.md
- href: error/frge/os-frge-ast-40002.md
- href: error/frge/os-frge-ast-40003.md
- href: error/frge/os-frge-ast-40004.md
- href: error/frge/os-frge-ast-40005.md
- href: error/frge/os-frge-ast-40006.md
- href: error/frge/os-frge-ast-40007.md
- href: error/frge/os-frge-ast-40008.md
- href: error/frge/os-frge-ast-40009.md
- href: error/frge/os-frge-ast-40301.md
- href: error/frge/os-frge-ast-40302.md
- href: error/frge/os-frge-ast-40401.md
- href: error/frge/os-frge-ast-40402.md
- href: error/frge/os-frge-ast-40403.md
- href: error/frge/os-frge-ast-40902.md
- href: error/frge/os-frge-ast-40903.md
- href: error/frge/os-frge-ast-40904.md
- href: error/frge/os-frge-ast-50001.md
- href: error/frge/os-frge-ast-50002.md
- href: error/frge/os-frge-ast-50003.md
# Build errors
- href: error/bld/intro.md
- topics:
- href: error/bld/OS-BLD-FE-40001.md
- href: error/bld/OS-APPS-40008.md
# Errors External Libraries SDK
- href: error/elg/intro.md
- topics:
- href: error/elg/OS-ELG-MODL-05001.md
- href: error/elg/OS-ELG-MODL-05002.md
- href: error/elg/OS-ELG-MODL-05003.md
- href: error/elg/OS-ELG-MODL-05004.md
- href: error/elg/OS-ELG-MODL-05005.md
- href: error/elg/OS-ELG-MODL-05006.md
- href: error/elg/OS-ELG-MODL-05007.md
- href: error/elg/OS-ELG-MODL-05008.md
- href: error/elg/OS-ELG-MODL-05009.md
- href: error/elg/OS-ELG-MODL-05010.md
- href: error/elg/OS-ELG-MODL-05011.md
- href: error/elg/OS-ELG-MODL-05012.md
- href: error/elg/OS-ELG-MODL-05013.md
- href: error/elg/OS-ELG-MODL-05014.md
- href: error/elg/OS-ELG-MODL-05015.md
- href: error/elg/OS-ELG-MODL-05016.md
- href: error/elg/OS-ELG-MODL-05017.md
- href: error/elg/OS-ELG-MODL-05018.md
- href: error/elg/OS-ELG-MODL-05019.md
- href: error/elg/OS-ELG-MODL-05020.md
- href: error/elg/OS-ELG-MODL-05021.md
- href: error/elg/OS-ELG-MODL-05022.md
- href: error/elg/OS-ELG-MODL-05023.md
- href: error/elg/OS-ELG-MODL-05024.md
- href: error/elg/OS-ELG-MODL-05025.md
- href: error/elg/OS-ELG-MODL-05026.md
- href: error/elg/OS-ELG-MODL-05027.md
- href: error/elg/OS-ELG-MODL-05028.md
- href: error/elg/OS-ELG-MODL-05029.md
# Errors Package Manager Service
- href: error/pkgs/intro.md
- topics:
- href: error/pkgs/PKGS-40003.md
- href: error/pkgs/PKGS-40004.md
- href: error/pkgs/PKGS-40005.md
- href: error/pkgs/PKGS-40007.md
- href: error/pkgs/PKGS-40008.md
- href: error/pkgs/PKGS-40010.md
- href: error/pkgs/PKGS-40011.md
- href: error/pkgs/PKGS-40012.md
- href: error/pkgs/PKGS-40014.md
- href: error/pkgs/PKGS-40015.md
- href: error/pkgs/PKGS-40016.md
- href: error/pkgs/PKGS-40017.md
- href: error/pkgs/PKGS-40101.md
- href: error/pkgs/PKGS-40102.md
- href: error/pkgs/PKGS-50002.md
- href: error/pkgs/PKGS-50003.md
- href: error/pkgs/PKGS-50004.md
- href: error/pkgs/PKGS-50005.md
# Errors INTC
- href: error/intc/intro.md
- topics:
- href: error/intc/os-intc-60003.md
- href: error/intc/os-intc-60004.md
- href: error/intc/os-intc-60005.md
- href: error/intc/os-intc-60006.md
- href: error/intc/os-dfqe-40004.md
- href: error/intc/os-intc-api-50002.md
# Errors App and Library dependency errors
- href: error/aldi/intro.md
- topics:
- href: error/aldi/app_lib_depend_issues.md