If you just want to set the initiatedDate baed on workflow initiation, you can get the start time through workflow API. https://developer.adobe.com/experience-manager/reference-materials/6-4/javadoc/com/adobe/granite/workflow/exec/Workflow.html#getTimeStarted--
@tushaar_srivastava who is going to set the workflow end date- is that author through workflow dialog or you need to set through programatically when the workflow is initiated?
Also, just to understand better, can you share more details about the workflow steps like when you set end date, should th...
If you want to complete the step automatically after certain time, you can advance workflow step which completes the workflow:
// querying work items
WorkItem[] workItems = wfSession.getActiveWorkItems();
// getting routes
List<Route> routes = wfSession.getRoutes(workItem);
// completing or advancin...
I think we don't have any OOTB feature to do the needful. You need to write custom code to export content fragments content using model exporter or Asset API. Please check below.
https://experienceleague.adobe.com/docs/experience-manager-65/assets/extending/assets-api-content-fragments.html?lang=...
You can create Forms based on JSON schema, please refer below:
https://experienceleague.adobe.com/docs/experience-manager-learn/forms/querying-submitted-data/part1.html?lang=en
https://experienceleague.adobe.com/docs/experience-manager-learn/forms/querying-submitted-data/part2.html?lang=en
hope th...
According to the documentation Java 8 and 11 are officially available. In terms of AemAACs latest Java 11 is recommended. So if you can't run AEM in your local, here is one option:You can install both Java 8 & 11 in your local machine and switch java versions based type of AEM you need to run.
Ste...
Hi @nim11
Please check the doc https://github.com/AdobeDocs/experience-manager-64.en/blob/main/help/sites-developing/customizing-content-fragment-model-data-types.md which helps you to overlay data types for the CF model.