WF is trigerring twice.

Hi,
when i trigger an WF there are two work items coming in UI .
can some one tel me why is this happening.
Regards
Tarmeem

Hi TI,
is it related to ChaRMS?
probable solution:
a) check if event getting triggered twice
b) any change event also triggering
c) none of the above, check patch level of ur GUI and ask BASIS if it could be a reason for triggering twice (which I dont feel)
Hope it helps.
Aditya

Similar Messages

  • OIM 11gR1 notificationevents getting triggered twice

    Hi,
    We have defined notification events which are triggered based on the status of an request. When the request status is "Request Completed" we should receive an email. Form what we are seeing for some reason the event is being trigerred twice for each request.
    <plugins pluginpoint="oracle.iam.request.plugins.StatusChangeEvent">
    <plugin pluginclass="oim.notification.EnableUserNotificationEvent" version="1.0"
    name="EnableUserNotificationEvent">
    <metadata name="status">
    <value>Request Completed</value>
    </metadata>
    </plugin>
    </plugins>
    Thank you in advance

    In your plugin, i suggest you do a system.out.println of the data and and the operation. Maybe this will help you to identify why it's triggering twice.
    -Kevin

  • Cheque Printing issue incase of Vendor advance payments

    Hi all,
         We are doing vendor payments using F-58 and printing cheque from there itself, and in case of advance payments we are using F-48 for payments and to print cheque we are using FBZ5.
          When we take printout from FBZ5 for advance payments we are getting two pages in the output, both the pages are using the same layout, in first page all the elements are filled with 'XXXXXX' and we are getting the desired one in second page.
         I am not getting how this unwanted first page is coming and i want to remove this.
         Pls help in this.
    Regard's
    Jean.

    Hi Aditya,
    Check the layout setting and what logic is used to trigger the second page.
              If lineitems in first page exceeds the main window then second page gets triggered.
    Also check the Raw data of the spool in SP01. Select the spool id and CTRLSHIFTF10, select the RAW and click on the display button. Check the paragraph and character settings applied to the printout.
    Try printing the same using different device type.
              I dont think we can do anything once spool request is generated with two pages, so it is not required to analyse on these points.
              I guess that driver program 'RFFOUS_C' is getting triggered twice or in single call of the program the 'WRITE_FORM' is trigerring twice. When I try to debug and check, it is taking through long code and also 'WRITE_FORM' is also getting triggered
    many times as I have many elements in the script.
              I am not able to figure out even any clue on this.
    Regard's
    Jean.

  • Event Related problem

    Dear all ,
    I have one work flow for    BUS2089(Travel) object . This object is getting trigered for method Requestcreated . My workflow number is WS98000011 .
    Now the requirment has come to  start the workflow even if the travel request is changed . So in the header part I added Changed event also with requestcreated .
    The problem is Even if the Travel request is created fresh . My work flow is trigerring twice once for changed and once for Request created . Other way the Approver for the Travel request is getting two workitem for same Travel request created .
    I understood that I have to create the function module and assaign it in SWE2 . But i am not very much clear about what sort of code has to be written in function module . Please help me by giving sample code . There is already function module existing for check function module Please find the enclosed code .
    data: v_2 type i,
          V_objkey type SWEINSTCOU-OBJKEY,
          V_objkey_U type SWEINSTCOU-OBJKEY,
          cl      TYPE mandt.
          cl = sy-mandt.
    IMPORT tab = V_objkey_U
            FROM DATABASE indx(XY)
            CLIENT cl
            ID OBJKEY.
    if V_objkey_U eq objkey and not V_objkey_U is initial.
       delete from
              DATABASE indx(XY)
              CLIENT cl
              ID OBJKEY.
       V_objkey_U = objkey.
       EXPORT tab = V_objkey_U
              TO DATABASE indx(XY)
              CLIENT cl
              ID OBJKEY.
        RAISE NO_RECTYPE.
    else.
        V_objkey_U = objkey.
        EXPORT tab = V_objkey_U
               TO DATABASE indx(XY)
               CLIENT cl
               ID OBJKEY.
    endif.
    ENDFUNCTION.
    What should i modify here .

    Why dont you use the Change event as the triggering event of the Wflow.
    Since Change event gets triggered with ReleaseCreated event.
    Then use SAP_WAPI_WORKITEM_TO_OBJECT FM to create an attribute which you can put in SWB_COND so that a new workflow does not get triggered if already a Workflow is in progress. Inside the Workflow make use of Fork and wait for event change step.
    Thanks
    Arghadip

  • LSO Cancellation Workflow issue???

    Hi Experts,
    I have copied the standard LSO Cancellation Workflow WS12000004, whenever i cancel the course in the portal the workflow is triggering and generating 2 parallel work items of Time Dependent Sub workflow . There is no fork in the main workflow even though its generating the same sub workflow parallel. But as per my requirement the sub workflow need to generate once... How can i achieve this???
    Thanks,
    Srikag

    Thanks for your reply...
    Whenever the event is triggering only one workflow is trigerring but its generating 2 same work items parllely, but i am not sure why its happening... Inside the workflow there is a condition based on that it will choose the path as Time dependent or Time independent course these both are 2 different sub workflows... Time dependent sub workflow is trigerring twice...
    I have checked the configuration in that they maintained the same workflow twice for different courses... Do you think this will be the problem...? If so 2 times the same workflow should trigger but in our case only one time workflow is trigerring but its generating the 2 same work items parllely...
    thanks,
    Srikag

  • Drop Down shows the values twice

    Hi,
    In MPP, there is a drop dop which displays all the Infotypes along with the description.
    Populated all the Infotype using the FM F4IF_INT_TABLE_VALUE_REQUEST in Process on Value-request.
    But the drop down shows the values twice as,
    PA000 : Organisation Assignment PA000 : Organisation Assignment
    PA001: Actions  PA0001: Actions
    In debugging,i have checked the internal table which i pass to the FM, it has only one time.
    Could be help me to resolve this.?

    Ensure your code follows below logic
    PARAMETERS: pa_it TYPE t582s-infty AS LISTBOX VISIBLE LENGTH 40 MODIF ID 2md.
    TYPES: BEGIN OF t_infty,
            infty TYPE t582s-infty,
            itext TYPE char40,
           END OF t_infty.
    DATA: it_infty TYPE STANDARD TABLE OF t_infty WITH HEADER LINE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_it.
        REFRESH it_infty.
        SELECT * FROM t582s WHERE sprsl = sy-langu.
          MOVE-CORRESPONDING t582s TO it_infty.
          it_infty-itext = t582s-itext.
          CONCATENATE it_infty-infty t582s-itext INTO it_infty-itext SEPARATED BY ' - '.
          APPEND it_infty.
        ENDSELECT.
        PERFORM dropdown_list_values_create TABLES it_infty USING  'INFTY'.
    FORM dropdown_list_values_create  TABLES f_tab
                                      USING retfield TYPE dfies-fieldname.
      "display internal table as a dropdown list,
      "return field 'INFTY' when the event is trigerred
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = retfield
          value_org       = 'S'
        TABLES
          value_tab       = f_tab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    "dropdown_list_values_create
    Regards
    Marcin

  • Instrument drop down shows Logic twice

    Attached is screen shot of the instrument channel drop down choices . Notice how Logic appears twice, once normal and then under the AU Instruments.
    Just wondering what is at play here. thanks, Kendall

    Ensure your code follows below logic
    PARAMETERS: pa_it TYPE t582s-infty AS LISTBOX VISIBLE LENGTH 40 MODIF ID 2md.
    TYPES: BEGIN OF t_infty,
            infty TYPE t582s-infty,
            itext TYPE char40,
           END OF t_infty.
    DATA: it_infty TYPE STANDARD TABLE OF t_infty WITH HEADER LINE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pa_it.
        REFRESH it_infty.
        SELECT * FROM t582s WHERE sprsl = sy-langu.
          MOVE-CORRESPONDING t582s TO it_infty.
          it_infty-itext = t582s-itext.
          CONCATENATE it_infty-infty t582s-itext INTO it_infty-itext SEPARATED BY ' - '.
          APPEND it_infty.
        ENDSELECT.
        PERFORM dropdown_list_values_create TABLES it_infty USING  'INFTY'.
    FORM dropdown_list_values_create  TABLES f_tab
                                      USING retfield TYPE dfies-fieldname.
      "display internal table as a dropdown list,
      "return field 'INFTY' when the event is trigerred
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = retfield
          value_org       = 'S'
        TABLES
          value_tab       = f_tab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    "dropdown_list_values_create
    Regards
    Marcin

  • PTax ded Twice incase of WPBP SPLIT (Mid month Transfer)

    Hi Friends:
    In SAP, whenever an Employee transfers from one state to another then system deducts P Tax Twice in that Payroll Period and this is a standard behaviour. (Due to two Splits and two regions)
    Ex: 1- 15 in MH and 16 to 30 in AP then P tax of MH is deducted for 1-15 days GROSS and P Tax of AP deducted for GROSS on 16 to 30.
    Now, i want to deduct only the P Tax for the Last split record in that Payroll Period. That is P tax for Extire GROSS to be deducted based on AP Region slab.
    Has anyone faced this scenario/ issue. Any Exits/ BADI's available to achieve this?
    regards,
    Srikanth

    Hi
    If you want to differ from the standard calculation then you can use the BADI
    HR_IN_CALC_PTX_BASIS
    Regards
    Sumit Pradhan

  • Got my password wrong twice and my mini is disable. I connected to iTunes, but can't get it to work. Can some one guide my through?

    got my password wrong twice and my mini is disable. I connected to iTunes, but can't get it to work. Can some one guide my through?

    If it's showing the red disabled screen due to incorrect passcodes then you may need to put the iPad into recovery mode : http://support.apple.com/kb/ht1808 - you should then be able to reset the iPad via your computer's iTunes and restore/resync your content to it

  • I'm on ff 3.5.5 for Mac. I've been prompted twice to download latest version. Each time I have dragged the ff icon from applications folder to the dock and all seems ok. But next time I start ff it says I'm on 3.5.5 and should update to latest version!

    There was no "update failed" message
    I wonder whether I'm doing the right thing when I drag to the dock. There's only one ff icon in the applications folder. The first time I was prompted to update it showed that days date next to the icon as if the update was successful. The second time was a few days later but I think it was still the same date next to the icon (25/8/10) I've only just noticed that (on 10/9/10) so can't be sure but I'm sure the second time was around 2nd or 3rd of Sept.
    Also, I am running two versions of ff- one is english, the other is the Italian version. They can't be opened at the same time but they seem to talk to eachother in the background, so to speak, because when I open one after a long gap, it opens with all the history and settings of the other one, right up to the last website I went to. I think I closed both when updating because it prompts you to close all programmes and restart (I think/ remember) so I just clicked ok to that prompt.
    By the way, I got the prompt to update twice for ''BOTH'' the Italian and the English version- so 4 times altogether so it would seem that ff does recognise them as separate but still has problems concluding the update for each separate one respectively.
    Thank you very much if you can help.
    Trapperjohn

    Download a new copy of the Firefox program: http://www.mozilla.com/firefox/all.html
    Trash the current Firefox application to do a clean reinstall.
    Install the new version that you have downloaded.
    Your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks and other personal data.

  • Brand New MacB Air and i haven't been able to get passed the format which has had to be done twice because, I have a French Numeric Keyboard and Language in English.  The minute I type in my password, the keyboard gives me letters that i did NOT type.

    I live in Switzerland and can only buy a Mac Air with a French or German keyboard, no chance to buy an English keyboard Mac here,.  When setting up  I chose the French numerique keyboard, although there are two choices French or French numerique.  I put in my language as English.  When all was set up I came to the start page and had to put in my password, by the grace of g....I just happened to see the first letter I typed before it turned into a dot.  My password which was supposed to start with the number 2 showed a french e with accent before it quikly became a dot.
      Because of the dot system, this meant that I had no clue what the keyboard was typing as my password ...........and true enough my password was not accepted despite my trying all combinations.  I have had to reformat twice now thanks to Apple Chat and both times my password was not accepted.  I am in the process of formatting it again, this time on my own.  If the Start page does not accept my password again this can only mean that the Mac left the factory with faults.  I could not be more disappointed with the money spent and the time and trouble that Apple Chat and I have spent in trying to correct a brand new out of the box Mac.  I have a cheap Toshiba laptop also with a french keyboard and english language which gave me no trouble at all.  I am not impressed with the so called King of computers!  First of all the dot system is daft.  People want to be able to see and confirm their passwords before they are set for good.  Second,  this problem is going to give me a lot of grief.  Switzerland business is not renowned for its after sales service or the time it takes to do repairs.  When I had an issue with my Vaio laptop which was still under warranty, they kindly picked it up from my house, repaired and promptly returned it.  How's that for good proper service.

    i didn't read a lot of your 2nd paragraph, but it seems like the password is the issue, right?
    do a true clean install
    reboot your machine and hold down command+option+r, you should see a spinning globe - if you don't see the globe or anything that reads internet recovery, shut down and try again
    at menu, chose disk utility and once there, find your HD on the left side, select the physical name and erase it as mac journaled
    exit disk utlity
    at menu, choose install OSX
    this time, when it asks for a password just hit continue, it will let you complete without a password
    you should be able to get into your laptop, now figure out what password you'll be able to use with your kb issue

  • In ALV Report output heading is printing twice.

    Hi Experts,
    Im working on ALV Reports.
    Im printing header text by using listheader and commentary write function module.
    the problem is when i sort any column in ALV ouput the heading is printing twice.
    Again if i sort the column the heading is printed is 4 times.
    so if anybody knows the solution how we can avoid repetition of heading ,
    Please reply me as soon as possible.
    regards
    Imrangs.

    Hi Noorie,
    Thanks a lot.
    Your answer is perfect.
    Bye.
    Regards,
    Imran

  • I have multiple devices in my family. Each of us has an iPhone and an iPad. Is there a way for each of us to have our own Apple ID but one account so we can all get the same music, movies, books, etc. I can't see paying twice for something in the same fam

    I have multiple devices in my family. Each of us has an iPhone and an iPad. Is there a way for each of us to have our own Apple ID but one account so we can all get the same music, movies, books, etc. I can't see paying twice for something in the same family.

    Welcome to the world of digital media. Your can't really transfer it. I don't know what the rules are about transferring to your spouse but I do know that in some cases when you die, your heirs cannot inherit your digital media. This is why there is still an advantage to buying the CD since the usage rights belong to whomever holds the physical media.
    A possible workaround is to burn the songs to a music CD with yout account (tracks only without song titles) and then having your wife upload it as a regular music CD onto her account. It's been a while since i've done this so I'm not sure if it would work now.
    Please note that I'm not advocating copyright and/or TOS violations. I'm only suggesting ways to copy music for your own personal use which has traditonally been permitted. I only did this because I wanted to convert iTunes songs to mp3 files so I could burn them onto a data CD for use in my car. It would make sense that since married couples are a joint entity, this would be personal use.
    Also, I'm not a lawyer so don't take this as legal advice.

  • My iPod Touch is running on ios 7. In the last two and a half months all the apps of my iPod have been wiped out twice. I had to download all the apps all over again. Why is this happening?

    My iPod Touch is running on ios 7. In the last two and a half all the apps of my iPod have been suddenly wiped out twice. I had to download all the apps all over again. Why has it happened?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                              

  • I've just updated my iPhone to the new iPhone OS and now it won't work and iTunes won't recognise that it's there.  I've uninstalled iTunes and reinstalled twice and it's not working.  Please help.

    I've just updated my iPhone to the new iPhone OS and now it won't work and iTunes won't recognise that it's there.  I've uninstalled iTunes and reinstalled twice and it's not working.  Please help.

    I have not had wifi since November when I upgraded to the newest IOS version.  I called the Apple help line and they told me some things to do and I tried them all and they worked for a few hours and then wifi shut off again.  I kept doing what they told me and it worked for a couple more days and then I could never turn it on again.  My blue tooth doesn't work either.  I had to actually increase my data usage with AT&T becuase of this.  When I did that in December I went to the Apple store and was told that it is a hardware issue and since my phone is out of warranty I would have to pay for a new phone because they could not fix the issue.  My upgrade isn't up until June 2014 so not only do I have to wait for the upgrade and I am not paying for a new phone but I have to pay $10 plus extra a month on my cell phone bill because I was going over on my Data!!!  I have been beyond upset about this and Apple is not doing anything about this nor did they offer up some way to resolve the issue because obviously it is not just some rare incident if several people are having this issue.  Who knows how many people out there have had this issue and have not said anything about it.  Now there is a newer update that I can't do because it requires wifi in order to download.
    June can not get here fast enough and I may not go back to Iphone after dealing with this for so long with no help from Apple.

Maybe you are looking for