For a BO and Object Key a particular workflow already triggered or not?

Hi ,
I want find for an Object Key and Event is there any workflow Trigger or not.
e.g. My ObjectKey = “400001210000000626” and Event = “CREATED” and Worflow No = “WS91100022”.
I want to Know Whether this workflow (WS91100022) is triggered for this same Object Key (400001210000000626). Where I can find is there any table will have entry .
Can you please tell me?
Regards,
Surjith

Hi surjith,
Us this FM to get all the wfs triggered. This really works
/Function Module to get all the work items created based on the key of object
      CALL FUNCTION 'SAP_WAPI_WORKITEMS_TO_OBJECT'
        EXPORTING
          objtype                  = lws_objtype
          objkey                   = lws_objkey
          top_level_items          = 'X'
          selection_status_variant = 0000
          text                     = 'X'
          language                 = sy-langu
        TABLES
          worklist                 = lws_worklist.
regards,
sheron

Similar Messages

  • How to get object type and object key of bapi_acc_gl_posting_post

    Hi,
       I want to upload data from flat file to FB01 transaction using BAPI. For this i found bapi_acc_gl_posting_post. How should i get the obj type and object key for this bapi.
    Please let me know wether this is correct bapi for fb01 transaction.
    Thanks in advance,
    Regards,
    Sun.

    Hi,
       I want to upload data from flat file to FB01 transaction using BAPI. For this i found bapi_acc_gl_posting_post. How should i get the obj type and object key for this bapi.
    Please let me know wether this is correct bapi for fb01 transaction.
    Thanks in advance,
    Regards,
    Sun.

  • Would Like to Get Report of Daily Emails In and Out from Members to a DL Exchange version : 2007 I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity is it possible ?

    Would Like to Get Report of Daily Emails In and Out from Members to a DL
    Exchange version : 2007
    I am the supervisor for the group and want to quantify this information. I do not need to see the content, just quantity
    is it possible ?

    Well, distribution groups don't really have a concept of "in" or "out". They only serve to distribute messages sent to them -- unless you're asking to know who was a member of the distribution group at the time a message was sent to the DL.
    Message tracking logs hold the information you want, though. You'd have to look for EXPAND events that reference the distribution group and take the sender's e-mail address from that event. If the DL is a simple one that's not a member of any other groups
    you could also look for RECEIVE events sent to the e-mail address of the group and get the sender's name from that event.
    You can use Powershell extract the rows of data from the logs, but you'll have to write the code to get the data out of those rows and into a format you want. Perhaps LogParser could be useful in place of Powershell?
    --- Rich Matheisen MCSE&I, Exchange MVP

  • HT201364 trying to install new software for OS mavericks and i get the he product distribution file could not be verified. It may be damaged or was not signed.can you assist

    trying to install new software for OS mavericks and i get the the product distribution file could not be verified. It may be damaged or was not signed error message
    .can you assist

    What "new" software?
    Barry

  • HT1766 I am getting a message that says my iPad has not been backed up for 2 weeks and even though I click OK the message will not disppear and let me use my iPac

    I am getting a message that says my iPad has not been backed up for 2 weeks and even though I click OK the message will not disppear and let me use my iPad

    Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • How to get object type and object key from Bapi_acc_gl_posting_post

    Hi,
      Currently iam implementing FB01 transaction thru Bapi_acc_gl_posting_post.
    I got object key by including document no, fiscal year and Document data
    I got object type from TTYP table. But iam not sure it is correct.
    After implemeting the BAPI return code is giving successfull and i commited the process.
    But at last data is not updating in BKPF table. There is no document number displayed at BKPF...Please go thru and do the needful its urgent.
    Thanks in advance....
    Regards,
    Ganga

    Hi Max,
            I have executed it and it is working only for GL posting but i need to make this for different accounting types like vendors, customers, material customers etc.
    I found BAPI_ACC_DOCUMENT_POST. when i executed it is giving error as 'Line entered several Times'.
    I following is my code. If time permits please go thru my code and do the need ful..
    Thanks in advance.
    REPORT  zk_fi_fb01                     .
    Data: v_objkey(20) type c.
    Data: Docheader type BAPIACHE09.
    Data: ACCOUNTGL LIKE BAPIACGL09 occurs 0 with header line,
         ACCOUNTRECEIVABLE like BAPIACAR09,
          ACCOUNTPAYABLE like BAPIACAP09 occurs 0 with header line,
          CURRENCYAMOUNT like BAPIACCR09 occurs 0 with header line,
          RETURN like BAPIRET2 occurs 0.
    Data: obj_typ like BAPIACHE09-OBJ_TYPE,
          OBJ_KEY like BAPIACHE09-OBJ_KEY,
          OBJ_SYS like BAPIACHE09-OBJ_SYS.
    *Data: gv_belnr type belnr_d.
    *Data:file_Na type String.
    Data: lsys like TBDLS-LOGSYS.
    *START OF SELECTION
    START-OF-SELECTION.
    *CALL FUNCTION 'NUMBER_GET_NEXT'
    EXPORTING
       nr_range_nr                  = '19'
       object                       = 'RF_BELEG' "'FIAA-BELNR'
      QUANTITY                      = '1'
      SUBOBJECT                     = '7777'
      TOYEAR                        = '2007'
      IGNORE_BUFFER                = ' '
    IMPORTING
      NUMBER                        = gv_belnr
    QUANTITY                      =
    RETURNCODE                    =
    *CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
    IMPORTING
      OWN_LOGICAL_SYSTEM                   = lsys
    EXCEPTIONS
      OWN_LOGICAL_SYSTEM_NOT_DEFINED       = 1
      OTHERS                               = 2
    *IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    *ENDIF.
    *concatenate gv_belnr '7777' '2007' into v_objkey.
    *Filling Document Header Details
    *Docheader-OBJ_TYPE = 'BEBD'.
    *Docheader-OBJ_key = V_objkey.
    *Docheader-OBJ_SYS = lsys.
    docheader-BUS_ACT = 'RFBU'.
    Docheader-USERNAME = sy-uname.
    Docheader-COMP_CODE = '7777'.
    Docheader-DOC_DATE   = '20070724'.
    Docheader-PSTNG_DATE = '20070725'.
    Docheader-FISC_YEAR = '2007'.
    Docheader-DOC_TYPE = 'KZ'.
    *Item data for ACCOUNTGL
    ACCOUNTGL-ITEMNO_ACC = '0000000001'.
    ACCOUNTGL-GL_ACCOUNT = '0000000501'.
    ACCOUNTGL-DOC_TYPE   =  'KZ'.
    ACCOUNTGL-COMP_CODE  = '7777'.
    ACCOUNTGL-FISC_YEAR  = '2007'.
    ACCOUNTGL-PSTNG_DATE = '20070725'.
    *ACCOUNTGL-DE_CRE_IND = 'S'.
    append ACCOUNTGL.
    ACCOUNTGL-ITEMNO_ACC = '0000000002'.
    ACCOUNTGL-GL_ACCOUNT = '0000400002'.
    ACCOUNTGL-DOC_TYPE   = 'KR'.
    ACCOUNTGL-COMP_CODE  = '7777'.
    ACCOUNTGL-FISC_YEAR  = '2007'.
    ACCOUNTGL-PSTNG_DATE = '20070725'.
    *ACCOUNTGL-DE_CRE_IND = 'H'.
    append ACCOUNTGL.
    *Account payable
    ACCOUNTPAYABLE-ITEMNO_ACC = '0000000001'.
    ACCOUNTPAYABLE-GL_ACCOUNT = '0000000102'.
    ACCOUNTPAYABLE-COMP_CODE  = '7777'.
    append ACCOUNTPAYABLE.
    ACCOUNTPAYABLE-ITEMNO_ACC = '0000000002'.
    ACCOUNTPAYABLE-GL_ACCOUNT = '0000400002'.
    ACCOUNTPAYABLE-COMP_CODE  = '7777'.
    append ACCOUNTPAYABLE.
    *Currency Amount
    CURRENCYAMOUNT-ITEMNO_ACC = '0000000001'.
    CURRENCYAMOUNT-CURRENCY_ISO = 'INR'.
    MOVE 1000 TO CURRENCYAMOUNT-AMT_DOCCUR.
    Append CURRENCYAMOUNT.
    CURRENCYAMOUNT-ITEMNO_ACC = '0000000002'.
    CURRENCYAMOUNT-CURRENCY_ISO = 'INR'.
    MOVE '1000-' to CURRENCYAMOUNT-AMT_DOCCUR.
    Append CURRENCYAMOUNT.
    clear CURRENCYAMOUNT.
    clear ACCOUNTGL.
    clear ACCOUNTPAYABLE.
    CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'
      EXPORTING
        documentheader          = Docheader
      CUSTOMERCPD             =
      CONTRACTHEADER          =
    IMPORTING
       OBJ_TYPE                =  obj_typ
       OBJ_KEY                 =  obj_key
       OBJ_SYS                 =  obj_sys
      tables
       ACCOUNTGL               = ACCOUNTGL[]
      ACCOUNTRECEIVABLE       =
       ACCOUNTPAYABLE          = ACCOUNTPAYABLE
      ACCOUNTTAX              =
        currencyamount          = CURRENCYAMOUNT
      CRITERIA                =
      VALUEFIELD              =
      EXTENSION1              =
        return                  = return.
    if sy-subrc = 0.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
       WAIT          = ' '.
    endif.
    if sy-subrc = 0.
    WRITE: / OBJ_KEY,
             OBJ_TYP,
             OBJ_SYS.

  • Waveburner and Soundtrack Pro :ask for a serial and XS key all the time

    Dears all,
    i have installed the Logic package on a new Mac. All seems fine but all the time i start Waveburner or Soundtrack pro i get a serial number and xs key dialog box. Can someone help me ?
    Thanks in advance.
    The system is a iMac 27 3.4 os 10.8.3.
    Best
    -Anton

    Problem solved in this way :
    Launch Waveburner -> type or copy the Logic 9 serial -> at the second dialog box ( insert xs key or type the serial ) type or paste the Logic 8 serial number.
    It work and also Sountrack is running flawless without serial ask.
    Cheers.
    -A

  • HT2638 since updating iPhoto it has ceased to open.  i have tried to Hold down the Command and Option keys on the keyboard but it does not work.  iPhoto still does not open

    Since updating iPhoto it has ceased to open.  I have tried to Hold down the Command and Option keys on the keyboard which is the suggested solution to then open a suggested solution to rebuild the library,  but it does not work.  iPhoto still does not open.  can someone please help?
    thank you

    Try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
        Home/Library/ Preferences folder.
    2 - delete iPhoto's cache folder(s):
    Home/Library/Containers/com.apple.iPhoto
    and, if there is one, the
    Home/Library/Caches/com.apple.iPhoto folder
    3 - reboot, launch iPhoto and try again.
    NOTE: For Mavericks, 10.9,  go to your Home folder and use the View ➙ Show View Options menu to bring the this window:
    Happy Holidays

  • Object key is necessary to imp. OSS note using note assistant

    Hi,
    Anybody can tell me is it necessary to obtain object key from SAP before implementing oss note, using Note assistant.Im not clear with object key, let me know about object key.
    bi,
    vijaya kumar

    As far as I know, no object key is required to implement OSS Note, using NOTE Assistant.
    For more information on Note Assistant, go to http://service.sap.com/notes
    There are a couple of tutorials available along with user manual.
    You will find that useful.
    Regards,
    Subramanian V.

  • My ipad automatically tried to update skype to version 4.1.1 It has been showing installing for 3 days and says waiting on the icon. It will not allow me to delete the app. When someone calls me on skype it rings but turns off as soon as I try to answer.

    My ipad automatically tried to update skype. It has been installing for 3 days and the message waiting is on the icon. I am unable to delete skype to try and re install. I have gone to the licence page but there is nowhere that I can agree the terms as it is still trying to load.

    delete the app on itunes (on PC) then download it again.

  • I bought and installed many fonts for a project and one font in particular which is showing up in the font list on a new file, is missing when I open an existing file containing that font. I can't understand why that's happening and the font is Centrale S

    Hi
    I am encountering a missing font error on Adobe Illustrator for a font that I recently bought - Centrale Sans Bold. This font is clearly installed in the system's font folder and is also showing in the font list on Adobe Illustrator. But when I open an existing file containing this font it is giving the error "The document uses fonts or characters which are not available or are in a different format than originally specified".
    We have also bought Centrale Sans regular from a different website as we couldn't find both on one, could that be clashing somehow?
    Also the existing file was created on MAC plattform and we are using a windows plattform to open it. That to me doesn't seem like an issue as all other files are opening up fine and I have bought around 47 fonts and only this font seems to be not working. I have also written to the website I bought it from but I have also bought around 20-25 fonts from them and all the other fonts are working fine too. Maybe its an illustrator related problem?
    Please help!!!!!!

    There is one way its getting fixed. Once I update my Adobe Illustrator CC to Adobe Illustrator CC 2014 it is further allowing me to go into the system folder and allocate the font to the file so that it can replace it. My only concern now is that our MAC partners who will receive these files back from us have Adobe CS6. We will down save it to CS6 but I hope they won't experience any font issues because of us using CC 2014? Any light you can shed on this?

  • Request for recovery image and activation key

    Dear HP Support,
    I am Bhavanarayana from Hyderabad India. I have got a laptop HP G60 Notebook PC with pre installed os. My friend purchased this laptop from US and gifted to me. Recently my laptop got effected with virus and receovery partition also got effected which obstractiong when attempted for recovery. I have downloaded OS ( not original OEM ) from website and now facing the activation problem. As the devise purchased at US, Microsoft as well as HP support at India are helpless to activate the product.
    Kindly help.
    system Serial Number : [Moderator edited Serial Number]
    Thanks & Regards
    P Bhavanarayana
    E-Mail ID : [Moderator edited email address]

    I have just sent you a private message. If you are not sure how to check your forum messages, this post
    has instructions.
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • My mac mail is asking for my password and its the correct one, but it still does not want to connect to the mail? how do i fix this?

    It's asking for a password, i'm putting in the correct one and it's still not working. it says mail cant connect to the account "...."
    please help!

    If you've activated 2-step verification, you need to generate an application-specific password in your Google account and enter it instead of the login password you use on the website.

  • I had to get a new apple ID for my Iphone and delte the old account,but now i can not update the apps I had installed from my old Iphone and could I transfer the music albums I bought to this new apple account as well ?

    could you please get back to me as soon as possible , there is an update I have been anticipating for a about two months now and it  is coming very soon.

    This is a user to user forum; there is no one from Apple here to get back to you. Apps and music are forever associated with the Apple ID  account they were purchased with. There is no way to transfer them to a different account. That is why Apple lets you change the email address associated with your account without having to get a new account. If you didn't do this, but instead got a completely new account, you are out of luck. You can still go back to the old account and just get a new email address for it.

  • HT1665 we have 2 Iphone 5 in the family for 6 months and 2 USB cables have broken already, is there a subsitute cable as the Apple one is usless

    I have had 2 USB cables break for Ipone 5 within 6 months. These cables are very bad and I suggest a design fault
    We had no problems with the older phone cables

    8-doing a factory reset, then repeating steps 1 through 6
    Do you mean a restore to factory settings?. If so did you set up as new or restore from back up afterwards?

Maybe you are looking for

  • Problem in loading  multiple textures

    hi guys i need some help form you in loading *.obj files into my scene. when i load a building into my scene only the white building is loading without any textures. when i tried to load a texture for eg: green...the whole building is in green color.

  • IPhone email sub folders do not sync with Push feature

    Greetings all, I have been working with the iPhone for a while with one of my tasks being to the iPhone Sync Push technology to work well for us. Unfortunately it only partially works. It will on push to the root of the INBOX and any other sub folder

  • My wish list doesn't have an option to buy?

    I don't have an option to 'buy' against one or more items in my wish list.  I can share, gift etc but not actually buy..anyone else had the same problem?

  • Rotate View Tool (R) reset shortcut

    Is it possible to create a custom keyboard shortcut to Reset View in the Rotate View Tool? 

  • How do I build a complex print condition?

    I am in the process of building templates to replace the layouts from reports 6i and I have hit one on the AR invoice which I an struggling with. How do i replace this format trigger in XML?: FUNCTION R_LINES1FormatTrigger RETURN BOOLEAN is BEGIN if