AQ subscriber exception

Using native java AQ, a subscriber makes deque call from a seperate process and dies before retrieving the process. How will AQ handle this exception.

It appears that the subscriber table associated with the queue table of the queue, AQUSER.INPUT_QUEUE
does not exist.
To see it it exists:
1. connect as AQUSER
2. To get the queue table name, select queue_table from user_queues where name='INPUT_QUEUE';
3. To check if the subscriber table exists, descr AQ$_<queue table name>_S.
This table should have been created when the queue table was created for multiconsumer queues.
To see if the table was created for multiconsumer queues:
select recipients from user_queue_tables where queue_table='<queue table name>';
This column should have the value 'MULTIPLE' for multiconsumer queues.
Note: MGW only supports outbound propagation from multiconsumer queues.

Similar Messages

  • I want to rebuild my Subscriber

    Hello
    I got this problem for my cucm version System version: 7.0.2.20000-5
    Product Part Number: MCS7825I3-K9-CMC1.
    I want to rebuild my Subscriber , my publisher is working fine , only the subscriber has an issue and I m thinking in rebuild it .
    I have taken a backup successfully for both of my server's publisher and subscriber .
    I don't know the security password configured for the replication .
    any advice about rebuild the subscriber ? can I configure any security password during the installation of my subscriber ? then later I will do restore for my subscriber .
    because Idon't want to face any DB replication issue , 
    Kind Regards
    Mohammed Khamis

    Hello,
    As you need the TFTP data on the subscriber, then you need to restore a good backup after the rebuild ( database replication copies all data form publisher to subscriber except for tftp data).
    And as you need to a restore, the security password must match, so you need to proceed as below:
    1. Change Security password on BOTH Publisher and Subscriber, this require a reboot.
    2. Take a new backup from BOTH publisher and subscriber,
    3. Rebuild the Subscriber.
    4. Restore the backup in the Subscriber only.
    If the subscriber currently not running and there is no way to get it running, then your only way is to change the security password on the publsiher only and re-install the sub  without doing any restore. In this way the TFTP data on Sub will be lost, but there no that impact upon proceeding this way.
    Thank you,
    Shadi

  • New @ RMI need help with  java.rmi.UnmarshalException: error unmarshalling

    Hi @ all out there,
    I'm new with Java RMI and have to write a EventSystem for an college project where clients can subscribe to a topic and get notified when someone publishes a message to the subscribed topic.
    At server-side I have a class called EventSystem that provides methods for subscribing and unsubscribing from topics, and also for posting messages (for publishers).
    To subscribe i thought that the client must specify the topic and also itself ( means that a client calls in this way: obj.subscribe("mytopic", this).
    The EventSystem handles a list of all clients, and whenever a new message is posted it goes trough all clients and invokes the handleMessage(String msg) method that all Clients have to provide.
    On my local machine without RMi this concept works just great.
    I now tried to get it working using RMI , but I get the following Exception when starting the client (the server starts fine) :
    Looking up for rmiregistry at 138.232.248.22:1099
    Subscriber exception:
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
            java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
            java.io.InvalidClassException: SubscriberImpl; SubscriberImpl; class invalid for deserialization
            at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:336)
            at sun.rmi.transport.Transport$1.run(Transport.java:159)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
            at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
            at java.lang.Thread.run(Thread.java:619)
            at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:255)
            at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:233)
            at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:142)
            at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:178)
            at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:132)
            at $Proxy0.subscribe(Unknown Source)
            at SubscriberImpl.main(SubscriberImpl.java:48)
    Caused by: java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
            java.io.InvalidClassException: SubscriberImpl; SubscriberImpl; class invalid for deserialization
            at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:293)
            at sun.rmi.transport.Transport$1.run(Transport.java:159)
            at java.security.AccessController.doPrivileged(Native Method)
            at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
            at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
            at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:885)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:907)
            at java.lang.Thread.run(Thread.java:619)
    Caused by: java.io.InvalidClassException: SubscriberImpl; SubscriberImpl; class invalid for deserialization
            at java.io.ObjectStreamClass.checkDeserialize(ObjectStreamClass.java:713)
            at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1733)
            at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
            at java.io.ObjectInputStream.readObject(ObjectInputStream.java:351)
            at sun.rmi.server.UnicastRef.unmarshalValue(UnicastRef.java:306)
            at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:290)
            ... 9 more
    Caused by: java.io.InvalidClassException: SubscriberImpl; class invalid for deserialization
            at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:587)
            at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1583)
            at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1496)
            at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1732)
            ... 13 moreI googled now for 2 hours but can't resolve the problem alone. As far as I can understand I have to serialize Objects that I want to send to the server, right?
    So how can i do this? I've never used serialization till now.
    any ideas how to solve this problem?
    greets from italy and sorry for my very weak english
    bd_italy

    A class has been modified after deployment. Stop the Registry, clean, recompile, and redeploy.

  • Why am I paying for Prime and losing station

          I cannot quit until October but after IFC disappeared, no BBC America, now no Sundance in Prime while I'm still paying an arm and a leg, i'm starting to look elswhere.  My son went to Roku and I have that and Apple TV.  My internet seems slowed down, I want to quit the land line and I'm paying more for less and less with inferior DVR programming than either Direct TV's or TIVO's.  I'm reaching a point of diminishing returns.  3 more months!  I might consider keeping DSL but my condo already has Directv as an option.  
       I just dont get the reasoning behind these package choices.  Why would they want to annoy a higher paying customer like this.  FIOS was really impressive when I first subscribed except for the primitive DVR programming, but lately it seems to be offering me less of what I want for more money.
        I know I'm whining here butthe trend does have me considering other options as never before. Of course these alternatives can also have their own troubles but at least my choices will be more in my hands.  I certainly cannot miss channels that Prime won't give me anyhow and going off the packages will get rid of all these ash and trash channels I never ever use.  I bet one day we will be able to subscribe to HBO Go, etc separately. I cannot imagine such uptions are not coming.
       FIOS does not need me certainly (I'm in the non-preferred Geezer demografic. The ones with discretionary income and a preferred demo living in the guest room.) but surely this kind of marketing will work against them in the future.  Maybe the MBAs know best because I certainly don't.
      OK.  I'm done whining.

    Yeah. I sure you're right. I guest that it's going to take some time for all the changes in ways entertainment is presented to shake down to some form of semi-stable predictability, if ever. For me the point of cost and trouble to obtain various services will decide to what I watch and subscribe as market forces work. I wonder if IFC and Sundance and many others will fare that well selling individually at higher prices, there's only one show on Sundance and occasional single shows on IFC that I'm interested in so for me they will now be never watched. Will they draw enough viewers to survive? Time will tell. Thanks for the input.

  • Question about Photoshop - Muse workflow

    I'm new to Muse. Long time PS and InDesign user. Watched a bunch of Muse videos and it seems this may do what I need.
    I'm building a simple 4-5 page website for a Gallery.
    I've already designed the pages in Photoshop CC.
    Essentually, full screen photos, A black rectangle (In PS it is raster not a path) Witrh some type and drop shadow effects. A couple other elements from Illustrator (placed as smart objects) have blend modes and opacity changes.
    So my question. Should I just start from scraatch in muse and build these elements? Or, can I say place a PSD with the background image, black "path" text, illustrator graphic with blend modes.
    When is it better to bring in elements (text with effects, illustrator graphics, etc) via Photoshop, or piece by piece in Muse?
    Thanks
    Alex

    Yes, as long as you have sites out there that use paid-for type-kit fonts, you'll need to maintain your subscription with typekit, in the same way we must continue our subscriptions to CC to use Adobe apps. As I understand it, however, for sites we create using typekit fonts included with CC, even after we've stopped paying for CC, those "free" typekit fonts will still work on sites we've created.
    I'd say to go typekit.com, and do some reading, and some searching to make sure they have the fonts you want to use. So far, I'm not a Typekit subscriber, except the small part of their font library that comes included with Adobe CC.
    In the meantime, I'm using more and more of Google's free web fonts. Typekit and Google each has its own specific workflow, for integrating fonts in Muse. I recommend that you go to Google.com/fonts, and get acquainted with their type system. It comes down to copying certain snippets of code to specific places in Muse, then editing html within Muse for type color, etc. -- I probably spent a week or so doing trial and error (not necessarily in that order) before I got it to work. Now I just keep a few "reference" Muse documents around that I can refer to when needed.
    As I unserstand it, Typekit's workflow is a bit different than Google's, but there are plenty of threads in this forum and info on how to do it that you can Google.
    Webfonts is where you slowly move into the code arena with Muse. And this is even more true styling business catalyst forms. My way of doing it is to discover how it works once, then I forget it completely, because I don't want to be more of a geek than I already am.  :+)  So I keep sample Muse documents around for reminding me how it works when I need it again.
    Good luck, and happy learning!  :+)

  • HT4914 I had 1235 songs on my iPad 3 I subscribed to iTunes Match and it deleted all of my songs except for 79 that I had purchased from iTunes Store. How can I recover my lost songs???

    I had 1235 songs on my iPad 3 I subscribed to iTunes Match and it deleted all of my songs except for 79 that I had purchased from iTunes Store. How can I recover my lost songs???

    Hi,
    If the tracks were not in your iTunes library on your computer when you subscribed to match, I am afraid that they are lost. Do you have a separate back up of this music?
    Jim

  • Unable to raise password expiry warning exception in OID using JAVA API

    Hi,
    We are maintaing the user information for our application in OID(9.2). During logon, it is required that a warning is given to the user according to the value set in "Password Expiration Warning" parameter.
    A pl/sql program (using DBMS_LDAP/DBMS_LDAP_UTL packages) written to test password expiry raises the PWD_EXPIRE_WARN exception as expected. However we are unable to simulate the same using the JAVA APIs.
    We did try some thing like the following:
    public class SampleExpire {
    public static void main(String argv[])
    throws NamingException {
    // Create InitialDirContext
    InitialDirContext ctx = ConnectionUtil.getDefaultDirCtx( "TCS-UUODC4",
    "4032",
    "cn=orcladmin",
    "welc0me" );
    System.out.println("Hello");
    // Create User Objects
    User myuser = null,
    try {
    // Create User using a subscriber DN and the User DN
    myuser = new User ( ctx,
    Util.IDTYPE_DN,
    "uid=C100013, ou=People, o=UUSD",
    Util.IDTYPE_DN,
    "ou=People, o=UUSD",
    false );
    catch ( UtilException e ) {
    * Exception encountered in User object constructor
    System.out.println("User creation failed");
    // Authenticate User
    try {
    myuser.authenticateUser(ctx,User.CREDTYPE_PASSWD,"Z100013");
    catch ( UtilException e ) {
    * Authenticate fails
    System.out.println("Authentication failed");
    } // End of SampleExpire.java
    The authenticate user does not raise any exception.
    Am I missing something ?
    Regards -
    Adhiraj

    Hi,
    did you manage to solve this problem? Please let me know

  • SharePoint Search Service upgrade to 2013 fails: "Inner Exception: An item with the same key has already been added."

    Here's the situation:
    Upgrading a SharePoint Server 2010 Search Service Application dB to our SharePoint 2013 SP 1 development environment, using the Management Shell
    Running the following commands: 
    $applicationPool= Get-SPServiceApplicationPool -Identity 'SearchService_AppPool'
    $searchInst = Get-SPEnterpriseSearchServiceInstance -local
    Restore-SPEnterpriseSearchServiceApplication -Name 'SearchServiceApplication' -applicationpool $applicationPool -databasename 'SearchServiceApplicationDB' -databaseserver SERVERNAME -AdminSearchServiceInstance $searchInst
    Creates the search dBs (crawl, links, analytics) successfully; however, in the end, I get....
    "Exception: Action 15.0.107.0 of Microsoft.Office.Server.Search.Upgrade.SearchAdminDatabaseSequence failed."
    Looking at the ULS logs, I find the following:
    Inner Exception: An item with the same key has already been added.
    at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.FindAndFixExistingManagedProperties()     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.InstallManagedProperties(Boolean
    upgrade)     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.Upgrade()     at Microsoft.Office.Server.Search.Upgrade.UpdateAllOOTBProperties.Upgrade()     at Microsoft.SharePoint.Upgrade.SPActionSequence.Upgrade()
    Exception: Action 15.0.107.0 of Microsoft.Office.Server.Search.Upgrade.SearchAdminDatabaseSequence failed.
    at Microsoft.SharePoint.Upgrade.SPActionSequence.Upgrade()     at Microsoft.SharePoint.Upgrade.SPDatabaseSequence.Upgrade()     at Microsoft.Office.Server.Search.Upgrade.SearchDatabaseSequence.Upgrade()     at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object
    o, Boolean bRecurse)
    Anyone encounter anything like this during their search upgrade process? I'm not honestly even sure what duplicate value to look for at this point, if I were to run a SELECT Id, ClassId, ParentId, Name, Status, Version, Properties FROM Objects on
    "SharePoint_Config" in SSMS. Any insight or opinions on the matter are welcome; and thanks to those who choose to reply to this, in advance.

    Hi ,
    You can enable the ULS log on verbose level (note, remember to reset to default level after finished troubleshooting) for more information per the following article, then check there should be more useful message for helping solve the issue.
    http://www.brightworksupport.com/enabling-verbose-logging-to-compare-against-c/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/12c99279-d3aa-46de-bc57-d5d250692ff0/upgrade-of-search-service-application-from-2010-to-2013-failure?forum=sharepointadmin
    https://www.simple-talk.com/blogs/2014/04/22/sharepoint-2010-to-2013-search-service-application-upgrade-issueaction-15-0-80-0-fails/http://blogs.msdn.com/b/biyengar/archive/2009/10/27/psconfig-failure-with-error-an-item-with-the-same-key-has-already-been-added.aspx
    Thanks,
    Daniel Yang
    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] 
    Daniel Yang
    TechNet Community Support

  • Unable to view 7841 Ip Phones on CUCM Subscriber

    We have a new CUCM BE 6000 ver 9.1.2 implementation, with a CUCM Publisher and a Subscriber servers
    As we have Cisco 7841 Ip Phones, we installed on both servers the recommneded device pack  (cmterm-devicepack9.1.2.11013-1.cop.sgn) as specified on link: "http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/compat/devpack_comp_mtx.html"
    After we restarted CUCM cluster, we can add, view, modify 7841 Ip Phones on Publisher server ONLY , these Cisco 7841 are registered on CUCM Subscriber ,and they areworking good .
    But when we try to view/modify these Cisco Ip Phones 7841 on Subscriber server we got this error:
    "Unmapped Exception /usr/local/cm/db/xml/xml/Phone_7841_SIP_display_instance.xml (No such file or directory)"
    And we are unable to access them on Subscriber server.
    We also run "utils dbreplication status" on both servers and got :
    "No Errors or Mismatches found.
    Replication status is good on all available servers"
    ....when I viewed generated file.
    We also run "Unified CM Database status" report and got Replicate state= "2    Good " ob Subscriber server.
    But the situation is the same, Could any of you have an idea about this kind of problem??
    Thanks a lot in advanced.
    Enrique

    Hi ev1205,
    Re-install the cop file on the subscriber and restart the subscriber server. This should fix the problem.
    Errors like this indicate that the cop.sgn file was not installed correctly on the server.
    The fact that the phone is registered on the subscriber indicates that the model type is present in the tables, but maybe other details specific to this model were not installed correctly.
    Thanks
    Sreekanth

  • How to configure the memory settings based on the number of VSAs for Cisco service control Subscriber Manager?

    Hey Good day to all,
    please help with this; when installing the Service Control Management Suite Subscriber Manager scms-sm, and at the secound step where you have to determine the system memory settings, there are several attributes to be considered:
    the maximum number of the subscribers
    with or without qouta manager
    number of VSAs used
    so, my question is about the memory configuration parameters versus the number of VSAs used, since you must multiply with certain values, set already on a table on the Cisco website, but as shown in the example under the table these values are multiplied to all the attributes except that the example dosn't show the value of the temp-size memory;
    so please confirm this to me:
    the temporary memory size "temp_size" is not related to the number of VSAs implemented!
    this is a screen shot from Cisco website:
    thank you in advance for helping

    Hi Tessitori,
    The best way to cache, index and query that amount of data in Coherence is to use a number of stand alone JVMs (i.e. com.tangosol.net.DefaultCacheServer s) to 'manage' the data. Then access (query) that cache from your application servers instances. For an indexing and querying example take a look at this FAQ item
    If you would like to discuss this further please email me at [email protected]
    Later,
    Rob Misek
    Tangosol, Inc.
    Coherence: Cluster your Work. Work your Cluster.

  • How can I dial a Unity subscriber extension when they don't have an assigned IP phone?

    I have set up our warehouse staff to share centrally placed IP phones by setting them up in Exchange and as a Unity subscriber and then configured the Call Transfer page to ring the extension of the phone closest to where they work in the warehouse.  This works great except you have to go through auto attendant to dial their assigned extension to have it ring where it would be desirable to be able to look them up in the Corporate Directory and dial, but if I do that, it just goes to their voicemail.  Is there a way around this?

    You could set up a dummy phone record for each user and then use the Call Forward All or Call Forward Unregistered field(s) to forward calls to the phone closest to where they work in the warehouse (just like you have in Unity for transfers).  Then if you look the user up in the directory and dial them, the call forward would take effect.
    Hailey
    Please rate helpful posts!

  • ITunes 6.0.3.5 installer crashed - IDriver.exe Unhandled exception

    Just downloaded and attempted to install iTunes 6.0.3.5 on Windows XP Media Center Edition. installer crashed, IDriver.exe. Anyone else seeing this. Some details below.
    Unhandled exception at 0x77511029 in IDriver.exe: 0xC0000005: Access violation reading location 0x0000005c.
    ole32.dll!77511029()
    ole32.dll!77511002()
    ole32.dll!7751138f()
    ole32.dll!77510052()
    ole32.dll!7750fe4b()
    ole32.dll!7750d878()
    ole32.dll!7750d7e5()
    ole32.dll!7750d95f()
    rpcrt4.dll!77ef3ae8()
    ole32.dll!77510332()
    ole32.dll!775101c3()
    rpcrt4.dll!77e9d4e5()
    ntdll.dll!7c91056d()
    ole32.dll!774fd3d0()
    ole32.dll!774fe39c()
    ole32.dll!7752962e()
    ole32.dll!77601a25()
    ole32.dll!7752fd56()
    ole32.dll!7752fee4()
    ole32.dll!774fee88()
    user32.dll!77d51042()
    IDriver.exe!0044b476()
    IDriver.exe!00468ed1()
    IDriver.exe!004699c8()
    kernel32.dll!7c816d4f()
    kernel32.dll!7c8399f3()

    hi Madam!
    hmmm. i couldn't turn up anything specific at event ID:
    http://www.eventid.net/display.asp?eventid=26&eventno=2271&source=Application%20 Popup&phase=1
    (i'm not a subscriber, so i can't follow up their "M" links ... not that there was anything specific to the IDriver.exe anyway.)
    hmmmm. if you
    b do
    start running into problems, and you've got the time, it may be worth getting an install log to the moderators:
    Gayle B, "If you are experiencing installation issues...", 06:20pm Oct 12, 2005 CDT
    still at the early stage of troubleshooting these, i'm afraid, so i can't give you much more feedback than this. maybe keep checking in every day or so to check on any developments?
    love, b

  • Unknown SQL Exception 208 occurred. Additional error information from SQL Server is included below.Invalid object name 'Webs'.

    SP 2013 Server + Dec 2013 CU. Upgrading from SharePoint 2010.
    We have a web application that is distributed over 7-8 content databases from SharePoint 2010. All but one database are upgradable. However, one database gives:
    Invalid object name 'Webs'.
    while running Test-SPContentDatabase or Mount-SPContentDatabase.
    EventViewer has the following reporting 5586 event Id:
    Unknown SQL Exception 208 occurred. Additional error information from SQL Server is included below.Invalid object name 'Webs'.
    After searching a bit, these links do not help:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/fd020a41-51e6-4a89-9d16-38bff9201241/invalid-object-name-webs?forum=sharepointadmin
    we are trying PowerShell only.
    http://blog.thefullcircle.com/2013/06/mount-spcontentdatabase-and-test-spcontentdatabase-fail-with-either-invalid-object-name-sites-or-webs/
    In our case, these are content databases. This is validated from Central Admin.
    http://sharepointjotter.blogspot.com/2012/08/sharepoint-2010-exception-invalid.html
    Our's is SharePoint 2013
    http://zimmergren.net/technical/findbestcontentdatabaseforsitecreation-problem-after-upgrading-to-sharepoint-2013-solution
    Does not seem like the same exact problem.
    Any additional input?
    Thanks, Soumya | MCITP, SharePoint 2010

    Hi,
    “All but one database are upgradable. However, one database gives:
    Invalid object name 'Webs'.”
    Did the sentence you mean only one database not upgrade to SharePoint 2013 and given the error?
    One or more of the following might be the cause:
    Insufficient SQL Server database permissions
    SQL Server database is full
    Incorrect MDAC version
    SQL Server database not found
    Incorrect version of SQL Server
    SQL Server collation is not supported
    Database is read-only
    To resolve the issue, you can refer to the following article which contains the causes and resolutions.
    http://technet.microsoft.com/en-us/library/ee513056(v=office.14).aspx
    Thanks,
    Jason
    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]
    Jason Guo
    TechNet Community Support

  • An exception was caught while scheduling the publication. (FBE60203)

    Hi All,
    Iam getting below error when  am using publication to send doc to personal email.
    Please advice me to find out the solution, thanks in adavance...
    Error Message:
    ERROR [PublishingService:HandlerPool-124] BusinessObjects_PublicationAdminLog_Instance_177746 - [Publication ID # 177746] - An exception was caught while scheduling the publication. (FBE60203)
    com.crystaldecisions.sdk.occa.infostore.internal.InfoStoreException: Sorry, you do not have the right to 'Edit objects' (ID: 6) for 'ScopeBatch177754' (ID: 177754). Please contact your administrator if you require this right.
    cause:com.crystaldecisions.enterprise.ocaframework.idl.OCA.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
    detail:Sorry, you do not have the right to 'Edit objects' (ID: 6) for 'ScopeBatch177754' (ID: 177754). Please contact your administrator if you require this right.

    Hi,
    This error messgae occurs when the 'Edit Objects' right is missing for the published reports.
    These are the rights required to schedule a publication :
    1. Login to CMC with Enterprise Administrative account
    2. Navigate to Users and Groups >> Top-level security >> All Users
    3. Add the required group/user facing the issue > Advanced > Add/Remove rights > General
    4. Grant View objects and Subscribe to objects
    5. Navigate to the folder where publication is there > User Security
    6. Add/Remove Rights > At General level grant following rights:
    - Schedule on behalf of other users
    - Modify the rights users have to objects
    - Edit objects
    - Copy objects to another folder
    - Schedule document to run
    - Schedule to destinations
    Regards,
    Yosra

  • Running transactional replication on SQL server 2008R2 but: "The process could not connect to subscriber 'SERVER NAME'"

    I've set up Replication (transactional replication) between two remote servers. On the one of server that I configure Distribution & publication .another server is subscription. The subscription is all set & snapshot agent is started .but the actual
    replication doesn't take place.
    When viewing the Synchronization Status of the subscription, i get an error, saying "The process could not connect to Subscriber ‘Server name'."
    Clicking on start, this is the error message I get:
    The agent could not be started.
    Additional information:
    An exception while executing a Transact-SQL statement or batch.
    SQL Server Agent Error: Request to run job Server1-EDUSRV-Pubs-Server2-14 (from User Server1\Administrator) refused because the job is already running from a request by User sa.
    Change database context to 'EDUSRV'.(Microsoft SQL Server Error:22022)
    What can i do?
    Please help me.Thanks

    The error The process could not connect to Subscriber 'Server name' indicates that the Distribution Agent process account does not have enough permissions to connect to the Subscriber.
    If this is a push subscription, verify the Distribution Agent process account is db_owner in the distribution and subscription databases, is a member of the PAL, and has read permissions on the snapshot share.
    If this is a pull subscription, verify the Distribution Agent process account is db_owner in the subscription database, is a member of the PAL, and has read permissions on the snapshot share.
    The permissions required are covered in
    Replication Agent Security Model.
    If you have anymore questions, please let me know.  I hope this helps.
    Brandon Williams (blog |
    linkedin)

Maybe you are looking for

  • Embedding google map in Indesign for DPS

    Has something changed with the lastest update ....? In the past, when I needed to place a embed a map, I just went to google pick up the embed code and Cmd V into Indesign.  I'll see a static image but it is "live" when when tested on the iPad. Since

  • Time Capsule backing up all my media again after Mavericks upgrade

    Hello. Since I've upgraded to Mavericks my Time Capsule is trying to Backup all my media since location of iTunes Library (media) changed in iTunes 11.  The problem is I have a huge music library (over 300GB), therefore I don't and won't let my Time

  • Drop down box in a modulepool

    Hi, I am creating a modulepool with a drop down box in one of the dynpros. I have managed to fill it with values using the 'VRM_SET_VALUES' function module. The problem comes when running the modulepoool. The field displays the drop down box with the

  • CCMS Email Alert Notifications

    Hi. I am creating an alert to let the helpdesk know when someone locks their ID due to incorrect passwords. I've got it working with the SALO_EMAIL_IN_CASE_OF_ALERT but I can't get it to work with the copied version(ZZSALO_EMAIL_IN_CASE_OF_ALERT). Ca

  • [svn:bz-trunk] 20695: Tomcat 7 Valve/ LoginCommand changes due to the ValveBase API and Realm API change.

    Revision: 20695 Revision: 20695 Author:   [email protected] Date:     2011-03-08 13:32:45 -0800 (Tue, 08 Mar 2011) Log Message: Tomcat 7 Valve/LoginCommand changes due to the ValveBase API and Realm API change. rename valve name as Tomcat7Valve will