Hi community,
Can I pass input parameters for an H5 SDK mashup?.
Example:
User launches mashup through the PP200/B1 window. When mashup is opened, I want to display the purchase order number.Is it possible to do this?
Thank you for your answers
You just launch the SDK application with ordinary parameter syntax starting with ? and delimited by &: /mne/apps/searchitem?itno=xxx&cuno=yyyy
And then pick them up in the SDK solution like:
Like this example in ISO :m3ideas.org/.../
Thanks PRavnborg, it working for me
I started the mashup with this code in an H5 script that allows to add a button and when clicking on the button, it executes this code :window.open(M3_ENV+'apps /Name_MASHUP/? ORNO== ORNO);
the mashup is launched but in a new window.the need here, can I launch it in a window in H5 (without new pages)
Thanks