@gmahendra I don't think we have any tools to convert templates, first you need to convert the templates & components to editable templates structure manually and then you can use tools to migrate content pages with editable templates.
@Prashardan Please check below threads which has similar use cases:https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/how-to-store-a-specific-property-values-of-multifield-items-as/td-p/447312 https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/multifield...
@wei_lyu just couple of things to double check:1. Do you have GraphQL packages installed on the publisher instance as well?2. Did you also publish Content fragments before replicating the package?
could you please explain more about the use case why you want to retrieve the package etc?
If the requirement is just to sync between content between AEM instances, you can check below link to find various options:https://medium.com/globant/aem-content-synchronization-cb1e15b0c3f8
other option...
@SonuR1 You can try something like:1. Write logic in sling Model and generate JSON the way you want.
public String generateJSON(List<Page> faqs) { JSONArray faqSchemaObject = new JSONArray(); try { for(Page pagBean : faqs){ JSONObject faqItemObject = new JSONObject(); ...
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=...