Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 212 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Write Back Error in OBIEE 12.2.1
Answers
-
-
Hi,
Thanks for the reply. If you see my template above it has following line
INSERT INTO OBIEE_EMPLOYEE_WRITEBACK VALUES(obieewrite_seq.nextval,@{c1})
@{c1} so I am considering for numeric data type.
Thanks
Venkat
0 -
Finally Figured out the issue.
This one not working
INSERT INTO OBIEE_EMPLOYEE_WRITEBACK VALUES(obieewrite_seq.nextval,@{c1})
This one works.
INSERT INTO OBIEE_EMPLOYEE_WRITEBACK VALUES(obieewrite_seq.nextval,@1)
God and OBIEE Development team knows why .
Thanks
Venkat
0 -
The @{ C1 } syntax refers to COLUMN_ID of the XML in the ADVANCED TAB, for example @{c8557240790424dd0}
@1 syntax in your writeback, you refers to the position of the column @1 ( column 1), @2,.. @n.
If you use @1, i recommend to uncheck "MOVE COLUMNS", "HIDE COLUMNS" and "INCLUDE/EXCLUDE COLUMNS" because if your user moves some columns (change the position of the column), you could pass a different value, and your writeback will dont work.
0