Greetings,
I have a model that takes Material numbers <200 numbers, and uses the dynamic input tool to pass them through a HANA model that results in the bill of materials for each of the materials. The output is only around 14k rows of data.
The HANA model requires Material and plant as input parameters that is why I'm using the
Running all material numbers at once took 3:13 hours attached screenshot. Attempted to break up the materials and run in sets of 5 and have 15 simultaneous dynamic inputs pass them though the HANA model. Its been over an hour and only at 25% done.
Manually running one part number in Alteryx connected to the HANA model takes Designer x64 Finished running in 1:31 minutes is there an Alteryx tool that could help expedite?
Is there something else that I can try? The scheduler times out after 60 minutes and I need the extract to be used in other reports.
This is the SQL for the HANA model
SELECT
"CA_SORTKEY",
"CA_MATERIAL_TOPLVL",
"CA_MATERIAL",
"MAKTX",
"PR_TYPE",
"SPR_TYPE",
"ISSUING_PLANT",
"PHANTOM",
"SCHGT",
"MTART",
"DISLS",
"DATUV",
sum("EXT_QTY") AS "EXT_QTY",
"UOM",
sum("PLIFZ") AS "PLIFZ"
FROM "_SYS_BIC"."Cubic.Dashboards.MFG_STATUS.ReportingViews/CR_BOM_EXPLOSION_WO_BUY"('PLACEHOLDER' = ('$$IP_PLANT$$',
'2221'),
'PLACEHOLDER' = ('$$IP_MATNR$$',
'70006-3013-E-R007!'))
GROUP BY
"CA_SORTKEY",
"CA_MATERIAL_TOPLVL",
"CA_MATERIAL",
"MAKTX",
"PR_TYPE",
"SPR_TYPE",
"ISSUING_PLANT",
"PHANTOM",
"SCHGT",
"MTART",
"DISLS",
"DATUV",
"UOM"