Hi friends!
I'm trying to use calculation view made by SAP BOMExplosionQuery in my custom graphical calculation view but this SAP view has input parameter, so I'm getting an error.
How can I use this SAP View in my custom view? I'm trying to avoid script view 'cause I don't wanna use a loop lace.
Thanks for any help.
You should define input parameter for yous custom view and map on wrapped view parameter.
When calling custom view pass parameter via => expression, like:
SELECT * FROM "<package>::VIEW_NAME" (PLACEHOLDER.\"$$PARAM_NAME$$\" =>'<param value>')";
Add a comment