My workflow is not listed in the GOS (Services for object)

Hello Experts,
I developed a workflow and linked the BO ZBUS2081. This is sub type of standard BO BUS2081. I am using the custom event INVOICEBLOCKED to trigger the workflow. The workflow is triggered propely when the invoce is created (with block) thru MIRO and I can see the workflow in SWEL or SWI6 or SWI14.
But, the workflow is not listed in the services for objects button of the invoice display using MIR4.
If I use the standard event 'BLOCKEDQUANT' as starting event, the workflow is triggered and I can view it in services for object.
In the table SWW_WI2OBJ has all entries about the workflow triggered using standard event or custom event.
How can I make the services for object in invoice list my workflow that was triggered using custom evet?
Appreciate your help.
Regards
Siva S

Hi Siva
Thanks for marking this thread answered.....We are glad that your issue was solved :-) ....... But I do agree with Rick Bakker, the first correct answer was by Paul Bakker and I had just elaborated on that.
Please mark the first correct answer as the "green" one.
Regards,
Modak

Similar Messages

  • HT2376 Why is my key not listed in the order history for QuickTime Pro?

    Why is my key not listed in the order history for QuickTime Pro?

    Why is my key not listed in the order history for QuickTime Pro?
    You would have to ask Apple to get a "real" answer. This is a peer-to-peer user foum and anything we say would be pure speculation.

  • GOS - Services for Object attachment icon

    I may be posting this in the wrong forum, but my question is this.  Is the Services for Object button ICON supposed to change colors or something when there is an attachment?  How can you tell if there is an attachment for the object?

    Thanks for the reply.  This is true, what you say.  But I was talking about the the Services for Object Icon.  I want to know if an attachment exists without having to click on on the button.  I would expect the button to change colors or something if there is an attachment.

  • Services for Objects Attachement List Display Note not Viewable

    Hi Experts!
    Good day! I'm trying to display a note in FK03 (related to Services for Objects - Attachment List) and I only see white screen pop up window. No message and text information. When I tried to use another PC I can successfully view it.
    Is there's a plugin that I may need to install?
    Your help will be greatly appreciated.

    Hi Marty
    It is my understanding that the IXOS licensing is based on users retrieving of documents not necessarily the viewer so the licensing implications of having non-IXOS viewers accessing documents using the generic archivelink viewer is still likely to result in licensing implications if an audit is conducted at any stage.
    The transaction for specifying the viewer is the OAA3 and OAG4.
    Regards,
    Athol

  • From ME49 while navigating to ME47 "Services for Object" ICON not displayed

    Hello Friends,
    I am facing one peculiar issue that when I am Navigating to ME47 transaction from ME49 Transaction i.e. in ME49 Transaction when we double click on the RFQ Number it takes to ME47 Transaction. Here the ICON "Services for Object is being not displayed.
    But when I am opening up the transaction ME47 directly for the respective RFQ Number, there I can see the ICON "Services for Object".
    Have a doubt why from ME49 when navigating to ME47 the ICON is not being displayed?
    Friends please help me in solving the above issue.
    Thanks in advance
    With Regards
    Pradeep Goli

    Hi Atkin,
    Thanks for the response. Yes, it was the authorisation related issue. I have confirmed this by looking this button in another Users ID with SAP All role.
    Best Regards
    JK

  • The workflow could not check out the list item.

    Hi Guys,
    I have a workflow enabled on document library and it needs to started manually.
    Whenever user starts workflow manually, gets following error:
    "the workflow could not check out the list item. Make sure the list item is not checked out." list item is not checked out & this workflow was working smoothly earlier.
    OutCome: The workflow operation failed because the workflow lookup found no matching item.
    I have gone through below links:
    https://christopherclementen.wordpress.com/2014/05/23/oob-approval-workflow-error/
    https://social.msdn.microsoft.com/Forums/office/en-US/f673d0f6-92eb-4057-95ff-ed3cb7790360/the-workflow-operation-failed-because-the-workflow-lookup-found-no-matching-item?forum=sharepointcustomizationprevious
    Any clue on this?
    Thanks, Nilesh

    maybe check out for editing documents setting is turned on so wokrflow needs doc to ce cheked out before proceding and user might not have permission to do that.
    please refer below link:
    http://sharepoint.stackexchange.com/questions/32399/workflow-error-the-workflow-could-not-update-the-item-possibly-because-one-or
    http://community.office365.com/en-us/f/154/t/243062.aspx
    http://stackoverflow.com/questions/1272957/document-checked-out-in-sharepoint-when-workflow-starts
    Please mark as answer if you find it useful else vote for it if it is close to answer..happy sharepointing

  • Services for Object (GOS) Attachement List not showing after attachment

    Hi All,
    I have created a new entry for the Generic Object Service List and this links to a copy of the CL_GOS_SRV_ATTACHMENT_CREATE class (Create attachment) with some additional logic. However, after attaching a file, the "Attachment List" does not become available until after I re-enter the transaction. The attachment list is showing the correct attachments.
    After some (understatement...) investigation, I found that even if I try and link the new service to a unchanged copy of the CL_GOS_SRV_ATTACHMENT_CREATE service in SGOSATTR, it is not working. It is attaching fine, but the "Attachment List" entry in the Services for Object Menu is still greyed out. If I attach the original class CL_GOS_SRV_ATTACHMENT_CREATE to the newly created entry it works fine. e.g. straight after I attach a file to the transaction, the menu entry becomes available.
    I can't find where the re-draw of the GOS menu happens and hence can not determine what is going wrong. Does anybody know if this is part of the Kernel or is this actually done in ABAP ?
    Am I missing something ? Debugging including system debugging for two days now and can't find it... very frustrating.
    Any help would be appreciated.
    Thanks,
    Wouter.

    Hi Wouter,
    I had originally posted to ask if you had resolved this since I was facing the same issue, but then deleted my post when I was able to get it working. Sorry, I didn't mean to initiate a flurry of activity in such an old thread.
    My scenario is I created a new GOS service entry in table SGOSATTR using transaction SGOSM. My new service uploads attachments to an external document management system via a call to a RESTful web service. The class I use in the SGOSM entry is a custom subclass of CL_GOS_SRV_URL_CREATE.
    I resolved this issue by taking a look at what CL_GOS_SRV_URL_CREATE does in its EXECUTE method. The key bits to refresh the GOS Attachment List with the new attachment are...
    raise event commit_required. " if SGOSM has the commit flag checked
    raise event service_succeeded
           exporting eo_service = me.
    These events tell any subscribers to go do their thing-- which in this case includes a refresh of the GOS Attachment List. So in the EXECUTE method of my custom subclass, after I call function BINARY_RELATION_CREATE, I raise these events...
    CALL FUNCTION 'BINARY_RELATION_CREATE'
       EXPORTING
           obj_rolea     = gs_object
           obj_roleb    = rel_doc
           relationtype = 'URL'
       EXCEPTIONS
           OTHERS       = 1.
    CASE sy-subrc.
       WHEN 0.
           MESSAGE s043(sgos_msg). " The attachment was successfully created
           RAISE EVENT commit_required.
           RAISE EVENT service_succeeded
                 EXPORTING eo_service = me.
       WHEN OTHERS.
           MESSAGE s042(sgos_msg). " The attachment has not been created
    ENDCASE.
    I hope this is helpful to you even though your initial implementation was a while back. Thanks for replying to my question though!!
    Cheers,
    Amy

  • Media Encoder CC not listed in the list of app in CC

    I'm running Windows 7 Ultimate and I am a Adobe Creative Cloud for Teams member.  I'm trying to install the new version of Media Encoder, but when i open Creative Cloud app it is not listed in the long list of apps.  I have CS6 and CC installed on my computer.
    Can you offer some suggestion how i can download and install this program? 
    I am trying to convert a mov file to webm and i am hoping Media Encoder CC can do that since I did not see a webM choice in media encoder cs6.
    Thanks.

    Brenadan Bolles (fnordware) has recently posted some beta versions of WebM exporters for Adobe Media Encoder. Details are here:
    http://forums.adobe.com/message/5463405#5463405

  • Where is the photo tab on itunes? My device is not listed on the left side of my screen and there is no photos tab on the right of my screen. I want to delete photo albums that were synced through itunes to my ipad 3.

    I synced several photo albums to my iPad 3  from my computer through iTunes. Now, I would like to remove them and have discovered that they cannot be removed except through using iTunes. Instructions that I've read say that once the device is connected to and selected from the list in iTunes, select the Photo Tab and then the folder that contains the photos etc.  I never get that far because I do not have a Photo Tab to select in iTunes. How do I find this illusive tab so that I can delete these albums that are merely duplications of other pictures and are just occupying space. I need to get rid of them. Can anyone help me find the photo tab. I cannot move past that step until I do. Also, my device is not listed on the left side as stated in the instructions. It's in the bar on the upper right area of my screen and is automatically selected when connected. I am using the current version 11.1 for iTunes and IOS 7 on my iPad 3, if that helps.

    I have the same problem on the latest iTunes software and Windows 7. My window is maximzed and I do not see any tab for photos. Seems related to a recent update (IOS7?) as this was there - at least before the very big change to the interface.

  • My country is not listed in the Mac app store and iTunes?

    My country is not listed in the Mac app store or iTunes. and yes ive tried putting in false information like 'I live in the USA, NY' but whenever i try buying something it says "Your credit card information does not match your banks records, Please enter a US billing card.. and such. Because of this i have no choice but to use what you call 'pirated' applications. Any help fellow mac users?

    Sorry, but it's Apple's policy...
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location."
    The Complete Guide to Using the iTunes Store | iLounge Article

  • HT1539 I recently downloaded my digital copy of titanic and from the itunes extras screen I push play and nothing happens.  The movie is not listed, only the itunes extra is listed in the list.  How do I repair?

    I recently downloaded my digital copy of titanic and from the itunes extras screen I push play and nothing happens.  The movie is not listed, only the itunes extra is listed in the list.  How do I repair?

    I have the same problem on the latest iTunes software and Windows 7. My window is maximzed and I do not see any tab for photos. Seems related to a recent update (IOS7?) as this was there - at least before the very big change to the interface.

  • Provider Hosted App not listed in the App Part or Web Part

    What I have done:
                    I have created developer site collection
    in office 365 
                    I have created a provider app in visual
    studio, modified appmanifest.xml with the client id, client issue (from developer site) and provided targeted domain
                    I have deployed web application from the
    visual studio into Azure it can be accessible default page
                    I have published App project into Azure
    What I tried:
                    I have confiured app catalog in the SP 2013
    office 365 developer site Central Admin where I can register my apps
                    I have registered my appfile in the catalog
    site collection
                    I have created another site collection with
    team site template and added the app there
                    I created a web part page and wanted to
    insert this app as a web pat in the page it is not appearing/coming in the app part to insert
    What I wanted now:
                    I wanted to insert this app in the site
    web part page of any SharePoint 2013 site collection 
                            App
    part listed in the Site Content but it is not listed in the web part page " Web part or App Part" containers to insert...
    Am I missing something? any one encountered same issue? Any help appreciated.
    Regs,
    Madhu

    Hi Madhu,
    Once you deploy your App, The App will get deployed to the App web rather host web. That is reason you will not be able to find the app either in App part or webpart section of host web.
    http://msdn.microsoft.com/en-us/library/fp179925.aspx#IsolatedDomain
    My Blog- http://www.sharepoint-journey.com| Twitter
    If a post answers your question, please click "Mark As Answer" on that post and "Vote as Helpful

  • How do I download Premier Pro in cc? It is not listed in the apps list.

    How do I download Premier Pro in cc? It is not listed in the apps list.

    What Mark said...
    Adobe's MINimums http://www.adobe.com/products/premiere/tech-specs.html
    -Programs won't display if they will not install on your computer
    -http://helpx.adobe.com/creative-cloud/kb/all-apps-displayed-aam.html

  • Why is Media Encoder app not listed in the apps for download in CC?

    Media Encoder application does not appear in the list of apps I can download from Creative Cloud.
    It appears as separate application in the Adobe products, so NOT part of Premiere Pro or similar.
    How can I get to download the Media Encoder app?

    Hi Chris,
    Please refer the thread: Re: Media Encoder CC not listed in the list of app in CC.
    Regards,
    Romit Sinha

  • Since installing the latest update on my iphone 3gs this afternoon whatsapp now says it cannot access my photos.  I have gone to settings-location services- but whatsapp is not listed in the list below.  Please help!!!!

    since installing the latest update on my iphone 3gs this afternoon whatsapp now says it cannot access my photos.  I have gone to settings-location services- but whatsapp is not listed in the list below.  Please help!!!!

    Contact Whatsapp for support.
    There is no logical expectation for Whatsapp to be listed under location services or for that to have any affect on what the app can access.

Maybe you are looking for

  • Error While activating business process in sxi_cache

    Hello, I get following warning in TX: sxi_cache, when I try to deploy a integration process. Conversion From '[NN.]' to '[XC.ZXI_PROXY_VV2_STATUS_ABS_0001]' Can Cause Data-Dependent Errors Any ideas what's the cause for this warning? Regards Christia

  • Text Tab delimited file-Strcuture-validation

    Hi Folks, 1.Is there a way to check whether the file is text tab delimited or not,programatically ? 2.can we check whether the data in the text tab delimited file is in line with the structure of the internal table into which it is going to be upload

  • How to implement a service that runs once a day?

    Hi all, is there a service or so available that waits for example 24 hours and runs every day for example at 9:00 am? I know there is the Wait service with the scheduleWait operation, but I can only specify days, hours or minutes. So I can not use th

  • How to convert jar in java

    hi plz help me out .... how to convert a java program into an jar file ..... if u have tools just send it to me its urgent

  • Viewing and modifying deployed ess appls in NWDS

    Hi All, we successfully installed and configured NWDI and created tracks and imported the relevant sca files in the Development system. At this point of time, we want to open up one of the ess applications in NWDS to be able to understand the structu