この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Hello,
I am having 2 issues currently on AEM 6.4 when trying to integrate with Adobe Campaign Standard.
Issue 1:
There is no Adobe Campaign Profile page template available (I can't see where I can make this template available either). And the documentation I am following is : Creating Adobe Campaign Forms in AEM
Issue 2:
Looking at the Adobe Campaign Components documentation, the dialog for my Adobe Campaign Form components have the mapping field disabled:
I have searched through the forums, however the question that was raised did not get answered:
Issue while connecting AEM with Campaign Manager
Please help.
Thanks,
James
表示
返信
いいね!の合計
There are a few community pieces of community content that can help you:
An AEM/Campaign article -- Adobe Experience Manager Help | Integrating Adobe Experience Manager and Adobe Campaign Standard to ...
An Ask the AEM Community Experts - Scott's Digital Community: Ask the AEM Community Expert Nov Session: Best Practices for using Experi...
表示
返信
いいね!の合計
Hi James,
In AEM 6.4, there is no example AEM-Campaign Form Template.
However, it's very easy to create your own.
Steps:
1. Correct resourceSuperType
Make sure the page-component inherits from mcm/campaign/components/profile.
This is required for the servlets to get and save info
2. ContextHub-settings
Make sure the following meta-tag is located in the <head>
<meta id="campaignContextHub" data-register="true" />
3. Campaign properties
The jcr:content node must have the following properties
acMapping -> "mapRecipient" (v6/v7) or "profile" (acs)
acTemplateId -> mail
4. public example
Here a link to a example on a public-repo: https://github.com/Adobe-Marketing-Cloud/aem-adobecampaign-forms-sample
I hope this helps.
Regards
Varun mitra
表示
返信
いいね!の合計
Hi Varun,
Thanks for your reply, I have tried to create a page component and inherit from mcm/campaign/components/profile as per your instructions, however I cannot edit the template to allow components to be added into the page.
Upon further investigation, I see that mcm/campaign/components/profile inherits from foundation/components/page, which is the older version of the page component:
In AEM 6.4, the page component we are inheriting is core/wcm/components/page/v2/page and the page templates resides under /conf/<my-site>/settings/wcm/templates - which I think it is not compatible with the old page component.
After digging deeper, I think I just need to allow CTA-Lead-Form component category to continue the steps in Creating Adobe Campaign Forms in AEM .
The only remaining issue I am having is the Campaign Form components' dialog has the mapping field disabled:
And this is my page jcr:content node properties:
I have already checked out the Git sample project, but the structure seems to be in the older version of AEM...
Would you please kindly provide any pointers as to how to get this work in AEM 6.4?
Thanks,
James
表示
返信
いいね!の合計
Hi James,
If you have access to the system console, try to turn on the debug log for com.adobe.cq.mcm.campaign. In your case, you have to check if your campaign server is returning data for two jssp: amcGetDeliveryMetadata.jssp and amcGetDeliveryTemplate.jssp (you can find the request from the debug log).
Then you have to make sure your contextHub is including the metaData from campaign. To check this, in the chrome console on the page, try "window.top.ContextHub.getAllStores()", you should see "metadata".
Last, I think the value of acMapping should be mapReceipent.
Hope it helps.
R,
James
表示
返信
いいね!の合計
Hi jazhou,
How are you doing! Glad to see you respond to my post
Anyway, I have tried your suggestions, and here are the results:
Logging from com.adobe.cq.mcm.campaign:
And window.top.ContextHub.getAllStores() gives me:
I've also updated acMapping to mapRecipient:
But I still can't use the mapping field in the Adobe Campaign component.....
表示
返信
いいね!の合計
It seems you don't have metadata in your contexthub.
Can you please check if you have done the following in your page?
Make sure the following meta-tag is located in the <head>
<meta id="campaignContextHub" data-register="true" />
Also, try clean your session and login again. The campaign log should have something with amcGetDeliveryMetadata. This is to load the metadata for the template defined in acTemplateId(mail).
表示
返信
いいね!の合計
Hi jazhou,
I've tried to put that meta-tag in the head, however, due to how AEM author works, it is not putting it in the <head> in author mode:
It is under the author mode iframe of the page as per above.
I've even tried to put that meta-tag in the parent page component that my proxyPage inherited from and it is the same.
Since I am trying to author those Campaign components, what else can I do? I've also tried to restart my session, but I still don't see amcGetDeliveryMetadata in the logs (with debug log level).
表示
返信
いいね!の合計
Ok, finally have time to type in the solution I have.
Apparently, it is required (hard-coded) to use a page component that is either mcm/campaign/components/profile or a proxy page component from it.
So to get it working, I have to overlay it as /apps/mcm/campaign/components/profile and use my own proxy page component of core/wcm/components/page/v2/page:
/apps/mcm/campaign/components/profile --> /apps/<my-site>/components/structure/page --> core/wcm/components/page/v2/page
In summary, here are the steps to make it work (in 6.4 author):
After all that I can see the Adobe Campaign mappings available in the component dialog.
Next is to get it work in Publish...
I have been testing the Campagin form I created in Publisher as per:
However, I am not able to get the data to be saved to Adobe Campaign Standard.
I have enabled the logs for com.adobe.cq.mcm.campaign as well (passing the PKey of the profile as the encrypted primary key):
What is wrong with the setup? Should I be using something else besides PKey for the encrypted primary key?
表示
返信
いいね!の合計
"com.adobe.cq.mcm.campaign.profile.ProfileHelper Could not determine profile" expected 200, was 404...
Have you activated your campaign config? Is your publish able to connect campaign instance?
表示
返信
いいね!の合計
HI jazhou,
I have publish the campaign config into the publisher - tested the connection and it works.
But at the moment, I am trying to test it on author instance (in preview) since I am confident that it has been connected to campaign.
Can you please let me know what are the 3 empty values here:
in the cq-mcm-campaign jar file?
Thanks,
James
表示
返信
いいね!の合計
Just a reply to myself:
To work with Adobe Campaign Standard, this is the page property to be set instead:
acMapping -> "profile"
表示
返信
いいね!の合計
Hi,
is it really working with all these steps or you did something else too? I was not able to get the adobe campaign button in dialog working though i have tried all the mentioned steps. In browser console, i am getting window.top.ContextHub as undefined.
I have also struggled for sometime with the same issue. You can follow the steps in this blog post to get it working: https://medium.com/rewrite-tech/how-to-create-adobe-campaign-standard-acs-forms-in-aem-a31ffb1d81de
表示
返信
いいね!の合計