Customized Bulk Action Form

I saw that there are multiple unanswered questions about this, so I am assuming the answer is no but wanted to give it a shot. Is there any way to customize the Bulk Action form besides building an entirely different workflow? For example, I want to remove certain fields and add a checkbox which would save a variable into the workflow. I see bulkop.jsp, which instantiates BulkOpForm, so I gather it's not a form that can be modified. Is there maybe a point where I could merge into the standard bulk process after giving my own frontend? I'd rather not resort to reimplementing the file parsing and all that.

If bulk action is launched by user who has 'Customer - Tabbed User Form' as User Form, this form will be applied
You can specify at your form what workflow to launch. Just add field
<Field name='viewOptions.Process'>
<Expansion>
<s>Customer - Update Workflow</s>
</Expansion>
</Field>

Similar Messages

  • Create Organization & assign forms bulk action

    How can you create organizations by a bulk action,
    Is it possible to assign userform & viewuserform along with this bulk action
    As well as is it possible to assign a admin user to each Organisation

    i figure it out by myself, Thought would be of use to someone if required.
    created an xml file .... like below, and import it using the "Configure"- "ImportExport File " from the Administrator UI.
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE Waveset PUBLIC 'waveset.dtd' 'waveset.dtd'>
    <Waveset>
    <ObjectGroup name='OU one'> <MemberObjectGroups> <ObjectRef type='ObjectGroup' id='#Top#' name='Top'/> </MemberObjectGroups> </ObjectGroup>
    <ObjectGroup name='OU two'> <MemberObjectGroups> <ObjectRef type='ObjectGroup' id='#Top#' name='Top'/> </MemberObjectGroups> </ObjectGroup>
    <ObjectGroup name='OU three'> <MemberObjectGroups> <ObjectRef type='ObjectGroup' id='#Top#' name='Top'/> </MemberObjectGroups> </ObjectGroup>
    </Waveset
    if u need to add approvers for any of these OUs you can add the tag "Approver" and you can assign forms too along with this .
    The best way to do this is create a test OU with all that you need like approver, form etc...
    and use the same syntax.
    If multiple OUs are created make sure you have the <Waveset> tag in there....
    Thanks NSankar

  • What workflow runs during bulk action 'update only Lighthouse' is ran?

    Hello,
    We were trying to set some deferred tasks via our bulk action list. To do this we are running Updates, and passing a parameter that is noticed by our custom Update WF. The custom update workflow then sets the deferred tasks. This takes a while to execute however, and we have about 30,000 accounts we want to update. To try and speed it up, we were playing around with the option to update only the lighthouse account. However, when this runs, it does not fire our custom Update WF. So.... What workflow is it firing off? Can this workflow be modified?
    Thanks,
    Jim

    Try using the BPE workflow debugger to identify the workflow that runs. Set a break point in the user form assigned to the administrator you are running the bulk action as and proceed step by step. You should get the workflow being executed.

  • How to get bulk action to update resource

    I have to update some users data in a particular resource. I'm attempting to add a location to their user object, the resource and their waveset info via a bulk action script (which I have very little experience with). Currently I have it set up so the bulk action starts in a form which calls a rule and then a workflow. I've been able to get it to update the user object and the waveset data, but I can't get it to write to the resource. (In this case the resource is a simulated resource - a file on the file system). I've tried everything I can think of but I'm missing some key piece in getting the resource updated. I may not need the rule, but I couldn't get the resource to update from my workflow, so I decided to try a rule. In any case, here's my form:
    <Display class='EditForm' />
    <Field name='context'>
         <Derivation>
              <invoke name='getLighthouseContext'>
                   <ref>WF_CONTEXT</ref>
              </invoke>
         </Derivation>
    </Field>
    <Field name=':applicationName'>
                    <Derivation>
              <s>FACILITIES</s>
         </Derivation>
    </Field>
    <Field name='accounts[FACILITIES].tempField'>
                   <Derivation>                                   
              <rule name='v1_RULELIB_FACILITIES:writeMapToResource'>     
                   <argument name='ctx' value='$(ctx)'/>
                   <argument name='view' value='$(view)'/>
                   <argument name='request' value='$(request)'/>
                   <argument name='applicationName' value='$(applicationName)'/>                                                       </rule>                                   
         </Derivation>
    </Field>
    <Field name='viewOptions.Process'>
         <Expansion>
              <s>ABC_TSKDEF_Facilities_Add_Location</s>
         </Expansion>
    </Field>
    </Form>
    . . .

    and lastly, this is my task definition:
    <TaskDefinition name='ABC_TSKDEF_Facilities_Add_Location'
         taskType='Workflow' executor='com.waveset.workflow.WorkflowExecutor'
         suspendable='true' syncControlAllowed='true' execMode='sync' execLimit='0'
         resultLimit='1' resultOption='delete' visibility='runschedule'
         progressInterval='0'>
    <Extension>
         <WFProcess name='ABC_TSKDEF_Facilities_Add_Location' maxSteps='0'>
    <Variable name='request'>
                        <Comments></Comments>
                   </Variable>
    <Variable name='user' input='true' />
              <Variable name='newLocation'>
                   <s>Baltimore</s>
              </Variable>                    
              <Variable name='newTimeFrame'>
                   <s>24 hours Mon-Sun</s>
              </Variable>          
              <Variable name='wtf'><s>also defined variables for newAccessLevel newEffectiveDate newEndDate and newJustification. For some reason the forum didn't like these and wouldn't let me save.</s></Variable>
              <Activity id='0' name='start'>
                   <Transition to='Initialize' />
                   <WorkflowEditor x='43' y='10' />
              </Activity>
    <Activity id='1' name='Initialize'>
                   <Action id='0' name='Set variables'>
                        <expression>
                             <block name='INIT' trace='true'>
                             </block>
                        </expression>
                   </Action>
                   <Transition to='Make Account Changes' />
                   <WorkflowEditor x='105' y='10' />
              </Activity>
    <Activity name='Make Account Changes'>     
                   <Action id='1' name='update lh account'>
                        <expression>
                             <block trace='true'>
                                  <cond>
                                       <not>
                                            <contains>
                                                 <ref>user.waveset.resources</ref>
                                                 <s>FACILITIES</s>
                                            </contains>
                                       </not>
                                       <append name='user.waveset.resources'>
                                            <s>FACILITIES</s>
                                       </append>
                                  </cond>
                                  <set>
                                       <concat>
                                            <s>user.accounts[FACILITIES].properties.locationMap[</s>
                                            <ref>newLocation</ref>
                                            <s>].timeFrame</s>
                                       </concat>
                                       <ref>newTimeFrame</ref>                                   
                                  </set>
                                  <set>
                                       <concat>
                                            <s>user.accounts[FACILITIES].properties.locationMap[</s>
                                            <ref>newLocation</ref>
                                            <s>].accessLevels</s>
                                       </concat>
                                       <list>
                                            <ref>newAccessLevel</ref>
                                       </list>                                   
                                  </set>                                                       
                                  <set>
                                       <concat>
                                            <s>user.accounts[FACILITIES].properties.locationMap[</s>
                                            <ref>newLocation</ref>
                                            <s>].effectiveDate</s>
                                       </concat>
                                       <ref>newEffectiveDate</ref>                                   
                                  </set>                              
                                  <set>
                                       <concat>
                                            <s>user.accounts[FACILITIES].properties.locationMap[</s>
                                            <ref>newLocation</ref>
                                            <s>].endDate</s>
                                       </concat>
                                       <ref>newEndDate</ref>                                   
                                  </set>                                                                 
                                  <set>
                                       <s>user.accounts[FACILITIES].properties.justification</s>
                                       <ref>newJustification</ref>
                                  </set>
                                  <set>
                                       <s>user.accounts[FACILITIES].justification</s>
                                       <ref>newJustification</ref>
                                  </set>                         
                             </block>
                        </expression>
                   </Action>
                   <Transition to='Error'>
                        <eq>
                             <ref>WF_ACTION_ERROR</ref>
                             <s>true</s>
                        </eq>
                   </Transition>
                   <Transition to='Provision' />
              </Activity>
              <Activity id='5' name='Provision' audit='true'>
                   <Comments>Perform the standard Lighthouse reProvisioning process.</Comments>
                   <Action id='0' process='Provision'>
                        <Argument name='op' value='reProvision' />
                   </Action>
                   <Transition to='Clean up' />
              </Activity>
              <Activity id='9' name='Error'>
                   <Action id='0' name='Audit Data Validation'>
                        <Argument name='auditError'>
                             <concat>
                                  <s>Data Validation Error for </s>
                                  <ref>accountId</ref>
                                  <s>. </s>
                                  <s>Invalid attributes:</s>
                                  <ref>user.dataValidationError</ref>
                             </concat>
                        </Argument>
                        <Argument name='auditAction' value='Create' />
                        <Argument name='generateAuditRule'
                             value='v1_RULELIB_Common:getDataValidationAuditParams' />
                        <SubProcess>
                             <ref>sysConfig.PROCESS_AUDIT</ref>
                        </SubProcess>
                   </Action>
                   <Action id='1' name='Set Notify Params'>
                        <expression>
                             <block>
                                  <set name='errorHandle.placeOnQueue'>
                                       <s>false</s>
                                  </set>
                                  <set name='errorHandle.errorMessage'>
                                       <ref>user.dataValidationError</ref>
                                  </set>
                                  <set name='errorHandle.generateEmailRule'>
                                       <s>v1_RULELIB_Common_EmailGeneration:getEmail_ASErrorHandleNotifyAdmins</s>
                                  </set>
                             </block>
                        </expression>
                   </Action>
                   <Action id='2' name='Call Error Handle'>
                        <Argument name='errorHandle' value='$(errorHandle)' />
                        <SubProcess>
                             <ref>sysConfig.PROCESS_ERROR_HANDLE</ref>
                        </SubProcess>
                   </Action>
                   <Transition to='Clean up' />
                   <WorkflowEditor x='292' y='10' />
              </Activity>
              <Activity id='10' name='Clean up'>
                   <Action id='0' name='Clean Up Variables'>
                        <expression>
                             <block>
                                  <set name='sysConfig' />
                                  <set name='errorHandle' />
                                  <set name='enduserId' />
                                  <set name='lhUser' />
                             </block>
                        </expression>
                   </Action>
                   <Transition to='end' />
                   <WorkflowEditor x='437' y='10' />
              </Activity>
              <Activity id='11' name='end'>
                   <WorkflowEditor x='609' y='10' />
              </Activity>
              </WFProcess>
         </Extension>
         . . . Any ideas? Pointers? Suggestions? I can't find any information on how to write to the resource. What is it that triggers that to happen? What do I need to add to my rule, task definition or form to get that to update? Any ideas are much appreciated!
    Edited by: user12836258 on Sep 7, 2011 9:15 AM
    Edited by: user12836258 on Sep 7, 2011 9:16 AM
    Edited by: user12836258 on Sep 7, 2011 9:17 AM
    Edited by: user12836258 on Sep 7, 2011 9:17 AM
    Edited by: user12836258 on Sep 7, 2011 9:18 AM
    Edited by: user12836258 on Sep 7, 2011 9:21 AM
    Edited by: user12836258 on Sep 7, 2011 9:24 AM
    Edited by: user12836258 on Sep 7, 2011 9:25 AM
    Edited by: user12836258 on Sep 7, 2011 9:25 AM
    Edited by: user12836258 on Sep 7, 2011 9:26 AM
    Edited by: user12836258 on Sep 7, 2011 9:27 AM

  • Customizing Workflow and Forms

    Hi
    I have a Approval Workflow with 3 outcomes: Approve: Revise and Reject. I added another outcome such as Revise. 
    I find by default on one Approval Form in the Workflow using SPD. I need to add another Form which will send back the Comments to the Initiator to Revise the form and resend it back to the Approver.
    Kindly let me know for any pointers. 
    Thanks
    Regards
    Santosh
    Santosh

    Hi,
    According to your post, my understanding is that you want to create an form to get the users’ comments for the initiator approval.
    Per my knowledge, it’s by design that we can’t directly modify the approval task form in SharePoint 2013.
    As a workaround, you can create a new task content type to apply it to the task process action in SharePoint workflow.
    Also, you can try to create a new list to add user information and custom the list form, create a SharePoint 2013 Approval Workflow for this new list to assign the tasks to the corresponding users, then you can get their corresponding users’ comments for
    the initiator approval.
    For more information, you can refer to:
    http://blogs.msdn.com/b/sharepointdesigner/archive/2012/09/14/how-to-manipulate-the-task-form-with-sharepoint-designer-for-new-task-actions.aspx
    http://jamilhaddadin.com/2011/12/03/implementing-workflow-using-infopath-2010-and-sharepoint-designer-2010/#3
    https://www.youtube.com/watch?v=ADc-0VoS4ZA
    Thanks,
    Yumi Fu
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • Interaction  with Bulk Action Task

    We are tyring to provide a "cleaner" interface for our customer when using bulk actions. Does anyone know how to interact directly with the Task that runs the bulk actions? I've looked in the repository thru the BPE and it's not selectable. Thanks!

    Ok, so here's the deal:
    If the command is Create, then use "password.password".
    If the command is Update, then use "global.password" (or "accounts[Lighthouse].password" if only IDM resource password is to be updated).
    It would have been nice to have only one reference for all actions, but I tested this and this is the way it is..
    -Adi
    [www.xpressutils.com|http://www.xpressutils.com]

  • Bulk Action to merge an IDM user to a Siebel CRM user

    Hi,
    i 'm using the SJS IDM 6.1 and i'm tryning to merge an IdM user to an user that is created on the Siebel CRM by a bulk action.
    The script used is the following
    command,user,waveset.resources,accounts[Siebel CRM].identity
    Update,IdMuser,|Merge|Siebel CRM,Siebel CRM user
    The result is the IdM user was associated to the Siebel CRM resource with the IdM account, and not linked by the Siebel CRM account and it is not found on the Siebel resources (obviously).
    I have a lot of IdM users to merge to the Siebel CRM account.
    Does anybody Know how to merge the account by bulk action?
    Thanks in advance
    Message was edited by:
    oruam69

    If you are using any other resource as Pass-through Authentication, then the password fields can be blank. In fact, if you enable pass-though authentication, the tabbed user form does not show the password fields.

  • Can the Bulk Action be scheduled?

    I need a quick help.
    Can the Bulk Action be scheduled?
    I have a feed file that gets updated for every 24 hrs and the records are to be processed accordingly. For this, I need to go to the bulk actions then select the option from file and then Launch. Can this be configured?
    If this cannot be configured, is it possible to write a workflow which will read the feed file and process the accounts. If this is possible please provide a working sample.
    The feed file basically has an attribute, that needs to be upated on the account and a Role is to be assigned or removed based on the value.
    Thanks in advance,

    Welcome to the forum!
    You've run across what looks like an interesting limitation of Keynote -- it seems that Actions cannot happen simultaneously with Builds for a single object. My only suggestion for a workaround would be to copy the section of the background that the photo is to appear on, put that on top of the photo, and use a Build Out Dissolve on that object as you scale the photo. This would achieve a similar effect to what you describe, although it is a pain in the butt to do.
    With regard to your second issue, a Move Action will do what you want if you set the Acceleration to "None". Of course, if you want the object to start off-screen and end off-screen, it can be tough to manipulate the animation. I always attach invisible "handles" to my image, in the form of objects with no fill or stroke that I then group with my image. They extend the image, so that the invisible objects are still on the screen, and thus selectable, when the actually image is off-screen.

  • Custom confirmation web form page

    I have built a custom registration web form that works with a secure zone and when a subscriber registers and hits submit I would like it to either 1.) redirect directly to the page in the secure zone or if that is not possible, 2.) link to a log in page that directs to the secure zone page instead of hitting submit and going to the default confirmation page.
    I also saw a similar question (http://forums.adobe.com/message/4536842#4536842), but could not get the new redirect ID correctly.

    You need to add "&PageID=/video-confirmation" to your form's ACTION attribute.  Add it to the end of what was there originally, and yes, you need to leave that string of code after the URL in there.  There's important information being passed from the form to BC letting them know where to sign you in, etc.
    If you need to redo it, just insert your form into your page fresh and then add "&PageID=/video-confirmation" to the end of the form's action attribute.  You are passing your URL to the "WebFormID" parameter which should actually be the numerical ID of your form which is why you are probably getting 404 (not found) errors.  Also, make sure that your destination page at "/video-confirmation" is resolving normally as well.

  • Adobe Bridge (CS6) - bulk action - JPEG Options must be OKed for every image

    Hi all-
    I created an action script for a watermark in Photoshop CS6. Then, I ran my script as a bulk action in Adobe Bridge (CS6) against my JPEGs. However, the JPEG Options dialog/window appears for every image in PS. Is there a way to have this automatically OK (and at the highest quality) so that I don't have to sit and click OK over and over?
    I am on a Mac btw.
    Thanks!

    Please help

  • Read External List Field on Custom ECB action

    I tryed to show a Custom ECB action on an External List.
    The External List have a Field "LOGICAL_ID" with an IP address, but the GetAttributeFromItemTable works only with Standard List.
    How i read the External List Field and open some shell or browser actions with these field?
    <script language="Javascript" unselectable="on">
    // START: Override Function
    function Custom_AddListMenuItems(m,ctx)
    var strDisplayText = "Ping";
    var strDisplayText1 = "Browse Http";
    var strDisplayText2 = "Telnet";
    var strDisplayText3 = "SSH";
    var strDisplayText4 = "Remote Desktop";
    // for test strDisplayText = currentItemID;
    var LOGICAL_ID = currentItemID;
    // var LOGICAL_ID = GetAttributeFromItemTable(itemTable, "LOGICAL_ID");
    // var LOGICAL_ID = itemTable.getAttribute("LOGICAL_ID");
    var strAction = "javascript:var x = new ActiveXObject('WScript.Shell');x.run('ping -t" + LOGICAL_ID + "');window.refresh";
    var strAction1 = "http://" + LOGICAL_ID;
    var strAction2 = "telnet://" + LOGICAL_ID;
    var strAction3 = "telnet://" + LOGICAL_ID + "/? -ssh";
    var strAction4  = "javascript:var x = new ActiveXObject('WScript.Shell');x.run('mstsc /v " + LOGICAL_ID + " /admin');window.refresh";
    var strImagePath = "";
    // Add menu item
    CAMOpt(m, strDisplayText, strAction, strImagePath);
    // add a separator to the menu
    CAMSep(m);
    CAMOpt(m, strDisplayText1, strAction1, strImagePath);
    CAMOpt(m, strDisplayText2, strAction2, strImagePath);
    CAMOpt(m, strDisplayText3, strAction3, strImagePath);
    CAMOpt(m, strDisplayText4, strAction4, strImagePath);
    // false means that the standard menu items should also be rendered
    return true;
    // END: Override function
    </script>

    Hi,
    If you want to disable the Rich Text Field dynamically, you can consider to use JavaScript and JavaScript Client Object Model.
    The “disable” attribute seems not work on Rich Text Editor control, so we can set the “display” attribute as “none” to hide the control instead:
    <script type="text/javascript">
    document.getElementById("ctl00_PlaceHolderMain_rftDefaultValue").style.display = "none";
    document.getElementById("ctl00_PlaceHolderMain_rftDefaultValue_toolbar").style.display = "none";
    document.getElementById("ctl00_PlaceHolderMain_rftDefaultValue_iframe").style.display = "none";
    console.log('hide');
    </script>
    You will need to find out the id of the toolbar and textbox of the Rich Text Editor control in page using IE developer(F12) first, then replace the ids in the script above.
    We can get values of list items using JavaScript Client Object Model:
    http://msdn.microsoft.com/en-us/library/office/hh185006(v=office.14).aspx
    More information about JavaScript Client Object Model:
    http://msdn.microsoft.com/en-us/library/office/hh185011(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/office/hh185015(v=office.14).aspx
    Feel free to reply if there are still any questions.
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they
    help and unmark them if they provide no help. If you have feedback for TechNet
    Subscriber Support, contact [email protected]
    Patrick Liang
    TechNet Community Support

  • I am using Photoshop CS5 on a new iMac with a wireless keyboard.  I used to be able to hit F11 to perform a custom sharpening action but now the F11 key is the volume control key and I have tried everything to disable or switch the volume key. I have also

    I am using Photoshop CS5 on a new iMac with a wireless keyboard.  I used to be able to hit F11 to perform a custom sharpening action but now the F11 key is the volume control key and I have tried everything to disable or switch the volume key. I have also tried assigning other function keys to initiate the action. Is there a simple solution to this? What am I missing?

    Try unmounting the volume on your iMac using Disk Utility. Then mount it again. You may need to reboot the laptop or relaunch its Finder process (using the Force Quit window) after remounting the drive on your iMac. Remember that no process may be accessing any files on the drive you plan to unmount, or the unmount will fail. Unmounting and remounting an external drive on my iMac made it become visible on my MacBook Pro after it had disappeared.

  • Custom dynamic action not firing

    Using Apex 4.2.2 on 11g
    I have a standard report A1
    There is a column link on report A1 which refreshes chart C1 using a custom dynamic action.
    The column link on report A1  has the URL set to  javascript:$.event.trigger('RefreshTrend_2', [{key_2:'#COL01#' }]);
    and there is a dynamic action D1 RefreshTrend_2 which sets the value of the chart filter P17_KEY_2 to the value of the javascript variable key_2 and then refreshes chart C1
    The dynamic action is custom with a type DOMObject of document and no condition
    This works fine but when I add another report/chart (report A2, chart C2)  combination with a similar dynamic action (D2), D2 is a copy of D1 with the values for the variables and chart region changed.
    The A2/C2 functionality works fine on its own, D2 gets fired when I click the column link, but not when there are 2 dynamic actions of custom/document on the page.
    This column link on A2 only fires the dynamic action D2 if dynamic action D2 has a higher sequence than D1 (if i move it above D1 in the list it will fire, but then D1 does not fire for the column link on A1
    Am I missing something?
    Thanks
    Kathryn

    Here is my page source from the browser (i put in some blank lines here to separate the 3 dynamic actions)
    <script type="text/javascript">
    apex.da.initDaEventList = function(){
    apex.da.gEventList = [
    {"triggeringElement":"P17_IS_OK","triggeringElementType":"ITEM","triggeringConditionType":"NOT_NULL","bindType":"bind","bindEventType":"change",actionList:[{"eventResult":true,"executeOnPageInit":true,"stopExecutionOnError":true,"affectedElementsType":"BUTTON",javascriptFunction:apex.da.enable,"action":"NATIVE_ENABLE"},{"eventResult":false,"executeOnPageInit":true,"stopExecutionOnError":true,"affectedElementsType":"BUTTON",javascriptFunction:apex.da.disable,"action":"NATIVE_DISABLE"}]},
    {"triggeringElement":"document","triggeringElementType":"DOM_OBJECT","bindType":"live","bindDelegateTo":document,"bindEventType":"RefreshTrend_2",actionList:[{"eventResult":true,"executeOnPageInit":true,"stopExecutionOnError":true,"waitForResult":true,"affectedElementsType":"ITEM","affectedElements":"P17_KEY_2",javascriptFunction:apex.da.setValue,"ajaxIdentifier":"3BB4667C9E25BFB8DCF63639507A062A88F713A193C0D30DDF1CEA8D6875A7F9","attribute01":"JAVASCRIPT_EXPRESSION","attribute05":"this.data.key_2","attribute09":"N","action":"NATIVE_SET_VALUE"},{"eventResult":true,"executeOnPageInit":true,"stopExecutionOnError":true,"affectedElementsType":"REGION","affectedRegionId":"R2959102626294614",javascriptFunction:apex.da.refresh,"action":"NATIVE_REFRESH"}]},
    {"triggeringElement":"document","triggeringElementType":"DOM_OBJECT","bindType":"live","bindDelegateTo":document,"bindEventType":"RefreshTrend_1",actionList:[{"eventResult":true,"executeOnPageInit":true,"stopExecutionOnError":true,"waitForResult":true,"affectedElementsType":"ITEM","affectedElements":"P17_KEY_1",javascriptFunction:apex.da.setValue,"ajaxIdentifier":"51D6B9673F7096076392A95D9D00B417D49DEB96D878B419FC6D1E482D0AB2F0","attribute01":"JAVASCRIPT_EXPRESSION","attribute05":"this.data.key_1","attribute09":"N","action":"NATIVE_SET_VALUE"},{"eventResult":true,"executeOnPageInit":false,"stopExecutionOnError":true,"affectedElementsType":"REGION","affectedRegionId":"R2925517394066336",javascriptFunction:apex.da.refresh,"action":"NATIVE_REFRESH"}]}];
    </script>
    Only the first "document" dynamic action will fire, even though I fire them by name using
    javascript:$.event.trigger('RefreshTrend_1', [{key_1:'#COL01#' }]); from the column link.
    Kathryn

  • Custom Interactive adobe form as template in PMS

    Hi Experts,
    In PMS i want to use custom interactive adobe form as template instead of standard.My issue is after creating Int.Adobe form how we can call custom form instead of standard form?
    Any BADI's i have to use?
    How we can map the fields?
    Please help me.
    Regards,
    Arun.

    Hi Arun
    Step 1: Go Tcode: OOHAP_BASIC
                Enchancement Area -  AP     Print Layout
                Define your Enhancement
                Example:
                ZPRINT     XXX print form
                PMP                          PMP PDF
                SMARTFORM     Print Appraisal Documents: Old (with Smart Forms)
                STANDARD     Standard
    Step 2: Go Tcode: PHAP_CATALOG
                On your Template under Layout Tab
                Further - Print Layout -> Plug in your Custom Print Form
    You should be all set.
    Thanks
    RAjdeep

  • How to populate form bean (Action form) from Action  (Struts)

    Hello to all..
    I have a problem populating a from bean in struts from Action class...
    What I would like is ..
    1. how can I populate a formbean from Action so when a page (JSP) with tags will be displayed some tags will be set and some no (depends on data from database)..
    example...
    look at the picture...
    http://freeweb.siol.net/peterv6i/ax1.jsp
    I have a AO2.jsp page linked to action2 and also i have a formbean with set/get methods...
    nex step.. when I call action2 I' retrive datas from my database and in Action class I would like to populate formbean which is from page AO3 (which will be displayed)..
    Is this possible? here is my code but work only for 1 user.. if there are 2 or more users on page I get internal server error (Exception)..
    this is my Action class
    public class Action2 extends Action
    public[b] ActionForward execute(ActionMapping mapping, ActionForm form,
    HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException {
    System.out.println("Action2");
    session = request.getSession();
    if (session.isNew()) {
    response.sendRedirect("AO2.jsp");
    AO3formbean frm = new AO3formbean(); <-- this is formbean from page AO3.jsp which I like to populate
    frm.setName("xxxxxx");
    frm.setSurname("ekekelek");
    session.setAttribute("AO3formbean", frm); <-- here I put a formbean in session
    return mapping.findForward("success");
    then the AO3.jsp page will be called which use a AO3formbean... and here problems come... If only one user use the application all is ok.. but when two or more users use the same form with different session the page will not work well.. sometimes i get exception, sometimes white page.. sometimes nonsense datas are displayed..
    Anybody know if is possibile to populate a formbean and store it in session or I must change whole code?
    for example...
    In my form i must enter a car assicurance policy number... (page AO2.jsp)..
    then in the action form I must connect to my database and retrive information from table and populate bean which is also a formbean on the page AO3 which will be desplayed.. (if I'am doing something wrong please let me know the right way)
    best regards

    http://freeweb.siol.net/peterv6i/ax1.jpg

Maybe you are looking for

  • Getting crackling sound on any audio on X305-Q701

    Any audio that is playing (internet, itunes, rhapsody, video games, etc.) is getting a crackling sound.  Anyone else getting this? or have a fix  Solved! Go to Solution.

  • Saturation Differences in LR

    I just discovered yesterday that the adjustment brush in 100% saturation mode affects an image differently than using the saturation control alone: Case 1: All adjustments default, Adjustment brush, custom mode, saturation 100, everything else 0 Case

  • CLASS CHARACTERISTICS

    when i am trying to create  class characteristics  in additional tab reference to table field is display mode means i am unable to enter table & field name  is there any body face this problem kindly suggest me how to activate.

  • Custom segment does not exist for message type Debmas_cfs

    Hi, I have created a custom segment YEXTRA for basic type DEBMAS06. I have done the configuration in We82 and We20. I have implemented the segment in User Exit "EXIT_SAPLVV01_001". Now when I am executing the TCODE BD12  then it is creating the Idoc

  • ADSL QOS service policy

    My ISP has said they will set up their side to give 50% policed real time traffic and 30% for our application traffic burstable then 5% anything else burstable.  The QOS below is my attempt to do this but I was advised that to apply it to the Dialer