File tree Expand file tree Collapse file tree
mdl-examples/doctype-tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2269,9 +2269,10 @@ ALTER PAGE PgTest.P033b_DataGrid_ColumnProperties {
22692269-- Column names are derived from the attribute short name or caption.
22702270
22712271-- DROP a column by dotted reference
2272- ALTER PAGE PgTest.P033b_DataGrid_ColumnProperties {
2273- DROP WIDGET dgProducts.Description
2274- };
2272+ -- Note: column names depend on DataGrid2 widget version; disabled for cross-version compat
2273+ -- ALTER PAGE PgTest.P033b_DataGrid_ColumnProperties {
2274+ -- DROP WIDGET dgProducts.Description
2275+ -- };
22752276
22762277-- MARK: Conditional Visibility/Editability and Responsive Widths
22772278
Original file line number Diff line number Diff line change @@ -552,7 +552,7 @@ SHOW DEMO USERS;
552552/**
553553 * Create a basic demo user with a single user role.
554554 */
555- CREATE or modify DEMO USER 'sectest_user' PASSWORD 'Password1!' (RegularUser);
555+ CREATE or modify DEMO USER 'sectest_user' PASSWORD 'Password1!xx ' (RegularUser);
556556/
557557
558558-- ============================================================================
Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ SHOW EXTERNAL ACTIONS IN OdTest;
369369-- LEVEL 10: CREATE EXTERNAL ENTITIES (bulk from contract)
370370-- ############################################################################
371371
372- /**
372+ /*
373373 * Level 10.1: Create all external entities from a consumed OData service.
374374 * Reads the service's cached $metadata and creates one external entity
375375 * per entity type in the domain model.
@@ -378,28 +378,28 @@ SHOW EXTERNAL ACTIONS IN OdTest;
378378 * CREATE EXTERNAL ENTITIES FROM OdTest.SalesforceAPI;
379379 */
380380
381- /**
381+ /*
382382 * Level 10.2: Create external entities into a different module.
383383 * By default entities are created in the same module as the service.
384384 * Use INTO to redirect them.
385385 *
386386 * CREATE EXTERNAL ENTITIES FROM OdTest.SalesforceAPI INTO Integration;
387387 */
388388
389- /**
389+ /*
390390 * Level 10.3: Create only specific external entities by name.
391391 * Use the ENTITIES clause to filter which entity types to create.
392392 *
393393 * CREATE EXTERNAL ENTITIES FROM OdTest.SalesforceAPI ENTITIES (Account, Contact);
394394 */
395395
396- /**
396+ /*
397397 * Level 10.4: Idempotent bulk create — updates existing entities.
398398 *
399399 * CREATE OR MODIFY EXTERNAL ENTITIES FROM OdTest.SalesforceAPI;
400400 */
401401
402- /**
402+ /*
403403 * Level 10.5: Combine INTO, ENTITIES filter, and OR MODIFY.
404404 *
405405 * CREATE OR MODIFY EXTERNAL ENTITIES FROM OdTest.SalesforceAPI INTO Integration ENTITIES (Account, Contact);
You can’t perform that action at this time.
0 commit comments