REASSIGN button

hello
I am in need of creating a custom reassign button with ROLES for only Full Time Employees
please advice
kp

unless you're calling setUpButtons every time you create a new button, you should use:
var mainButtons:Array = new Array();
var products_btn;
// after the language is determine it adds the appropriate button from the library to the stage as the button object
products_btn = new EnProductsBTN();
  layer_3.addChild(products_btn);
  products_btn.name = "products_btn";
  products_btn.x = 255;
  products_btn.y = 544;
  products_btn.alpha = 0;
mainButtons.push({label:products_btn, link:'/products/', cover:"quarter"});
function setUpButtons():void{
for(var i:Number = 0; i < mainButtons.length; i++){
  var thisMC:MovieClip = mainButtons[i].label as MovieClip;
  var thisLink:String = mainButtons[i].link;
  var thisCover:String = mainButtons[i].cover;
  thisMC.addEventListener(MouseEvent.MOUSE_OVER,btnOver);
  thisMC.addEventListener(MouseEvent.MOUSE_OUT,btnOut);
  thisMC.addEventListener(MouseEvent.CLICK,buttonPressed);
  thisMC.buttonMode = true;
  thisMC.deepLink = thisLink;
  thisMC.cover = thisCover;
// when the combo box is chaged to say spanish the buttons and listeners are removed in a function and then
// it adds the new button to the button object
products_btn = new EsProductsBTN();
  layer_3.addChild(products_btn);
  products_btn.name = "products_btn";
  products_btn.x = 255;
  products_btn.y = 544;
  products_btn.alpha = 0;
// that places the new button on stage just fine and then i call the setUpButtons function again and it doesn't work.
Why?

Similar Messages

  • Can we change the name of reassign button in sharepoint 2010 approval workflow?

    can we change the name of reassign button in sharepoint 2010 approval workflow?
    Shazil Ali

    Yes, we can change it. Steps are as follows: 1. Create the workflow in SharePoint Designer 2010 2. Use Start Approval Process action 3. Write your logic and all setting as per you requirement and then publish the workflow once. 4. After this, click on
    the workflow name and there you will see the sections as Workflow Information, Customization, Settings, Start Options, Forms. Here you will see a form under Forms section with a name of Approval_x00....... with a type "Task". Click on this form. This form
    is an Infopath form that opens up when a task is to be edited (Task Form). This form will open up in Infopath (provided you have Infopath installed on your system) It may ask you the crendentials for security. 5. The task form will open up in Infopath for
    editing. Click on the Reasign button and in the top left corner in the ribbon section is the field (Label) having text as "Reassign Task". Change this and then save and publish the form.Publish the workflow once again.

  • How to Hide Reassign Button for the External Users

    Hi All,
    We have some notifications sent to the Oustide Suppliers, In those Notifications we are haveing 3 buttons displayes (Yes/No/Reasign).
    Based on the Previous posts regd the same subject, I checked the Notification Attribute '#HIDE_REASSIGN' , it was already set to 'Y'. Changed to B and tested but same result,
    These users do not ahve any responsbilities except for one Supplier Responsibility.
    Can you pls help me on this issue.
    Regards,
    Sridhar

    Hi Srini,
    Thanks for the Immediate Response, I reviwed the Maetalink Note which you suggested, it was stated as:
    Starting from ATG_PG.H.Rollup 4, an enhancement has been made to the Notification Details screen.
    When the user viewing the notification has been granted the Workflow Administrator privilege (through the WF_ADMIN_ROLE preference), then the Reassign button will always be visible, even when the message attribute #HIDE_REASSIGN is set to Y.
    This allows Administrators to reassign any notification when necessary in exception cases.
    But in my case, the user do not have the Workflow Administrator privilege. He was not assigned with any workflow Admin Resps. Is there anything I am missing to check the WF_ADMIN_ROLE preference for a particular user?
    Regards,
    Sridhar

  • How to hide REASSIGN Button for PO Requisition Approval Notification only

    Hello,
    I have a requirement in which I have to HIDE the REASSIGN button from the PO Requisition Approval Notification page. I realized that this page(NotifDetailsPG.xml) is being used by Sourcing Module too for sending the Approval Notifications. So I cannot directly set the Rendered Property to False for this as this would hide the REASSIGN button in Sourcing Approval Notification too.
    So, how do I hide the REASSIGN button from the Notification page only if the Page is being used as PO Requisition Approval Notification? Can I use SPEL command in this case? Can somebody help me with this issue?
    Thanks
    Sunny
    Edited by: user13369509 on May 16, 2011 7:39 AM

    Hi Srini,
    Thanks for the Immediate Response, I reviwed the Maetalink Note which you suggested, it was stated as:
    Starting from ATG_PG.H.Rollup 4, an enhancement has been made to the Notification Details screen.
    When the user viewing the notification has been granted the Workflow Administrator privilege (through the WF_ADMIN_ROLE preference), then the Reassign button will always be visible, even when the message attribute #HIDE_REASSIGN is set to Y.
    This allows Administrators to reassign any notification when necessary in exception cases.
    But in my case, the user do not have the Workflow Administrator privilege. He was not assigned with any workflow Admin Resps. Is there anything I am missing to check the WF_ADMIN_ROLE preference for a particular user?
    Regards,
    Sridhar

  • I want to Hide ok buttom and reassign button in notification page

    HI
    How to Hide ok button and reassign button in notification page using oracle workflow builder
    Thanks and regards
    ch sai vikram

    I do not believe you can achieve this using WF Builder - you will instead need to use OAF Personalization. See these MOS Docs for examples
    727315.1 - How To Do the Personalization on the Salary Page (Hide CORRECT Button)
    758795.1 - How To Hide The Add Transaction List, Print And Recalculate Buttons Through Personalization?
    HTH
    Srini

  • Reassign button listeners problem...

    I have a multilanguage site. I have a combo box that allows the user to change the language if the default system language isn't what they want to browse by. The site's button are added to the stage and then listeners are applies. When the language is changed, I'm removing the buttons and listeners and reassigning a new button to the old object and readding the listeners. However the listeners don't work, everything else is fine. I cannot figure out how to readd the listeners.
    Here's my code:I'll only use one button to keep it simple
    var products_btn;
    // after the language is determine it adds the appropriate button from the library to the stage as the button object
    products_btn = new EnProductsBTN();
      layer_3.addChild(products_btn);
      products_btn.name = "products_btn";
      products_btn.x = 255;
      products_btn.y = 544;
      products_btn.alpha = 0;
    // then i add the listeners by calling the setUpButtons function
    var mainButtons:Array = new Array();
    mainButtons = [
          {label:products_btn, link:'/products/', cover:"quarter"}
    function setUpButtons():void{
    for(var i:Number = 0; i < mainButtons.length; i++){
      var thisMC:MovieClip = mainButtons[i].label as MovieClip;
      var thisLink:String = mainButtons[i].link;
      var thisCover:String = mainButtons[i].cover;
      thisMC.addEventListener(MouseEvent.MOUSE_OVER,btnOver);
      thisMC.addEventListener(MouseEvent.MOUSE_OUT,btnOut);
      thisMC.addEventListener(MouseEvent.CLICK,buttonPressed);
      thisMC.buttonMode = true;
      thisMC.deepLink = thisLink;
      thisMC.cover = thisCover;
    // when the combo box is chaged to say spanish the buttons and listeners are removed in a function and then
    // it adds the new button to the button object
    products_btn = new EsProductsBTN();
      layer_3.addChild(products_btn);
      products_btn.name = "products_btn";
      products_btn.x = 255;
      products_btn.y = 544;
      products_btn.alpha = 0;
    // that places the new button on stage just fine and then i call the setUpButtons function again and it doesn't work.
    Why?

    unless you're calling setUpButtons every time you create a new button, you should use:
    var mainButtons:Array = new Array();
    var products_btn;
    // after the language is determine it adds the appropriate button from the library to the stage as the button object
    products_btn = new EnProductsBTN();
      layer_3.addChild(products_btn);
      products_btn.name = "products_btn";
      products_btn.x = 255;
      products_btn.y = 544;
      products_btn.alpha = 0;
    mainButtons.push({label:products_btn, link:'/products/', cover:"quarter"});
    function setUpButtons():void{
    for(var i:Number = 0; i < mainButtons.length; i++){
      var thisMC:MovieClip = mainButtons[i].label as MovieClip;
      var thisLink:String = mainButtons[i].link;
      var thisCover:String = mainButtons[i].cover;
      thisMC.addEventListener(MouseEvent.MOUSE_OVER,btnOver);
      thisMC.addEventListener(MouseEvent.MOUSE_OUT,btnOut);
      thisMC.addEventListener(MouseEvent.CLICK,buttonPressed);
      thisMC.buttonMode = true;
      thisMC.deepLink = thisLink;
      thisMC.cover = thisCover;
    // when the combo box is chaged to say spanish the buttons and listeners are removed in a function and then
    // it adds the new button to the button object
    products_btn = new EsProductsBTN();
      layer_3.addChild(products_btn);
      products_btn.name = "products_btn";
      products_btn.x = 255;
      products_btn.y = 544;
      products_btn.alpha = 0;
    // that places the new button on stage just fine and then i call the setUpButtons function again and it doesn't work.
    Why?

  • Reassign request in OIM 9.1.0.2. BP 19

    Hi Folks,
    I have come across a requirement. I want requester to reassign the requests raised by him to some one else. i.e. Whenever a person submit a request, it goes to his manager for approval. Now I want in view requests page, request should be able to reassign that request to some one else. Currently reassign button appears disabled in page. I know this is a product feature but some how I have to achieve my requirement.
    Any suggestions (apart from UI customization) are highly appreciated.
    Thanks,
    GP

    Another option:
    1. add assignee lookup in object form and populate all the assignee in this(all user or the user belongs to group)
    2. now modify your approval code to select the approver from the list.
    In the above case requester will raise new request instead of re-assign(you can leave the old request as it is or have a scheduler which will revoke the older request)

  • Functionality of "Reassignment"/ release/ reject in VKM3 tcode

    Hi,
    I need to know the functionality of "Reassignment" field in tcode VKM3. Please let me know the complete process if user wants to use this tab.
    Regards

    Reassignment:
    The reassignment button is not used to invoke a new credit check, but
    rather to shift credit from one document to another. The following
    example explains the system behaviour:
                   Value  Status
    Doc 919 30,000 A (passed credit check)
    Doc 920 10,000 B (failed credit check)
    Doc 921 20,000 B (failed credit check)
    After using the reassignment functionality the situation is the
    following:
    Doc 919 30,000 B (failed credit check)
    Doc 920 10,000 A (passed credit check)
    Doc 921 20,000 A (passed credit check)
    Credit values are reset for documents which have been selected for
    reassignment. The credit check is carried out on this basis and
    according to how the selected documents are sorted. The credit values
    of the individual documents are reconstructed in this sort sequence.
    If there is a block on any document checked earlier in the sequence,
    the block will be lifted.

  • SPD workflow - Couldnt Reassign a task which has a required task field

    Hi
    I am using sharepoint designer 2010 to develop a workflow.
    I have added a new task form field (required) and reassignment enabled in the settings.
    But when i click on the reassign button, it takes me to the reassign form. But when i submit it, it throws missing field value error. (because the required field is not showing in the form and it is not filled in?)
    How to fix this issue?
    Thanks
    Venky

    Hi Venkat,
    Whether you customized the task form with InfoPath.
    I tested with a check box field in the task form, set the default value of the field is Yes when creating the field in task form fields. Like you said, the original task form didn't complain that the check box needed to be checked.As i set a default
    value for this field, I did nothing on the original form, and directly clicked Reassign Task, everything was OK.
    Whether you added other fields in the form. Please provide a screenshot about the original task form and reassign task form.
    Thanks,
    Wendy
    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]
    Wendy Li
    TechNet Community Support

  • Hide/Preview button for Notification Search Iview

    I'm working on a Portal Appllication called NRX. It's used as Interface for SAP Plant Maintenance
    There is an iview to search notifications in the R3
    When I log in I can see two buttons in the upper right corner. Hide and Show Preview button
    However, sometimes I log in and I can't see these buttons.
    We believe this is a node configuration issue.
    Can someone help me?

    Hi Srini,
    Thanks for the Immediate Response, I reviwed the Maetalink Note which you suggested, it was stated as:
    Starting from ATG_PG.H.Rollup 4, an enhancement has been made to the Notification Details screen.
    When the user viewing the notification has been granted the Workflow Administrator privilege (through the WF_ADMIN_ROLE preference), then the Reassign button will always be visible, even when the message attribute #HIDE_REASSIGN is set to Y.
    This allows Administrators to reassign any notification when necessary in exception cases.
    But in my case, the user do not have the Workflow Administrator privilege. He was not assigned with any workflow Admin Resps. Is there anything I am missing to check the WF_ADMIN_ROLE preference for a particular user?
    Regards,
    Sridhar

  • UserTask Reassign Issue When a Manager Logs-in

    Hi,
    I have created a UserTask and used a Simple WorkFlow Pattern. I assigned the task dynamically to a group. I have a group with 2 users. Everything works fine except I don't see the reassign button when a Manager logs-in. The users,group and Manager are created in OID correctly.
    All the users in the group are Reportees to the Manager. Can someone help me what I am doing wrong. Thanks

    Hi Clemens any feedback on what I am doing wrong or is there anything else I have to do while creating a group or users. The samples work fine only when I create my own Flow I somehow don't see Reassign button once a Manager logs-in. Wondering if there's any other setup I need to do. Thanks

  • Approval Workflow task won't open by button on Outlook window

    Outlook error: Outlook cannot open a new form.
    The form contains schema validation errors.  (same error from both Outlook 2010 &2013)
    Details:
    Element '{http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields}StartDate' is unexpected according to content model of parent element '{http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields}SharePointListItem_RW'.
    Expecting: {http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields}HRRecruitStartDate, {http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields}WorkflowLink, ...
    In InfoPath I modified the task approval form and it was working.  Then I modified the list and it's form and the error resulted.

    I modified the "request" list; I did not modify the "task" list.  I modified the "task" form; I also modified the "request" form.
    The error is between Outlook and the "task" form.
    Thanks.  That link is just some voodoo nonsense about html sensitivity.  This error would seem to be describing some change to the underlying data structure.  I know one thing I did do was uncheck the "reassign" button functionality.  But
    I already discovered the reassign view part of the form and deleted that -- no resolution there.  I haven't found any data structure out there that contains HRRecruitStartDate, nor can I find reference to it on-line.  I know for a fact that I haven't
    touched the task list structure so I'm making the logical conclusion that it can't be there.  Of course, it is SharePoint and no one knows all the kludge that is going on there.
    If anyone did know how the thing worked, one might be able to expect utile error messages.
    I see that there are a couple of pages of "content types" associated with a task list, but I have no idea how all that works and can't begin to concoct a strategy for investigating those.  I was hoping someone here had some insight.

  • Buttons order

    I have a menu with dropzones (just like an episodes menu) that point to specific chapters in the track. I owned the software for about a month and think it's great and accomplished a lot of things with it.
    One issue however I cannot figure out right now is the order in which buttons become active whenever I click the arrow buttons. I have created the buttons in the order they have to be selected, but when I run the simulator the order is messed up. It goes from 1st button to 3rd, then to 5th, to 2nd, etc. The order is the same all the time but is not right. Is there a way to set up the order in which buttons appear? Thanks.

    The buttons should become active in the order that you created them, however if you then move the buttons around the menu when doing the layout things can get tricky.
    Usually, the culprit is the settings box which defaults to continuously assigning button navigation - that is, DVDSP will make a 'best guess' about the logical order in which the buttons get selected. Unless you are using regular list type layouts then this guess is not always accurate or desirable. It also really slows down the app as it constantly reassigns buttons as you move them.
    The best thing to do is to turn that function off then move the buttons where you want them, then use the 'assign now' option... or assign the navigation manually.

  • Apple ipod touch 4th gen lock button?

    So the lock button of my 2nd hand iPod touch 4th gen is totally pressed in, (it was like that when I got it) and it was fine for about the first 6 months because I was using assistive touch to lock it but now it's started acting like it's being pressed all the time. I can barely use it anymore because it locks and unlocks it self about twice a second. I was just wondering if there was any way to reassign the button so that it stops flashing on and off all the time. Any help would be appreciated.

    There is no way to reassign buttons.
    - Make an appointment at the Genius Bar of an Apple store. Maybe they can help
      Apple Retail Store - Genius Bar

  • Checkbox in datatable

    Hi,
    I use a data table in my jsf page.I have give a f:selectbooleanchkbox.
    When i select the chk box my data table has to be updated with the checked ones.
    problem here is:
    I have a button at the bottom of my page named reassign.when i click on the reassign button i shud get a pop up and this pop up has to be loaded with dynamic values.since a java script for pop up & both action cannot be called at a single shot , i use a use bean tag in my pop up to call a method in backing bean to load the pop mup with dynamic values.
    Doing this way(calling a bean method), will my data table be automatically updated?
    Presently am using a value changed listener on click of my chk box.but doing this way cant be efficient & does not seem to be user friendly as the form is submitted each time.
    Your suggestions would be appreciated.
    Thanks,
    padma.

    I think I finally pulled it of; I added an empty arraylist and assigned the value of the checkbox to it.
    I don't really know how to point to a certain element in that list, as value="#{theBean.theList[person.id]}" or value="#{theBean.theList['person.id']}" or value="#{theBean.theList[0]}" don't seem to evaluate to something meaningfull.
    It's kinda ugly, and I was hoping binding the tag to a method would get me a cleaner solution, but it appears it doesn't pass the f:attribute (??)...

Maybe you are looking for

  • Why doesn't my boolean controls work?

    I'm building an user interface and I have a tab control with several options. In the tabs I have Boolean controls that are always in the false state. Why does this happen? I'm running LabVIEW 6.1 in Windows XP.

  • CPU will not boot up

    CPU will not boot up. When the power button is pressed, either from a cold boot, power off or from a reset, the hard drive begins to operate, then you hear 4 beaps a pause of about 5 seconds and then the fan races.

  • HT4623 apple id dissabled

    I've had nothing but issues with my apple id, security questions,change password,update apple id ext. My apple id has been dissabled.... I signed out changed passwords. I changed security questions and on and on. whats the main thing I need to due to

  • Countrywise purchasing report

    Hi Experts , I have one issue. Can u please expidite?? Ordering address and Invoicing address of a vendor say Sumitomo is in Japan. But origin of material may be different countries. Now requirement is client wants to get report about how much materi

  • "printer not connected" error over a wifi network

    I have a HP CP2025N laser printer that has been happily working on my Apple network. Now all of a sudden I keep getting a "printer not connected" error. I reset the network to no avail. I am running Lion, the printer is connected via an ethernet cabl