SAP Analytics Cloud Scripting
Related Skills
- sap-dependency-security: Use when securing dependency, SDK/tooling, and source-pinned SAC MCP upgrades used in story automation pipelines
- sap-browser-automation: Use for in-app manual authentication, consent-gated Edge profile reuse, fresh Edge/CDP startup, auth-state bootstrap, and browser recovery
When to Use This Skill
Use this skill when writing or debugging SAC Analytics Designer scripts, Optimized Story Experience scripts, widget APIs, data-source filtering/selection logic, planning/version scripts, export/navigation handlers, performance-sensitive story logic, or SAC MCP-assisted automation.
Comprehensive skill for scripting in SAP Analytics Cloud (SAC) Analytics Designer and Optimized Story Experience.
For authenticated SAC browser runtime inspection, use sap-browser-automation for manual in-app authentication, consent-gated Edge profile reuse, fresh Edge/CDP startup, auth-state bootstrap, and recovery. Load local references/edge-cdp-control.md for SAC scripting-specific boundaries. Use CDP for local runtime triage, widget-state checks, and approved screenshots; do not touch unrelated tabs.
Getting Started
When the user invokes this skill with no specific task (e.g. "help with SAC scripting", "use SAC scripting skill", or no follow-up question), respond with this structured orientation:
Welcome! I can help you with SAP Analytics Cloud scripting.
First, which environment are you working in?
- Analytics Designer — application-based scripting, full API
- Optimized Story Experience — story-based scripting, OSE API (v2025.20)
Then, what do you need help with?
- Write a new script (filter, planning, navigation, export...)
- Debug an existing script
- Optimize performance
- Find the right API method
- Planning operations (version management, data locking...)
Plugin Components
This plugin provides specialized tools for SAC development:
Agents (use via Task tool):
sac-script-debugger - Debug script errors, trace issues
sac-performance-optimizer - Analyze and fix performance bottlenecks
sac-planning-assistant - Guide planning operations and version management
sac-api-helper - Find correct APIs and provide code examples
Commands (use via /command):
/sac-script-template - Generate script templates (filter, planning, export, etc.)
/sac-debug - Interactive debugging guidance
/sac-optimize - Performance analysis and recommendations
/sac-planning - Planning operation templates
Hooks:
- Automatic validation on SAC script writes for common issues
MCP Setup
This plugin ships with a .mcp.json that connects to the trusted secondsky/sap_analytics_cloud_mcp
server, exposing 90 SAC REST API tools across 11 service areas (Content, Data Export, Data Import,
Multi Actions, Calendar, Content Transport, User Management, Monitoring, Schedule & Publication,
Translation, Smart Query).
The SAC MCP is source-installed, not npm-installed. Use sap-dependency-security before changing the trusted fork or commit pin because this server receives SAC OAuth credentials and exposes tenant API tools.
Before using MCP tools, check if the server is already installed:
- Look for
.claude/sac-mcp.local.md in the project
- Or check if
SAC_MCP_PATH is set in the environment
If not installed, ask the user once: "Would you like help setting up the SAC MCP server?"
If yes, guide them through:
Clone and build:
git clone https://github.com/secondsky/sap_analytics_cloud_mcp
cd sap_analytics_cloud_mcp
git checkout 2020235505d98111c2889598ab2217c1619b6943
npm ci --ignore-scripts
npm run build
Configure environment variables:
SAC_MCP_PATH — absolute path to the cloned repo (e.g. /home/user/sap_analytics_cloud_mcp)
SAC_MCP_COMMIT — 2020235505d98111c2889598ab2217c1619b6943
SAC_BASE_URL — SAC tenant root URL (e.g. https://mytenant.eu10.hanacloudservices.cloud.sap)
SAC_TOKEN_URL — OAuth token endpoint
SAC_CLIENT_ID / SAC_CLIENT_SECRET — from SAC OAuth client configuration
After successful install, write .claude/sac-mcp.local.md (gitignored) with:
# SAC MCP Installation Record
- Installed: [date]
- Repository: https://github.com/secondsky/sap_analytics_cloud_mcp
- Commit: 2020235505d98111c2889598ab2217c1619b6943
- Path: [absolute path to build/index.js]
- Build command: npm ci --ignore-scripts && npm run build
- Env vars configured: SAC_MCP_PATH, SAC_MCP_COMMIT, SAC_BASE_URL, SAC_TOKEN_URL, SAC_CLIENT_ID, SAC_CLIENT_SECRET
This prevents re-prompting in future sessions.
What's New in Q2 2026 (2026.8)
Key scripting enhancements in the latest SAC release:
- Enhanced
onAfterExecute Event - Upload events now include message, statistics, rejected records, target version, and filename
- Data Export API Job Monitoring - New job monitor tab for delta extraction and calculation jobs
- Data Import Service API - Import master data to public dimensions in SAP Datasphere; import external fact data to private versions
- Multi-Action API Step - HTTP 204 response now allowed; enhanced header field restrictions
- Export to S/4HANA Deprecated - Use write-back integration scenario instead
- Asymmetric Reporting - Differing time ranges, hierarchies, and measures per row/column
- Composite Versioning - Manage multiple composite versions during story design
See references/whats-new-qrc2-2026.md for complete details.
Environment Detection
Before writing or analyzing any script, identify which SAC environment the user is working in.
Detection signals:
| Signal |
Environment |
Mentions .story, "Optimized Story", OSE, Story., Application.getActivePage() |
OSE |
Mentions Analytics Designer, AnalyticApplication, Designer, .application |
Analytics Designer |
| Says "SAC script" / "my script" without further context |
Unclear |
When environment is unclear, ask ONE concise question before proceeding:
"Are you scripting in Analytics Designer or Optimized Story Experience? This determines which API reference I use."
Do not ask again after the user answers.
After confirmation, use the correct references:
- OSE →
references/ose-api-*.md (8 files, Q2 2026, v2025.20)
- Analytics Designer →
references/api-*.md (existing files)
Reporting Story Workflow
Use this workflow for read-only SAC stories, dashboards, and management reports. It is separate from planning: route writeback, version publishing, data actions, allocations, data locking, and other planning operations to sap-sac-planning.
- Establish the contract: identify the tenant, story, data source, intended audience, and whether the user forbids model changes. Treat a reporting-only request as story-layer work unless the user explicitly authorizes a broader scope.
- Inspect actual metadata: confirm the selected model and use only its exposed dimensions, measures, hierarchies, time fields, currencies, and comparison categories. Never invent a field because it would be useful for a proposed chart or KPI.
- Design at the story layer: define pages, widgets, filters, selections, navigation, and supported story calculations. Label comparisons explicitly as actual-versus-budget, forecast, or another available category.
- Implement safely: before saving, verify that the current SAC area is Story Designer rather than Modeler. Keep common filters and dependent-widget interactions read-only and non-destructive.
- Verify or hand off: validate page and widget readiness with
sap-sac-test-automation. If authenticated tenant control is unavailable, follow sap-browser-automation and the local references/edge-cdp-control.md recovery path. If access still fails, do not claim that the story was created; provide the complete story specification for manual execution or a later connected session.
Read-Only Story Contract
When the model must not change, the following are allowed:
- create or edit story pages, charts, tables, KPI cards, filters, navigation, and story-layer calculations supported by SAC;
- rename story objects and save the story;
- inspect model metadata and perform read-only validation.
The following are forbidden without explicit scope and approval:
- editing model dimensions, measures, properties, connections, calendars, allocations, or settings;
- creating model-level calculated measures or changing master data, roles, or permissions;
- publishing planning versions, executing data actions, changing locks, or writing back planning data.
If a required field or measure is not exposed by the model, omit the dependent widget and record the omission. Do not change the model to make the design fit.
Implementation-Ready Handoff
When tenant interaction is blocked, return a usable specification containing:
- story purpose, audience, data source, and confirmed model metadata;
- page-by-page widgets using only resolved fields;
- filters, comparison semantics, selections, and drilldowns;
- omitted widgets or unresolved fields with the reason for each;
- read-only safety constraints and the verification evidence still required.
Large Reference Search Routing
Search large OSE API references with rg before opening them. Use patterns such as rg -n "class Chart|interface DataSource|enum Feed|setDimensionFilter|getPlanning|PlanningModel" references/ose-api-*.md, then read only the matching section.
- Use
references/ose-api-datasource.md for DataSource, DataAction, DataBinding, DataLocking, DataChangeInsights, and result-set methods.
- Use
references/ose-api-chart-viz.md for Chart, Table, GeoMap, RVisualization, ValueDriverTree, feeds, and visualization APIs.
- Use
references/ose-api-planning-calendar.md for Planning, PlanningModel, versions, calendars, data actions, and planning workflows.
- Use
references/ose-api-application-core.md for Application, PageBook, Panel, Popup, Widget, and lifecycle or container APIs.
- Use
references/ose-api-types-enums.md for enum/type lookup when a method signature mentions Feed, Layout, NumberFormat, VariableValue, or other SAC-specific types.
- Use smaller
references/api-*.md files first for Analytics Designer unless the user explicitly says Optimized Story Experience.
Quick Start
Script Editor Access
- Analytics Designer: Edit mode → Select widget → Scripts tab
- Optimized Story Experience: Advanced Mode → Select widget → Add script
Basic Script Structure
// Event handler example (onSelect on Chart_1)
var selections = Chart_1.getSelections();
if (selections.length > 0) {
var selectedValue = selections[0]["Location"];
Table_1.getDataSource().setDimensionFilter("Location", selectedValue);
}
Core APIs
DataSource API
Access via Widget.getDataSource(). Key methods:
getMembers(dim, {accessMode: MemberAccessMode.BookedValues}) - Get dimension members efficiently
getResultSet() - Cached data access (preferred over getData())
setDimensionFilter(dim, value) - Apply filters
setRefreshPaused(true/false) - Batch multiple operations
Planning API
Access via Table.getPlanning(). Key operations:
getPublicVersion() / getPrivateVersion() - Version access
publish() - Submit private to public
copyFromPublicVersion() / copyToPublicVersion() - Data copy
setLock(true/false) - Data locking
Widget APIs
- Charts:
addMeasure(), addDimension(), getSelections()
- Tables:
addDimensionToRows(), setZeroSuppressionEnabled()
- Containers: Panel, TabStrip, PageBook for layout
Application Object
Global utilities:
Application.showBusyIndicator() / hideBusyIndicator()
Application.showMessage(type, text)
Application.getUserInfo() / getInfo()
Performance Best Practices
Minimize Backend Calls
// Use getResultSet() (cached) instead of getMembers() (backend)
var data = ds.getResultSet();
Batch Filter Operations
ds.setRefreshPaused(true);
ds.setDimensionFilter("Dim1", value1);
ds.setDimensionFilter("Dim2", value2);
ds.setRefreshPaused(false); // Single refresh
Keep onInitialization Empty
Defer heavy operations to lazy loading or first interaction.
Use BookedValues for Members
var members = ds.getMembers("Dim", {accessMode: MemberAccessMode.BookedValues});
Debugging
Console Logging
console.log("Debug:", myVariable);
console.log("Selections:", JSON.stringify(Chart_1.getSelections()));
Browser DevTools
- Press F12 → Console tab
- Filter by "Info" type
- Add
?APP_PERFORMANCE_LOGGING=true to URL for timing
Bundled Resources
Reference Files (66 files):
- Core APIs:
references/api-datasource.md, references/api-widgets.md, references/api-planning.md
- Advanced:
references/api-calendar-bookmarks.md, references/api-advanced-widgets.md
- Best Practices:
references/best-practices-developer.md, references/best-practices-planning-stories.md
- Language:
references/scripting-language-fundamentals.md
- Q2 2026-relevant API updates:
references/whats-new-qrc2-2026.md, references/whats-new-2025.23.md, references/chart-variance-apis.md
- Browser runtime triage:
references/edge-cdp-control.md for SAC-specific boundaries; use shared sap-browser-automation for authentication, Edge/CDP setup, DevToolsActivePort, target selection, and recovery
- OSE API (Q2 2026, v2025.20) — complete method/parameter/return documentation:
references/ose-api-application-core.md — Application, PageBook, Panel, Popup, Widget (15 classes)
references/ose-api-widgets.md — Button, Dropdown, InputField, Slider, Switch, Text, TextArea (15 classes)
references/ose-api-datasource.md — DataSource, DataAction, DataBinding, DataLocking, DataChangeInsights (39 classes)
references/ose-api-chart-viz.md — Chart, Table, GeoMap, RVisualization, ValueDriverTree (20 classes)
references/ose-api-planning-calendar.md — Planning, PlanningModel, all Calendar classes (54 classes)
references/ose-api-filtering-selection.md — FilterLine, FilterValue, Selection (11 classes)
references/ose-api-utilities.md — BookmarkSet, MemberInfo, DimensionInfo, Timer, NavigationUtils (37 classes)
references/ose-api-types-enums.md — All enum types: Feed, Layout, NumberFormat, VariableValue (70 classes)
Templates (56 patterns):
templates/common-patterns.js - 40 general scripting patterns
templates/planning-operations.js - 16 planning-specific patterns
Official Documentation
SAC Version: Q2 2026 (2026.8) | API Version: 2025.20 (OSE Q2 2026)
1---2name: sap-sac-scripting3description: Comprehensive SAC scripting skill for SAP Analytics Cloud Analytics Designer and Optimized Story Experience. This skill should be used when the user asks to "create SAC script", "debug Analytics Designer", "optimize SAC performance", "planning operations in SAC", "filter data in SAC", "use DataSource API", "chart scripting", "table manipulation", "SAC event handlers", "version management", "data locking", "Optimized Story Experience API", "OSE scripting", "OSE widget API", "OSE DataSource", "story scripting API", "OSE planning API", "OSE method", "optimized story", "SAC story scripting", "story script", "SAC scripting", "debug SAC runtime in Microsoft Edge via CDP", or works with SAC widgets, planning models, or analytics applications.4license: GPL-3.05---6
7# SAP Analytics Cloud Scripting
8
9## Related Skills
10
11- **sap-dependency-security**: Use when securing dependency, SDK/tooling, and source-pinned SAC MCP upgrades used in story automation pipelines
12- **sap-browser-automation**: Use for in-app manual authentication, consent-gated Edge profile reuse, fresh Edge/CDP startup, auth-state bootstrap, and browser recovery
13
14## When to Use This Skill
15
16Use this skill when writing or debugging SAC Analytics Designer scripts, Optimized Story Experience scripts, widget APIs, data-source filtering/selection logic, planning/version scripts, export/navigation handlers, performance-sensitive story logic, or SAC MCP-assisted automation.
17
18Comprehensive skill for scripting in SAP Analytics Cloud (SAC) Analytics Designer and Optimized Story Experience.
19
20For authenticated SAC browser runtime inspection, use `sap-browser-automation` for manual in-app authentication, consent-gated Edge profile reuse, fresh Edge/CDP startup, auth-state bootstrap, and recovery. Load local `references/edge-cdp-control.md` for SAC scripting-specific boundaries. Use CDP for local runtime triage, widget-state checks, and approved screenshots; do not touch unrelated tabs.
21
22## Getting Started
23
24When the user invokes this skill with no specific task (e.g. "help with SAC scripting", "use SAC scripting skill", or no follow-up question), respond with this structured orientation:
25
26> Welcome! I can help you with SAP Analytics Cloud scripting.
27>
28> First, which environment are you working in?
29> 1. **Analytics Designer** — application-based scripting, full API
30> 2. **Optimized Story Experience** — story-based scripting, OSE API (v2025.20)
31>
32> Then, what do you need help with?
33> - Write a new script (filter, planning, navigation, export...)
34> - Debug an existing script
35> - Optimize performance
36> - Find the right API method
37> - Planning operations (version management, data locking...)
38
39## Plugin Components
40
41This plugin provides specialized tools for SAC development:
42
43**Agents** (use via Task tool):
44- `sac-script-debugger` - Debug script errors, trace issues
45- `sac-performance-optimizer` - Analyze and fix performance bottlenecks
46- `sac-planning-assistant` - Guide planning operations and version management
47- `sac-api-helper` - Find correct APIs and provide code examples
48
49**Commands** (use via /command):
50- `/sac-script-template` - Generate script templates (filter, planning, export, etc.)
51- `/sac-debug` - Interactive debugging guidance
52- `/sac-optimize` - Performance analysis and recommendations
53- `/sac-planning` - Planning operation templates
54
55**Hooks**:
56- Automatic validation on SAC script writes for common issues
57
58## MCP Setup
59
60This plugin ships with a `.mcp.json` that connects to the trusted `secondsky/sap_analytics_cloud_mcp`
61server, exposing 90 SAC REST API tools across 11 service areas (Content, Data Export, Data Import,
62Multi Actions, Calendar, Content Transport, User Management, Monitoring, Schedule & Publication,
63Translation, Smart Query).
64
65The SAC MCP is source-installed, not npm-installed. Use **sap-dependency-security** before changing the trusted fork or commit pin because this server receives SAC OAuth credentials and exposes tenant API tools.
66
67**Before using MCP tools**, check if the server is already installed:
68- Look for `.claude/sac-mcp.local.md` in the project
69- Or check if `SAC_MCP_PATH` is set in the environment
70
71If not installed, ask the user once: **"Would you like help setting up the SAC MCP server?"**
72
73**If yes**, guide them through:
74
751. Clone and build:
76 ```bash
77 git clone https://github.com/secondsky/sap_analytics_cloud_mcp
78 cd sap_analytics_cloud_mcp
79 git checkout 2020235505d98111c2889598ab2217c1619b6943
80 npm ci --ignore-scripts
81 npm run build
82 ```
83
842. Configure environment variables:
85 - `SAC_MCP_PATH` — absolute path to the cloned repo (e.g. `/home/user/sap_analytics_cloud_mcp`)
86 - `SAC_MCP_COMMIT` — `2020235505d98111c2889598ab2217c1619b6943`
87 - `SAC_BASE_URL` — SAC tenant root URL (e.g. `https://mytenant.eu10.hanacloudservices.cloud.sap`)
88 - `SAC_TOKEN_URL` — OAuth token endpoint
89 - `SAC_CLIENT_ID` / `SAC_CLIENT_SECRET` — from SAC OAuth client configuration
90
913. After successful install, write `.claude/sac-mcp.local.md` (gitignored) with:
92 ```markdown
93 # SAC MCP Installation Record
94 - Installed: [date]
95 - Repository: https://github.com/secondsky/sap_analytics_cloud_mcp
96 - Commit: 2020235505d98111c2889598ab2217c1619b6943
97 - Path: [absolute path to build/index.js]
98 - Build command: npm ci --ignore-scripts && npm run build
99 - Env vars configured: SAC_MCP_PATH, SAC_MCP_COMMIT, SAC_BASE_URL, SAC_TOKEN_URL, SAC_CLIENT_ID, SAC_CLIENT_SECRET
100 ```
101
102This prevents re-prompting in future sessions.
103
104## What's New in Q2 2026 (2026.8)
105
106Key scripting enhancements in the latest SAC release:
107- **Enhanced `onAfterExecute` Event** - Upload events now include message, statistics, rejected records, target version, and filename
108- **Data Export API Job Monitoring** - New job monitor tab for delta extraction and calculation jobs
109- **Data Import Service API** - Import master data to public dimensions in SAP Datasphere; import external fact data to private versions
110- **Multi-Action API Step** - HTTP 204 response now allowed; enhanced header field restrictions
111- **Export to S/4HANA Deprecated** - Use write-back integration scenario instead
112- **Asymmetric Reporting** - Differing time ranges, hierarchies, and measures per row/column
113- **Composite Versioning** - Manage multiple composite versions during story design
114
115See `references/whats-new-qrc2-2026.md` for complete details.
116
117## Environment Detection
118
119Before writing or analyzing any script, identify which SAC environment the user is working in.
120
121**Detection signals:**
122
123| Signal | Environment |
124|--------|-------------|
125| Mentions `.story`, "Optimized Story", OSE, `Story.`, `Application.getActivePage()` | **OSE** |
126| Mentions Analytics Designer, `AnalyticApplication`, `Designer`, `.application` | **Analytics Designer** |
127| Says "SAC script" / "my script" without further context | **Unclear** |
128
129**When environment is unclear**, ask ONE concise question before proceeding:
130
131> "Are you scripting in **Analytics Designer** or **Optimized Story Experience**? This determines which API reference I use."
132
133Do not ask again after the user answers.
134
135**After confirmation**, use the correct references:
136- **OSE** → `references/ose-api-*.md` (8 files, Q2 2026, v2025.20)
137- **Analytics Designer** → `references/api-*.md` (existing files)
138
139## Reporting Story Workflow
140
141Use this workflow for read-only SAC stories, dashboards, and management reports. It is separate from planning: route writeback, version publishing, data actions, allocations, data locking, and other planning operations to `sap-sac-planning`.
142
1431. **Establish the contract**: identify the tenant, story, data source, intended audience, and whether the user forbids model changes. Treat a reporting-only request as story-layer work unless the user explicitly authorizes a broader scope.
1442. **Inspect actual metadata**: confirm the selected model and use only its exposed dimensions, measures, hierarchies, time fields, currencies, and comparison categories. Never invent a field because it would be useful for a proposed chart or KPI.
1453. **Design at the story layer**: define pages, widgets, filters, selections, navigation, and supported story calculations. Label comparisons explicitly as actual-versus-budget, forecast, or another available category.
1464. **Implement safely**: before saving, verify that the current SAC area is Story Designer rather than Modeler. Keep common filters and dependent-widget interactions read-only and non-destructive.
1475. **Verify or hand off**: validate page and widget readiness with `sap-sac-test-automation`. If authenticated tenant control is unavailable, follow `sap-browser-automation` and the local `references/edge-cdp-control.md` recovery path. If access still fails, do not claim that the story was created; provide the complete story specification for manual execution or a later connected session.
148
149### Read-Only Story Contract
150
151When the model must not change, the following are allowed:
152
153- create or edit story pages, charts, tables, KPI cards, filters, navigation, and story-layer calculations supported by SAC;
154- rename story objects and save the story;
155- inspect model metadata and perform read-only validation.
156
157The following are forbidden without explicit scope and approval:
158
159- editing model dimensions, measures, properties, connections, calendars, allocations, or settings;
160- creating model-level calculated measures or changing master data, roles, or permissions;
161- publishing planning versions, executing data actions, changing locks, or writing back planning data.
162
163If a required field or measure is not exposed by the model, omit the dependent widget and record the omission. Do not change the model to make the design fit.
164
165### Implementation-Ready Handoff
166
167When tenant interaction is blocked, return a usable specification containing:
168
169- story purpose, audience, data source, and confirmed model metadata;
170- page-by-page widgets using only resolved fields;
171- filters, comparison semantics, selections, and drilldowns;
172- omitted widgets or unresolved fields with the reason for each;
173- read-only safety constraints and the verification evidence still required.
174
175## Large Reference Search Routing
176
177Search large OSE API references with `rg` before opening them. Use patterns such as `rg -n "class Chart|interface DataSource|enum Feed|setDimensionFilter|getPlanning|PlanningModel" references/ose-api-*.md`, then read only the matching section.
178
179- Use `references/ose-api-datasource.md` for DataSource, DataAction, DataBinding, DataLocking, DataChangeInsights, and result-set methods.
180- Use `references/ose-api-chart-viz.md` for Chart, Table, GeoMap, RVisualization, ValueDriverTree, feeds, and visualization APIs.
181- Use `references/ose-api-planning-calendar.md` for Planning, PlanningModel, versions, calendars, data actions, and planning workflows.
182- Use `references/ose-api-application-core.md` for Application, PageBook, Panel, Popup, Widget, and lifecycle or container APIs.
183- Use `references/ose-api-types-enums.md` for enum/type lookup when a method signature mentions `Feed`, `Layout`, `NumberFormat`, `VariableValue`, or other SAC-specific types.
184- Use smaller `references/api-*.md` files first for Analytics Designer unless the user explicitly says Optimized Story Experience.
185
186## Quick Start
187
188### Script Editor Access
189- **Analytics Designer**: Edit mode → Select widget → Scripts tab
190- **Optimized Story Experience**: Advanced Mode → Select widget → Add script
191
192### Basic Script Structure
193```javascript
194// Event handler example (onSelect on Chart_1)
195var selections = Chart_1.getSelections();
196if (selections.length > 0) {
197 var selectedValue = selections[0]["Location"];
198 Table_1.getDataSource().setDimensionFilter("Location", selectedValue);
199}
200```
201
202## Core APIs
203
204### DataSource API
205Access via `Widget.getDataSource()`. Key methods:
206- `getMembers(dim, {accessMode: MemberAccessMode.BookedValues})` - Get dimension members efficiently
207- `getResultSet()` - Cached data access (preferred over getData())
208- `setDimensionFilter(dim, value)` - Apply filters
209- `setRefreshPaused(true/false)` - Batch multiple operations
210
211### Planning API
212Access via `Table.getPlanning()`. Key operations:
213- `getPublicVersion()` / `getPrivateVersion()` - Version access
214- `publish()` - Submit private to public
215- `copyFromPublicVersion()` / `copyToPublicVersion()` - Data copy
216- `setLock(true/false)` - Data locking
217
218### Widget APIs
219- **Charts**: `addMeasure()`, `addDimension()`, `getSelections()`
220- **Tables**: `addDimensionToRows()`, `setZeroSuppressionEnabled()`
221- **Containers**: Panel, TabStrip, PageBook for layout
222
223### Application Object
224Global utilities:
225- `Application.showBusyIndicator()` / `hideBusyIndicator()`
226- `Application.showMessage(type, text)`
227- `Application.getUserInfo()` / `getInfo()`
228
229## Performance Best Practices
230
2311. **Minimize Backend Calls**
232 ```javascript
233 // Use getResultSet() (cached) instead of getMembers() (backend)
234 var data = ds.getResultSet();
235 ```
236
2372. **Batch Filter Operations**
238 ```javascript
239 ds.setRefreshPaused(true);
240 ds.setDimensionFilter("Dim1", value1);
241 ds.setDimensionFilter("Dim2", value2);
242 ds.setRefreshPaused(false); // Single refresh
243 ```
244
2453. **Keep onInitialization Empty**
246 Defer heavy operations to lazy loading or first interaction.
247
2484. **Use BookedValues for Members**
249 ```javascript
250 var members = ds.getMembers("Dim", {accessMode: MemberAccessMode.BookedValues});
251 ```
252
253## Debugging
254
255### Console Logging
256```javascript
257console.log("Debug:", myVariable);
258console.log("Selections:", JSON.stringify(Chart_1.getSelections()));
259```
260
261### Browser DevTools
2621. Press F12 → Console tab
2632. Filter by "Info" type
2643. Add `?APP_PERFORMANCE_LOGGING=true` to URL for timing
265
266## Bundled Resources
267
268**Reference Files** (66 files):
269- Core APIs: `references/api-datasource.md`, `references/api-widgets.md`, `references/api-planning.md`
270- Advanced: `references/api-calendar-bookmarks.md`, `references/api-advanced-widgets.md`
271- Best Practices: `references/best-practices-developer.md`, `references/best-practices-planning-stories.md`
272- Language: `references/scripting-language-fundamentals.md`
273- Q2 2026-relevant API updates: `references/whats-new-qrc2-2026.md`, `references/whats-new-2025.23.md`, `references/chart-variance-apis.md`
274- Browser runtime triage: `references/edge-cdp-control.md` for SAC-specific boundaries; use shared `sap-browser-automation` for authentication, Edge/CDP setup, `DevToolsActivePort`, target selection, and recovery
275- **OSE API (Q2 2026, v2025.20)** — complete method/parameter/return documentation:
276 - `references/ose-api-application-core.md` — Application, PageBook, Panel, Popup, Widget (15 classes)
277 - `references/ose-api-widgets.md` — Button, Dropdown, InputField, Slider, Switch, Text, TextArea (15 classes)
278 - `references/ose-api-datasource.md` — DataSource, DataAction, DataBinding, DataLocking, DataChangeInsights (39 classes)
279 - `references/ose-api-chart-viz.md` — Chart, Table, GeoMap, RVisualization, ValueDriverTree (20 classes)
280 - `references/ose-api-planning-calendar.md` — Planning, PlanningModel, all Calendar classes (54 classes)
281 - `references/ose-api-filtering-selection.md` — FilterLine, FilterValue, Selection (11 classes)
282 - `references/ose-api-utilities.md` — BookmarkSet, MemberInfo, DimensionInfo, Timer, NavigationUtils (37 classes)
283 - `references/ose-api-types-enums.md` — All enum types: Feed, Layout, NumberFormat, VariableValue (70 classes)
284
285**Templates** (56 patterns):
286- `templates/common-patterns.js` - 40 general scripting patterns
287- `templates/planning-operations.js` - 16 planning-specific patterns
288
289## Official Documentation
290
291- **Analytics Designer API**: https://help.sap.com/doc/958d4c11261f42e992e8d01a4c0dde25/release/en-US/
292- **Optimized Story Experience API**: https://help.sap.com/doc/1639cb9ccaa54b2592224df577abe822/release/en-US/
293- **SAC Documentation**: https://help.sap.com/docs/SAP_ANALYTICS_CLOUD
294- **What's New Q4 2025**: https://help.sap.com/docs/SAP_ANALYTICS_CLOUD/00f68c2e08b941f081002fd3691d86a7/c96a267c5da04fff90bb55313ee9f77c.html
295
296---
297
298**SAC Version**: Q2 2026 (2026.8) | **API Version**: 2025.20 (OSE Q2 2026)