Custom workflow for manual merch projects

Hi,
Having issues in configuring custom workflow.
In ATG10.0.3 created a custom workflow(editCommerceAssets.wdl) & configured with catalog import job (importing thru spreadsheet & creating a Merch project).This works successfully.
I am trying to configure this custom workflow for manually created projects in BCC.
In the following files I tried replacing commonWorkflow.wdl to editCommerceAssets.wdl.
<localconfig>\atg\commerce\web\assetmanager\taskConfiguration.xml
<localconfig>\atg\commerce\web\workflowActivities.xml
But getting this error in pub console:
10:13:23,195 WARN [ActivityManager] The workflow activity with ID /Common/commonWorkflow.wdl has been registered multiple times for the same workflow. Please verify your workflow
configuration as this is not allowed.
10:14:40,453 ERROR [ApplicationManager] There is no application configured with ID '/Common/commonWorkflow.wdl'.
Any recommendations?
Thanks!
Mani
Edited by: user11263665 on Oct 17, 2012 9:38 AM

It is possible that the workflow has already been registered in db before you modified workflowActivities.xml.Did you try cleaning up workflow tables and restart the server??
epub_workflow_info, epub_coll_workflow, epub_ind_wf,epub_wf_server_id tables
Make sure there is only one entry for each workflow in epub_workflow_info. If there are multiple entries, then it may be coming from 2 different places and you need to disable one of them. Whenever you create custom work flow, copy the existing workflow and modify it and give it a different name. If you are importing programmatically, you really dont need to configure it in taskConfiguraiton.xml ( as it corresponds to settings related to which item-descriptors, tabs, security in BCC gui).
-karthik

Similar Messages

  • Debug background task in custom workflow for PO change

    Hi,
    We are on ECC 6.0 EHP7.
    I have a custom workflow for PO object type(delegated to std object type BUS2012).
    There is a background task which has some custom code written and I need to debug this code.
    Can someone please let me know how to debug a background task?
    Thanks.

    As suggested by ronen we can debug through swo1 but we have to pass values manually for importing parameters, by using sm50 also we can do debug and there is one more way  to debug
    if its custom task change background  task to fore ground and change business object method also change it to fore ground and activate the work flow.
    now change any  po  then it will stop at that step now take that work item id in swi1 and go to swia and execute after putting break point in that method of business object.
    But best way to debug  through infinite loop i.e sm50.
    suri

  • Could anyone show me the customizing navigation for Manual Accruals?

    Hi All,
    Could anyone show me the customizing navigation for Manual Accruals?
    Thanks

    Hi,
    These tow links are very use full not only for manual accrual but also new ear of Accrual Engine.
    https://websmp110.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700006312672006E
    https://websmp110.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000264642007E
    Regards
    Javed

  • Custom Workflow for Shipping Execution

    Hi All,
    We have a requirement to cater approval on issuance i.e. at the time of shipping execution. For this purpose we have used Oracle Workflow Builder to cater the requirement. The workflow is working fine for approval but not for rejection. If we approve the shipping execution, the transaction is working fine but if we rejects it, the shipping transaction got stuck with exception and if we resolve the exception manually, we are unable to re send it for approval or even shipping.
    I will be grateful if anyone can help me out and advise me on how to setup of workflow for rejection.
    Thanks in advance.
    Regards,
    Zulfiqar Ali Mughal

    It is possible that the workflow has already been registered in db before you modified workflowActivities.xml.Did you try cleaning up workflow tables and restart the server??
    epub_workflow_info, epub_coll_workflow, epub_ind_wf,epub_wf_server_id tables
    Make sure there is only one entry for each workflow in epub_workflow_info. If there are multiple entries, then it may be coming from 2 different places and you need to disable one of them. Whenever you create custom work flow, copy the existing workflow and modify it and give it a different name. If you are importing programmatically, you really dont need to configure it in taskConfiguraiton.xml ( as it corresponds to settings related to which item-descriptors, tabs, security in BCC gui).
    -karthik

  • How to skip the Analysis level in the workflow for manual investigation?

    Hi Experts,
    My requirement is to bypass the Analysis level for manual investigation in the workflow template number WS15100038. I tried to set the 'skip first decision step?' step as true to bypass the analyst level by setting the container element  "IMMEDIATE_LEVEL1" as 'X' then I created a claim but it still went to the analysis level . Not sure what i'm missing. Help, pls!

    Hello !
             Take the copy of the standard workflow and delete the analysis step(container step too).
             Now save and activate the workflow.By this way, you will able to accomplish the requirement.
    Regards,
    S.Suresh

  • Custom Workflow for sending Remainder mail in MS CRM 2013/2015 online

    Hi All,
    We have a requirement to send a remainder email before 5 days,3 days and on the same day of the M/TC date in lead form. To achieve this we tried using Custom Workflow. Below is the logic tried but in the highlighted line
    not able to retrieve the "M/TC date" value, this results in no output.
    Kindly suggest where we are going wrong or a best approach to do this.
    Parameters:
            [RequiredArgument]
            [Input("InputEntity")]
            [ReferenceTarget("lead")]
    public
    InArgument<EntityReference>inputlead
    { get;
    set; }
            [Output("TaskCreated")]
            [ReferenceTarget("task")]
    public
    OutArgument<EntityReference>
    taskCreated { get;
    set; }
    code:
                try 
                Entity lead
    = (Entity)service.Retrieve("lead",
    context.PrimaryEntityId, new ColumnSet(newString[]
    { "new_mtcdate" })); //  (unable to
    retrieve the mtcdate)            
                      Guid leadId
    = this.inputlead.Get(executionContext).Id;
                    if(lead.Contains("new_mtcdate"))
                      {  DateTime date
    = DateTime.Now;
                          DateTime mtcdate
    = (DateTime)lead["new_mtcdate"];
                          TimeSpan elapsed
    = date.Subtract(mtcdate);
                          double days
    = elapsed.TotalDays;
                          Entity task
    = new Entity();
                          task.LogicalName = "task";
                          if (days
    == 5)
                          {task["subject"]
    = "Five days more for the Meeting";
                              task["regardingobjectid"]=new EntityReference("lead",leadId);
                               Guid taskId
    = service.Create(task);
                            this.taskCreated.Set(executionContext,new EntityReference("task",
    taskId));}
                          if (days
    == 3)
                          {task["subject"]
    = "Three days more for the Meeting";
                              task["regardingobjectid"]=new EntityReference("lead",leadId);
                               Guid taskId
    = service.Create(task);
                            this.taskCreated.Set(executionContext,new EntityReference("task",
    taskId));}
                          if (days
    == 0)
                          {task["subject"]
    = "Today you have Meeting";
                              task["regardingobjectid"]=new EntityReference("lead",leadId);
                               Guid taskId
    = service.Create(task);
                            this.taskCreated.Set(executionContext,new EntityReference("task",
    taskId));
    Regards, Rekha.J

    Hi,
    Try with replacing
    Entity lead = service.Retrieve("lead", context.PrimaryEntityId, new ColumnSet(new string[] { "new_mtcdate" }));
    also make it confirm, you are getting EntityId.
    Also check  Link

  • Custom workflow for Fiori Approve Timesheets

    Hello All,
    I am investigating complexity of adding custom workflow to Approve Timesheets.
    There is BADI SRA010_BADI_TIMESHEET_APV.
    Any experiences/advices  ?

    Hi Lukasz,
    How do you change approver using data from Ztable in the current system?
    If you are talking about workflow approver determination logic, it is a job for Workflow Engine and not for Fiori.
    Regards, Masa
    SAP Customer Experience Group - CEG

  • Custom Workflow for custom HCM form - reg

    Hi,
    We have a custom form designed and having a workflow for that. We have developed the workflow like any other workflow for appraisals for example or in SD. But here while test run of process we are getting error saying 'Work Item not found' though the work item is present in SWI1.
    We have below steps.
    Header
    Importing form container
    User Desicion (Approve/Reject)
    If approved update database.
    Can any one correct me if am wrong.
    Raj

    Hi,
    For workflows involving HCM forms, there some standard tasks which should be made use of:
    Task Group TG17900001: Components for HCM Processes & Forms
    Task Group TG17900002: Interactive Components
    Standard Task TS17900100: Edit Form
    Standard Task TS17900101: Approve Form
    Standard Task TS17900102: Form Is Edited Again by Author
    Standard Task TS04000018: Process PD Form
    Standard Task TS04000019: Approve PD Form
    Standard Task TS04000020: PD Form Is Edited Again by Author
    Workflow Template WS17900260: Save Form with Error Handling
    Workflow Template WS17900404: Draft for Process Start
    Workflow Template WS17900418: Forward: Process Start with Errors
    Task Group TG17900003: Background Components
    Standard Task TS17900106: Check Existence of PA Infotype
    Standard Task TS17900107: Check Form Data
    Standard Task TS17900108: Save Form Data
    Standard Task TS17900110: Import Field Value to WF Cont. Element
    You can use TS17900110, TS17900101/TS04000019 and TS17900107. Please make sure you read some documentation before you use these tasks.
    Let me know, whether this is helpful.
    Thanks,
    Sukumar.

  • Custom Workflow for User Requirment

    hi ,
    i am creating a workflow for which is custom .
    i have 1 module pool program where i have 7 fields.
    User can create the data and save it .
    once he save the Data the workflow should trigger.
    i have created a Z business object wherein i have created 4 key fields and 3 attributes according to data in the custom table
    the BO has no supertype. and created 1 event save
    now my question is where should i write the code for triggering the workflow on the save of the entries in the module pool program. and i am also i am responsible for showing the approver in the table after the decision is taken in workflow activtiy
    please suggest
    Thanks on advance
    Chitis

    Hi,
    Even i haven't worked on such requirement.
    I know how to trigger a workflow or start a workflow through customization.
    But i like to know in case of module pool programming where I am supposed to write the code?
    Whether in PAI or PBO or anywere else?
    Let us know.
    Thanks,
    Raj

  • Workflow for finishing DV project (G-nicer filter)

    Hi,
    Was wondering on the proper (i.e. smartest) workflow for finishing a DV project. Am I totally wrong in using these steps:
    1.) Change sequence settings from DV to an uncompressed format (8bit uncompressed?).
    2.) Put the chroma smooting filter (Nattress´ G-nicer seems to be the best for this purpose) as the very first filter onto all clips.
    3.) Colour correct so that each scene is uniform
    4.) Apply (if needed) film-effects filters (again Nattress´ film filter).
    Thanks for any input & advice.
    Quad G5, iMac G5 20", G4 QS 867mhz, iBook G4, Mac mini, and a dusty PB 190 Mac OS X (10.4.7) DSR-570, DSR-11, 2x24" Dell and some more toys.

    But wouldn´t it make more sense applying the chroma soften before the colour correction?
    BTW, I read an interesting post on Shane´s blog, suggesting to not convert the project into uncompressed before the very end of post. That way one enjoys more real-time effects.
    So, do you agree that this would make an o.k. workflow:
    1.) Apply Nattress´ G-nicer 1.1 onto all clips
    2.) Colour correct so that each scene is uniform
    3.) Apply Nattress´ film filter
    4.) Change sequence settings from DV to an uncompressed format (8bit uncompressed?)
    Would you recommend colour correcting after the film-filter or before?
    Again, thanks for your very helpful input.

  • Creating custom fields for manual entry and fields that gather data from Active Directory

    So I am no SQL developer but I am being asked to do this.. I've spent the last few days researching but cannot find anything related to my particular situation.
    I have made a copy of the following report to add or modify a few columns:
     Hardware 01A - Summary of computers in a specific collection
    So I have 2 questions:
    How do I create a field that will search the "Managed By" tab in the Computer Properties window in Active Directory.
    How do I create a field that can be manually updated for example: "Date Deployed" or "Deployed By: Analyst"
    I understand I need edit this in SQL report builder and think I know how to create the columns. I believe all I am really asking is.. What are the SQL statements I need to write in order to get this to work?
    I'm sure it's not as cut and dry as I hope it to be so I will be standing by to try to answer any further information that you will want to know.
    thanks!

    Before you can accomplish this you need:
    "Managed by" -attribute has to be added to your Active Directory System Discovery, more on this here: http://technet.microsoft.com/en-us/library/bb693618.aspx
    For "Date Deployed", I'd use a custom Tattoo script in your task sequence to "Tattoo" the installation info in the registry, after that I'd configure the Hardware Inventory to pick that from the registry, more on this here: http://ccmexec.com/2012/08/script-to-tattoo-the-client-registry-during-osd/
    and here: http://www.petervanderwoude.nl/post/reporting-about-the-all-the-different-os-deployment-versions-with-configmgr-2012/
    After those prerequisites, you can start working with SQL reports. More info here: http://myitforum.com/myitforumwp/2012/10/29/sccm-2012-reporting-for-dummies-creating-your-own-ssrs-reports/

  • Custom workflow for course registration

    Hi,
    I have an assingment to create list where items are courses and when new item is created you can give max participant value. List and columns are ok. (max participants(integer), current participants(integer), open/closed(choice), all participants(text)
    So this is what I want to do with workflow:
    When someone wants to join the course, person will click "Join course" button
    workflow starts and it will add +1 to 'current participants'
    workflow adds display name of person to column 'all participants'
    if 'current participants' is same as 'max participants' then course will change 'closed'
    I can use SP designer with workflow 2010 so is this impossible?
    I have possibility to use visual studio 2010 but i'm not very familiar with C# workflows.
    My biggest worries are that
    how to store all participants to one column (multiline text) with workflow
    how to display participants column only to admin users.
    Thanks for any help/suggestions.
    Antti Astikainen

    Hi Antti,
    I have done similar project in past and used only SharePoint Designer. Yes it is very much possible using SPD.
    how to store all participants to one column (multiline text) with workflow
    >> Maintain a multiline text column as you assumed and then just do
    attendee = CurrentItem:Attendee +";"+attendee
    how to display participants column only to admin users.
    >>   you can hide this column from default view or maintain a different list where course name(lookup)
    and this attendee (multi line) will be saved. You can add this multi line in master course list as well (depending on your design)
    Using SPD workflow you can update same list item / different list item / and it has many other action.
    For 'State Machine workflow' you may need VS.
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Advice on best workflow for large Motion project

    I am a part-time video editor/designer/motion graphics creator/etc. Normally, I work on projects with pieces no longer than 5 minutes, even if the projects themselves might be 30-40 minutes of total material--mostly video support for conferences and awards shows.
    Right now I am embarking upon a mark larger project--10 30-minute segments, each of which is 100% motion graphics. They all involve a speaker against a green screen for the entire segment with the motion graphics keyed in front of and behind him.
    We recorded this directly to hard drive in a studio that had a VT4 (Video Toaster) system, so the best Mac-compatible codec they could provide me for clean green-screening was full-resolution component video. This is giving me great keys, but I also have about 500 GB of raw footage.
    In this project, I need to first edit all the takes from each episode into a clean 30-minute piece, and then add the motion graphics. And this is where my question comes in. It seems to me FCP is much better for editing the raw video, but that Motion is where I want to do just about everything else. I need to somehow bring the video into Motion, because I want to create "real" shadows against my background from my keyed footage.
    When working with a long project, and with a full-resolution codec, what is my smartest workflow? I am trying to spend the least time possible rendering back and forth, and also avoid generating huge in-between files each step of the way. It seems that any way to approach it has plusses and minuses, so I want to hear from people who have been there which path gets me to my goal with the least hassle.

    I need to somehow bring the video into Motion, because I want to create "real" shadows against my
    background from my keyed footage.
    "Real shadows are only faked in Motion. You have many options including a simple drop shadow or a copy of your matte layer filled with a gradient and a gradient blur applied with a distortion filter so it appears to be projected onto the wall. Be sure to take the time to make this a template effect and to keyframe the shadow angle if the foreground subject moves.
    When working with a long project, and with a full-resolution codec, what is my smartest workflow? I
    am trying to spend the least time possible rendering back and forth, and also avoid generating huge
    in-between files each step of the way. It seems that any way to approach it has plusses and minuses,
    so I want to hear from people who have been there which path gets me to my goal with the least
    hassle.
    Well, you've got two conflicting interests. One, you have to sync the Motion work with the video of the keyed speaker and, two, you have to edit. But it seems to me that your planning must include lots of design work up front, media you can re-use or modify slightly, text formatting that can be precomped, a large stock of effects you will apply over and over again. Do all of this stuff first.
    You also want to explore working at lower rez through your planning and roughing stages. for instance, there's no reason to pull a full rez copy of your foreground into Motion if all you need to do is sync to his audio and get rough positioning. You can put him over black and export all of his clips using any medium to low rez codec at reduced frame rates and just use the Screen Blend Mode to drop him roughly onto your Motion projects.
    You'll get lots of advice over the next few days. If you're posting to other Motion or motion graphics forums, please do us all a favor and return someday to all of your threads and tell us what you did and what you learned.
    bogiesan

  • Help on FCP workflow for a shortform project shot on EX-1 with mixed media

    I am about to start the editing process on a project shot with the EX-1. It will be a recruiting video for students aimed primarily at DVD distribution and web video.
    It is a shortform project...about 15-20 minutes in duration. About 90% of the footage I am editing will be off the EX-1 (1080 24p). The other 10% is some HDV footage shot at 1080i at 29.97 and some NTSC 4:3 footage 29.97.
    I wanted to ask the best way to approach the project and get some forum input.
    There will no heavy duty video filters or manipulation. Some lower thirds to identify, etc.
    What would users suggest as the sequence settings for the editing timeline in FCP? (If it's a 24p XDCAM EX timeline (no transcoding for the EX-1 footage), then I worry about how FCP will drop frames on the HDV footage and the NTSC footage to make it 24fps). Would it be better to have a XDCAM timeline that is 1080 29.97i (and maybe that setting will better integrate all the footage? Drop everything into that timeline?
    Or should I convert all the raw footage to ProRes 422 before editing begins? If so, at what frame rate/format for the three types of material I have?
    This is my first foray into mixed media on the timeline...and that's why I am asking assistance on the best way to approach it. Trying to make for the least number of headaches!
    Thanks for any help you can offer...
    John

    NO no no no no no no no no no no no!!!!
    DO NOT USE ProRes 4444! Just because it has a higher number and higher data rate does NOT mean that it is appropriate for editing. What is it with people going "it is bigger, therefore it MUST be better." It isn't.
    Regular ProRes 422. Not HQ, NOT 444. 4444 is meant as an ANIMATION codec replacement for embedded alpha channel work, and HQ is for 10-bit and 2K workflows. The EX is an 8-bit codec, so ProRes 422 is the way to go.
    Lordy....
    Shane

  • Roles vs Workflow for manual update record issue

    I am sorry for taking your time but I need some HELP as we go life with MDM and there is still one open topic that is connected to workflow implementation. 
    Do you have maybe someone who can advice me a solution or workaround to solve this issue. See description below.
    We are using role based workflow (few of workflows triggered one by one depends on the task that needs to be performed)
    As agreed with our client the several users are not allowed to:
    Modify (add/remove) original records
    Start workflows
    Check out / roll back records 
    Our solution provides them with option to do any kind off modification on Check Out records, and that action is triggered as automatic result of import records.
    NOW a small issue appeared since the import from MDP is made based on a new rapport that does not have several fields that we where using to determinate what items from materials will change. 
    So the next idea was to do that manually since it happens only few times a year for more or less 10 items. And that is where the problems started.
    I want to have a small workflow that will do as follows:
    Check Out Record -> Allowed to make changes -> Send to the next step (Approval process will be started)
    but we do not want to allow them do Checkout record or add to job
    (It can be only acceptable if we can allow them to add to ONE of the workflows but not all of them)
    I tried also to use the trigger actions Record Update2 but Workflow checkout occurs after record update (update applied to original record) so that is not applicable to, as since we want to keep original data in case someone rejects the new changes (that way we can always go back to original records). I would rather need something like Record Import only without the import part (it checks out the record and only then it allows to do any changes). ;P
    If the description is not clear let me know I will try to “translate it to easier English”
    Hope to hear from someone soon 
    Aleksandra

    From reading your question, I gather the following:
    You would like for users to be able to edit a record, which will automatically trigger a workflow, and if it's rejected then it should roll back the changes.  However, the user should not be able to manually start the workflow, it must be started and launched automatically on record edit.  Does that sound correct?
    If so, then you may have an issue.  While an edit can be used to launch a workflow, the workflow is not geared towards approving that edit.  It's assumed that other changes will be made, and those changes are the ones that will be approved or rejected.  This seems a bit strange I know, and hopefully this issue will be addressed in future versions.  However, I think you're only alternative is to have the users be able to start their own workflows.  You can probably use a security role such that a user can't modify normal records, but can only modify records that are checked out to them.  Then you would have to modify your workflow such that it only contains one record at a time, this way the user would not be able to add multiple records to the workflow.
    Does that make sense?  I hope this helps.

Maybe you are looking for

  • How do I multiply an image and animate it in 3d space to create a shape?

    My boss has a small clip he would like me to make. He wants me to take an image (Its just a square image) and have it start in the center of the screen, and as it scales down and moves to one of the bottom corners (I've already got that part done) th

  • B2B PositionalFlatFile Inbound Operation

    B2B Experts, I am working on a scenario with B2B in which i would be receiving the file through B2B (inbound operation). The file is positional flat file, i have created the document guidelines (ecs) using the spec generator in oracle b2b editor and

  • MiniDP-HDMI-Onkyo TX-SR705 either audio or video

    Couldn't find the answer so I started a new topic. I bought Mosh's adpter MiniDP-HDMI and connected my Mac to Onkyo TX-SR705. I manage to get video through to my TV but no audio. When I set Onkyo's HDMI monitor off, also audio gets through but, of co

  • Trouble converting a catalog from Adobe Photoshop Album into Elements 9

    I have looked all over and found instructions for converting a catalog from Adobe Photoshop Album into Photoshop Elements 9, but it does not see my catalog?  I have tried selecting it by clicking "Find More Catalogs" and I select the folder containin

  • Can't format external HDD using terminal: Error: -69877: Couldn't open device

    Disk Utility won't format / erase Seagate Barracuda 2TB (ST2000DM001) - it is an internal drive but I connected it using a docking station via USB. The disk is brand new and unformatted. System indicates that it is S.M.A.R.T incompatible When trying