Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

DarrenBiz
DarrenBiz
Offline

Badges

Badges
28

Accepted Solutions

Accepted Solutions
37

Likes Received

Likes Received
68

Posts

Posts
205

Discussions

Discussions
47

Questions

Questions
158

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by DarrenBiz
Customize the badges you want to showcase on your profile
Re: Using long text datatype in delivery - Adobe Campaign Standard 10-02-2019
annesophiecy​ - i am having the same issues and I have tried explicitly casting the memo field using a PostgreSQL command (memo)::VARCHAR but it didn't seem to fix the issue. Can you help with how you did the actual conversion of memo (TEXT) type to String using a SQL function?

Views

5.4K

Likes

0

Replies

1
Re: aem forms license and installation - Adobe Experience Manager Forms 06-02-2019
@adobeaspirant - no you cant. That version of forms that comes pre-installed with AEM Quickstart is a "prevew" version and is missing most of the required functionality for the form to work properly. We have actually had a few clients mistakenly think that they had adaptive forms and could do stuff with it because "we can build forms in the UI so it must work..."

Views

2.6K

Like

1

Replies

0
Re: AAM segment creation based on MCID failing - Adobe Campaign 03-12-2018
Ok I found the solution. For some reason, this works individually or if you fork the input into each activity instead of running them in series.It would be great to know why this works and the other doesn't but i suspect it's "working as designed"

Views

2.2K

Likes

0

Replies

0
AAM segment creation based on MCID failing - Adobe Campaign 02-12-2018
We can create and update segments based on Declared Id fine. We did find an issue (feature?) where a delivery adds a foreign key (@broadLog-id) to the target schema that you have to remove to get Declared Id segment update working. Once you remove that, the Declared Id segment updates fine.However, we want to also create an identical AAM segment based on MCID for testing, but AC keeps throwing the error: There is nothing in any documentation showing how to get MCID segments updating and the data...

Views

2.4K

Likes

0

Replies

1
Re: Trigger statistics graph incorrect? - Adobe Experience Cloud Core Services 21-11-2018
Yes we are still seeing this behaviour. Incident 181014-000111 has been logged for this issue

Views

5.4K

Likes

0

Replies

0
Localise date formats - Adobe Audience Manager 10-10-2018
Currently the date formats default to MDY format and there is no way to change this. Since most of the world uses DMY format [1] it doesn't make sense to have MDY as a fixed format. It's confusing especially with ambiguous dates (e.g. 10/4/2018 could be 10th April or 4th October).There should be a localisation option for your user profile that should format the date in the UI either by auto detection or fixed profile-based localisation.At the very least it should auto-detect based on user locale...

Views

3.6K

Likes

17

Replies

0
Re: AEM forms designer // Cannot import XSD - too many resolved schema nodes - Adobe Experience Manager Forms 02-10-2018
Can you provide a bit more information? e.g.Where are you seeing this error? Workbench? Designer?How many unique nodes are actually in your schema?Is your schema well formed? [1]Does it contain any recursive nodes? [2][1] W3C XML Schema (XSD) Validation online [2] IBM Knowledge Center

Views

1.8K

Likes

0

Replies

0
Trigger statistics graph incorrect? - Adobe Experience Cloud Core Services 01-10-2018
I am looking at the graph provided by the Triggers page and it is showing totally incorrect data represented on the graph. The number is showing correctly but the graph in no way represents the number or dates of triggers fired. This is the same for all triggers.Is this expected behaviour?

Views

5.8K

Likes

0

Replies

2
pipelined status page? - Adobe Campaign Standard 03-09-2018
I am trying to troubleshoot Triggers and the pipelined process using the help at How to use Experience Cloud Triggers with Adobe Campaign Classic It talks about a "pipelined status page" (No triggers are retrieved > Step #4 Look for errors in the pipelined status page. trigger-discarted, trigger-failures should be zero.)Can you tell me where I find this status page in the client UI?

Views

5.9K

Likes

2

Replies

6
Re: How to add values to a dropdown upon initialize - Adobe Experience Manager Forms 26-08-2018
The DropDownList can be programmatically populated in the initialise event using an array of key=value pairs [1] on the items property [2]. So for your particular example, to populate the list starting at the current year and running for 5 years would look something like:(on the initialise event)var currentYear = (new Date()).getFullYear();this.items = [];for (var i = 0 ; i < 5 ; i++) { this.items.push(i + "=" + currentYear-- + " Item Name");}The above code will add 5 entries to the drop down li...

Views

9.8K

Likes

0

Replies

0