내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Workflow to publish pages and nt unstructured nodes

Avatar

Level 4

Hi There ,

 I'm building a process step to be part of a workflow in which based on the pay load path , I need to active its peers and also some nt unstructured nodes pragmatically . I'm trying to use using Replicator  to achieve it .  

public abstract void replicate(Session paramSession, ReplicationActionType paramReplicationActionType, String paramString) . 

 My question is Am I using the best utility to achieve this use case  ? Also for nt unstructured nodes , if I give the path of the parent , will it automatically activate all its child nodes or do I need to loop and activate each node ?

I could have tried it myself as a PoC but have severe time constraints and though some one would have already tried it here . 

Thanks in advance

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 10

Activating the parent will activate its child nodes aswell.

Yes, replicate(session, replicationActionType, string) is the right way to activate the nodes !

원본 게시물의 솔루션 보기

2 답변 개

Avatar

정확한 답변 작성자:
Level 10

Activating the parent will activate its child nodes aswell.

Yes, replicate(session, replicationActionType, string) is the right way to activate the nodes !

Avatar

Level 4

Thanks for your reply, appreciate it.