My use case follows an idea I posted https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager-ideas/enhance-assetcompute-microservice-to-accept-alttext/idi-p/705880 Basically I am receiving asset creation events from Workfront and am creating assets into AEM using a runtime action. ...
I wrote a simple webaction and deployed to my workspace import { setGlobals } from "./common.mjs"; function main(params) { setGlobals(params); return { result: "Trigger runtime action successfully" }; } const _main = main; export { _main as main }; When I call the action from Postman, I only r...
When we subscribe to event journal using getEventsObservableFromJournal, does the subscriber WAIT for each event callback to complete before switching to next event? Say if 500 events are queued into the journal, and I invoke getEventsObservableFromJournal.Do ALL events get consumed parallel and 500...
Hi,I created a runtime web-action that ll fetch events from journal api like thisconst journalObservable = await client.getEventsObservableFromJournal(baseURL, journalOptions); journalObservable.subscribe( x => logger.log('onNext: ' + JSON.stringify(x)), // any action onNext event e => log...
I am writing a runtime webaction that ingests assets into AEM and updates content fragments. So I prepared a mock.json with 5000 asset inputs, call the webaction from Postman. This triggers async function that ll read mock.json, and executes for each asset. I was able to test successfully for ~2000...
i want to add app menu at admin commerce and i am fetching the app menu through adobe app builder , i followed the documention of admin-ui -sdk but after checking test connection it gives me empty menuitems in response
The administrator of my company has enabled me the corresponding permissions according to the documentation But Im not getting events showed in youtube demo These are my events And these ones are from youtube demo Link: https://www.youtube.com/watch?v=1oYpur9JSNI I noticed there are a few of the...
I have a requirement where I am supposed to get all the products from my PIM system and get the details of all the images used from AEM asset.Then use that information in AEM Asset.To fetch all the necessary product details i have to send thousand requests and it takes approximately 12 minutes. I cr...