Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
DataDeploy question
System
Hi...I'm working on a workflow which sends a DCR to approval and once it's approved deploys to the user-defined database schema using Datadeploy. My problem is:
1. Is it possible to deploy only selected DCRs to the database.
2.Is there a way to check whether the attached file is a DCR or a static html(i suppose from DCR's EA)?
3.Can i use author_submit_dcr_0.ipl script for my case?
4. I've a oracle database table with 3 fields title, paragrapg and image.
Thanks....
Find more posts tagged with
Comments
iwovGraduate
1. Yes. You can run iwdd.ipl from your workflow externaltask. (Assuming you have not configured DD in DAS mode). Refer to DD Admin guide for configuration files.
2. From an external task, you can run iwextattr to find out if the attatched file is a DCR.
3. Not sure.
4. What is your question ?.
Migrateduser
How do i mention the DCR name in iwdd command? I dont see any such parameter in the documentation. In my case DD is not configured to use DAS.
I am deploying to a user-defined schema of 3 columns. Does this affect the ddconfig file?
haplo
Oki I would try to do it simple...
1. yes and no...there is a possibility to use a regex in the _dd.cfg file...something like :
<filter name ="dct_only">
<keep>
<field name="path" match="templatedata.*data/mydcr" />
</keep>
</filter>
and put <filter use="dct_only" /> in your deployment configuration.
2. yes
my $attrib = qx(/iwenv/iw-home/bin/iwextattr -g TeamSite/Templating/PrimaryDocumentType myfile); it return MyCategory/MyTemplateName
3.never used
4.if you use iwdd.ipl it must refer to a _dd.cfg,that's where you must define your fields...the table and the fields will be created by iwdd.ipl using your config file