I've uploaded all the tables that the ABAP reports generated, but now I need to use that tables to create the Data Model and hence be able to use the O2C apps. After installing the O2C app, it gives error as it cannot find the Activity Table. How can I create it? I thought this was automatically performed once the CSV files are loaded. Am I missing something?
Page 1 / 1
Hello Juan,
The activity table needs to be created in transformation statement.
Check if O2C app contain specific transformation (it sohuld done as one of the first ones), if not below you can find the code for the most basic one:
--Query No: 1
DROP TABLE IF EXISTS _CEL_ACTIVITIES;
-- Query No: 2
CREATE TABLE _CEL_ACTIVITIES (
"_CASE_KEY" VARCHAR(30)
,"ACTIVITY_EN" VARCHAR(100)
,"EVENTTIME" TIMESTAMP
,"_SORTING" INTEGER
);
Best Regards,
Mateusz Dudek
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.