Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] TESBProviderRequest OnSubjobOk not executing?

Hello,
tESBProviderRequest -> tXMLMap -> tESBProviderResponse
|
OnSubjobOk/OnSubjobError
|
tWarn
Why OnSubjobOk/OnSubjobError is not executed? How can I achieve such a behaviour?
Thank you,
Viktor
Labels (3)
10 Replies
Anonymous
Not applicable
Author

Only runIf is feasible, all onComponentOk's are executed resulting in multiple executions of "finally" block.
Simplified Example:
tESBProviderRequest -> tXMLMap -> tESBConsumer -> fault -> tXMLMap -> tESBProviderFault -> runif -> logrow
tESBConsumer on success continues:
tXMLMap2 -> tESBConsumer2 -> fault -> tXMLMa2p -> tESBProviderFault2 -> runif -> logrow

With oncomponentOk all logrows executed.
Viktor