Privilege Problem With Schedule a Workbook

Whenever I schedule a workbook, I get an invalid id/password logon denied error. The Invalid Id is for the database I am referencing (not the one Discoverer resides on). How can I do the report in desktop and see result, but not with the scheduler. It appears that there is some type of mismatch. What Id does Discoverer Scheduler pass to the remote database?
Any thoughts?
Thanks,
John

Hi
Are you using E-Business Suite? If so you may have forgotten to copy the dbc file from the server into a SECURE folder on the machine that is running Desktop. Could this be the issue?
Best wishes
Michael

Similar Messages

  • Problem with scheduling planned orders in MRP

    There is a problem with scheduling planned orders in MRP. SFG is assigned to the BOM of FG. No inhouse production time maintained in the material master of SFG & FG. routing maintained for both . In OPU5 scheduling & capacity reuiremnts tickmarked for detailed scheduling. Scheduling level - via detaied scheduling. Scheduling type - backward. Adjust basic dates , adjust dep. req. to order start set. In MD02 , scheduling is via ' lead time scheduling'.
    My problem is the start date & time & finish date & time is same for planned orders of FG & SFG in the detailed scheduling tab of the planned orders. (Duration is same because of same capacity requirements on the same work centre. But how is the finish date same for both SFG & FG?)
    (Capacity requirements are being generated.)
    What could be the problem ?

    Dear,
    By scheduling the routing and maintain lot size dependent time in material is best practice and result of scheduling will be consistent.
    If you want SFG before FG you need to define lead time offset in BOM or need to maintain the floats before production.
    Hope clear to you.
    Regards,
    R.Brahmankar

  • Sales Order Stock - Problem with Schedule line

    Hi guru,
    I have a problem with my schedules line.
    We use the Sales order stock ( using MB1B with good movement  412/E) for some specific customers.
    Even if the sales order reservation works well, there is an issue with the schedule line in the order.
    Indeed when i enter the material in the order the schedule line display an availibily in 8 days even if the material is out of stock or available now....
    When i enter the same materila in a standard order(with item category without special stock E) the schedules line are good...
    What is it the most weird is that i have done the customizing by copying the standard item and i have just added the special stock E in the item category.
    If anyone can help me!!
    Thanks a lot

    hello Lakshmipathi,
    Thanks a lot for your reply.
    I tried to change the requierement class in order to put one with special stock E as you explained, but i still have my weird schedule line. When i put the item in the order it is 0 stock for today, but stock find in 12 days either if there is stock or no(unrestricted stock i mean).
    If i change the RDD in more than 12 days the stock is available for the date requested.
    If you have an idea of what could be wrong because on my case i want the schedule line to be at 0 while the sales order reservation has not been processed (via MB1B/412/E) and once the stock movement is done the schedule line has to be find.
    I dont know if im clear enought..
    To be more clear,  i want the schedule line based on the "sales order stock" and not on the "unrestricted stock".
    thanks for your help!
    Guillaume

  • Problem with scheduling ECMA Ver1.1 in build 4.1.3496.0 and build 4.1.3479.0

    I tried using powershell, vbscript, and c# calls and everytime the ecma is called, the ma run step finishes and never goes to the next run step.
    Basically it never returns a run status to whatever calls the schedule and just hangs.
    I have several ecmas and 2 of them behave this way, the others are packaged ecmas.
    All other schedulng with the fim ma,adma's and the packaged ecmas work fine..
    Any ideas?  Im running out of them a I have tried rebuilding the ma's.. building packages, rebuilding wmi.. doing a rollup udare and nothing works..  This also occurs in dev.Any help is appreciated.
    Thanks
    Joe Stepongzi - Identity Management Consultant ilmXframework.codeplex.com

    Exports will work if no pending exports.
    Hi Joe :) - long time!
    The above seems to me to be a clue - is it possible something is being instantiated/connection opened/etc. in your IMAExtensibleCallExport.ExportEntry call that is not being cleaned up?  Have you tried debugging, or looking closely at the process monitor
    to see what is different between when there IS and ISN'T any pending exports?  Perhaps you could temporarily modify ExportEntry to basically do nothing, or write to a file - anything but what it is doing now - and see if the problem persists.
    Bob Bradley (FIMBob @
    TheFIMTeam.com) ... now using FIM Event Broker for just-in-time delivery of FIM 2010 policy via the sync engine, and continuous compliance for FIM

  • Problem with Scheduler API

    Hello Friends
    I am trying this concept of Job Scheduler API of Netweaver for the first time . The problem that I am encountering is , after successfull deployment of my application DC , I cant see the job created by me in the job definations on server
    I am laying down the approach that I took for the development of job : -
    1) I created one EJB Module DC( sample_mdb_session ) and created one Message Driven bean
    ( JobBean ) and laid down the logic to be run on the execution of job
    I have also included the scheduler api in the build path of my DC
    2) nextly I created the required job-definition.xml and did the changes in ejb-j2ee.xml
    ejb-j2ee.xml
    <enterprise-beans>
    <enterprise-bean>
    <ejb-name>com.sap.scheduler.examples.session.JobBean</ejb-name>
    <jndi-name>JobBean</jndi-name>
    <resource-ref>
    <res-ref-name>JobQueueFactory</res-ref-name>
    </resource-ref>
    <message-destination-ref>
    <message-destination-ref-name>JobQueue</message-destination-ref-name>
    <jndi-name>JobQueue</jndi-name>
    </message-destination-ref>
    </enterprise-bean>
    </enterprise-beans>
    job-definitons.xml
    <job-definitions>
    <job-definition name="JobBean"
    description="Logs a string and calculates its length">
    <job-definition-parameter name="UserName"
    data-type="String"
    direction="IN"/>
    <job-definition-parameter name="NameLength"
    data-type="Integer"
    direction="OUT"/>
    </job-definition>
    </job-definitions>
    3) In the application DC( sample_application_dc ) I did the required changes in application-j2ee-engine.xml
    <application-j2ee-engine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="application-j2ee-engine.xsd">
    <reference reference-type="hard">
    <reference-target provider-name="sap.com" target-type= "service">
    scheduler~runtime
    </reference-target>
    </reference>
    <modules-additional>
    <module>
    <entry-name>demo.sap.com~sample_mdb_session.jar</entry-name>
    <container-type>scheduler~container</container-type>
    </module>
    </modules-additional>
    </application-j2ee-engine>
    The document that i had reffered to construct everything was actually dealing with an EJB project and a respective .ear project, things were working fine till the time I was dealing with local EJB projects but as soon as I started working with DCs , the problems occured
    And when i deployed the application on the server it is deployed successfully , but I cant see the job in job definitions in SAP Netweaver Administrator > java scheduler section
    What i am doubting is that the changes that i did in the xmls are not apt , so If any one on the forum has done the scheduling job earlier can please send the required xml code as that may help in solving the problem

    hi,
    i hope u follow this [lin k|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/90a95132-8785-2b10-bda5-90d82a76431e]
    and the architecture and sample application [this |https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e8ab5056-0e01-0010-5581-d3e51724ee21]
    thanks and regards
    bvr

  • Virusbarrier 10.6.16 update problem with scheduler

    Since Virusbarrier is updated to 10.6.16 engine (Lion) the scheduler doesn't work anymore. Who knows the solution to solve this problem? Intego helpdesk doesn't until now!

    Remove  it and replace with Sophos.  It is less intrusive, and far more compatible.

  • Problem with scheduling reports

    Hi,
    We produce reports in Crystal XI R2 and then publish to Enterprise. We have noticed a recurring and 'random' error with certain reports
    The reports run fine in Crystal and in Infoview when run on demand. However when we chose the schedule option, the report goes through the motions of running ie status = running for a suitable period of time and goes to Sucess. However when we try to open the report the 'blue bar' will go about 50% and then freeze without opening. After that Infoview hanges and we need to restart. This always happens with certain reports but other similar reports schedule fine.
    Any ideas?
    Cheers
    Clive

    That is the problem Clive.  I've had similar experiences that had me baffled.  Whenever you attempt to open the successfully scheduled report, the subreport is run.  Therefore you will have to wait for the subreports to complete before the report opens.  Sometimes this took hours, leaving me to think that it froze.  But it usually eventually comes up.  With each page you go through, the subreport is run again and again.  This is very annoying. 
    I would try modifying the type of subreports I use.  Try the report with "On Demand" subreport and "In Place" subreport.  See which one gives you better performance.  I usually only use subreports for 1 page summary reports.  Other than that they take too long.  I've had reports that I've redone because the subreport version takes too long.
    It is much easier to run these reports on demand.

  • Problem with scheduled message in SXMB_MONI

    Hi All,
    I have come accross an issue. There is a scheduled message in SXMB_MONI(with green flag). It's been there at for a long time.I can see a inbound queue name in the SXMB_MONI display. But if I am looking into the que from SMQ2, there is no pending messages in the queue. How to process this message? Can we reprocess it?
    Thanks

    Hi,
    prerequisite:
    make sure the message will not be processed in SXMB_MONI
    a) restart the message from sender system
    b) take the payload from SXMB_MONI and post it from RWB
    directly to integration engine
    test it on DEV to be sure what you're doing of course
    Regards,
    michal

  • ITunes 7 Privilege Problems with Non-Administrator Account

    Hello,
    I've installed iTunes 7 on WinXP using my account, which is in the Administrators group. However, when I attempt to launch it under another account (which is in the Power Users group, but is not an administrator), a window is displayed with the following message:
    "Please wait while Windows configures iTunes".
    This occurs every time I launch iTunes. Afterwards, I sometimes receive a message indicating this account doesn't have privileges necessary to start a service and the configuration step is undone. Other times, I receive the following:
    "An error occurred while updating the default player for audio file types. You do not have enough access privileges for this operation."
    I really don't want to give this account Administrator privileges. What are my options?
    Thanks.

    Here are a couple of things to try:
    1. Create a group called IpodUsers
    2. Add restricted users you want to access itunes
    3. goto: START>MY COMPUTER navigate to Program Files
    4. Find the iTunes, Quicktime, and Apple Update folder.
    5. Right click on on the folder and select Properties goto the Security Tab
    6. Click add, Add in IpodUsers, in the lower pane place check mark in Full Control box. Repeat for the other 2 folders
    That should allow your users to access the program
    To allow the access to the same library look here:http://docs.info.apple.com/article.html?artnum=93195
    To have the same playlists etc look here:http://discussions.apple.com/message.jspa?messageID=1881635&tstart=25
    and herehttp://discussions.apple.com/thread.jspa?messageID=1175181&#1175181
    hope this helps

  • Problem with Scheduling a Report to an Unmanaged disk destination

    I am trying to schedule a Crystal report to a file share.  I have supplied the UNC path in the Directory field.  Supplied a user name (using domainname\userid) and password that has write rights to the file share.  When I schedule the report, I get the following error:
    login error. CrystalEnterprise.DiskUnmanaged: Logon failure: the user has not been granted the requested logon type at this computer.
    What kind of rights do I need to make it work?
    Using BOE XI R2 Fix Pack 2.4
    Regards,
    Maureen

    Are you running the Crystal Report Job Server under an account that has access to the share? Try doing that if not. (CCM > stop job server > properties > change to an AD user with access to both the file share and local Admin to run the service)
    Regards,
    Tim

  • Privilege problem with old Time Machine backup

    There are all kinds of posts about privilage problems, but I can't find my answer.  I did a clean install of Snow Leopard, and now I want to only drag my iTunes library and iPad backup files from my time machine backup onto the computer.  I can access all the files on the backup drive, including MobileSync and my iTunes folder, but when I try to pull them off the drive I get the terrible message "The operation can’t be completed because you don’t have permission to access “MobileSync”."  The sharing & permissions for the folder say "read & write" for my user, and the "Locked" box isn't checked in the Get Info window.  When I click on the settings gear in the Sharing & Permissions window, the "Make me the owner" option is grayed out even after I unlock the options.  I tried resolution for issue 1 here.  And I also tried those terminal commands to no avail.  When I access Time Machine from the dock, all the backups prior to my reinstall are listed, but I can't access them.  Anyone have any other ideas?  This is extremely frustrating.  Note: I am able to copy over files from the backups created after I reinstalled Snow Leopard.
    sudo chflags 0 /Volumes/Volumename
    sudo chown 0:80 /Volumes/Volumename
    sudo chmod 775 /Volumes/Volumename
    sudo chmod -N /Volumes/Volumename

    I personally think that Time Machine is a magical process run by unicorns.
    I just moved from a MacBook Pro to a brand spanking new iMac 27". My iPad just does everything that I need a laptop to do, and an iMac is so much more powerful than a MBP.
    Anyways, I setup my new iMac with the MBP Time Machine backup, as I usually do with new Macs. As I was going to sell my MBP, I was just going to use my 3TB Time Machine drive on my new iMac, thinking that I'd lose 9 months of backups, as I usually do with a new Mac. Except, apparently with Mountain Lion, the unicorns and wizards have decided that the old Time Machine backups are now transferred to the new iMac. So, even though my iMac is only 15 days old, it shows 9 months of backups. Which was a lifesaver, because an important photo got corrupted in the restore process, and I found it in the Wayback Machine.
    Cool stuff.

  • Problems with running of workbooks

    Dear members,
    We have a workbook which one user can run and the other user cannot.
    Suppose we have UserA and UserB. UserA has created a workbook and even shared the workbook with UserB using Discoverer Desktop. Both UserA and UserB have an database account through which they login to discoverer desktop to run the reports.
    UserA can run the reports normally but where as userB cannot run the report. When UserB opens the report it says missing item or join condition. Does UserB need to have any grants or previlages.
    It would be great if some body guides me.
    Thanks
    Sandeep

    Sandeep,
    There is normally two possible causes.
    1. Used does hot have access to the business area
    2. User does not have select privs to the underlying db objects.
    Regards
    Roelie Viviers

  • Privileges problem with firmware installation

    IMac G3/333 OS 9.2 64 RAM,, 4-6G. I plan to add more memory and when reading about how to do it, the instructions said to be sure to upgrade to firmware 2.1 first. To check to see if I already have it, instructions suggested downloading the file that would tell me if I already have version 2.1 when I tried to installl int. After I downloaded it to my computer and double clicked to install it, I got the following message: "you do not have the appropriate privileges to use this file." Where have I gone wrong?

    Patti, Welcome to the discussion area!
    An iMac 333 MHz needs Firemware 1.2 not 2.1. Probably just a typo in your post.
    Also you must be booted from a version of OS 8 to install Firmware 1.2. You can't do it while booted from OS 9.

  • Privileges problem with iTunes

    I have an account on our household computer, but am not the administrator. I also have an audible.com account and recently downloaded a book. I want to put it on my iPod, but iTunes says I don't have enough computer privileges. What do I do now?

    I'm new at this and forgot to add that the computer is a MacMini running OS X 10.6.8 and iTunes is v.10.4.1.
    Thanks for any help.

  • Problem with scheduled publishing

    Post Author: yyu
    CA Forum: General
    Hi,I'm trying to publish a report daily, but CR keeps on taking the system time instead of my setting. Perhaps there are parameters which are controlling this? Any ideas? Thanks!

    Hi,
    Please make sure the TREX processes are up and running. Restarting TREX may help you.
    Regards,
    Masa

Maybe you are looking for

  • How do I set up a playlist for tv shows on apple tv so it will continuously play

    We have set up apple tv in a bedroom and want to be able to have a rolling list of tv shows to play during the night. How do I set up a playlist to continuously play one after another? The playlist was already created in iTunes on the computer and ho

  • How do I scan a photo in Photoshop CC 2014 64-bit?

    Well, all that is beautiful Photoshop CC in 2014 but it is 64 bit, maybe this is a smart idiot who introduced the implementation and conduct of training as we scan photos without Photoshop in 32 bit?

  • How to display dynamic page content in an external application (MS Word)?

    I have a portal that generates a CV from info stored by various forms. The CV displays fine in a dynamic page, but when I add javascript to launch MS Word with a call to the dynamic page portlet, only the hard coded html displays - nothing between th

  • Access Enforcer/ CUP   - Export/ Import?

    Hi, I wanted to know if there is a export functionality in the access enforcer/CUP (GRC v 5.2)?? I wanted to export the workflows and other items I have created outside the current environment and import it to a different environment. Is this actuall

  • How to show indian rupees in fmt:formatNumber

    Hi guys, I want to show the price value like Rs. 12,50,500. If I use like this format Rs. *<fmt:formatNumber type="number" value="${stylePrice}" pattern="#,##0.00"/>* it is showing like Rs. *4,240,000.00*. Instead of I want to show Rs. 24,40,000. Is