DBMS - Data not visible to read only account users.

I have created below view to know the status of my batch jobs which run on server every sunday.
CREATE OR REPLACE VIEW CAFDB_REFRESH AS
SELECT
log_id,
owner,
to_char(log_date, 'DD-MON-YY HH24:MI:SS') TIMESTAMP,
job_name,
status,
ERROR#,
run_duration,
instance_id,
additional_info
FROM user_scheduler_job_run_details;
it is working fine and i am able to get the information.
now to make it visible to read only account users - using "grant select " i have given access and also created public synonym.
but it is showing only column names in read only account not the data.
how to make this visible to read only account?
please guide.

USER_ views will only have the objects owned by the user running the query..In your case it will have only the schedules done by the user.
You will have to ue ALL_ or DBA view (all_scheduler_job_run_details)

Similar Messages

  • How to make data of responsabilitys in read only for users

    hi everyone
    i need help to find a way to make all datas in the E-Business suite application in read only. i try to attach the diffirents responsabilitys with options profiles but i cant make this process work
    if anyone please know any way to help to make this work it will be mush appreciated.
    Thanks in advence
    My said ABAROUN

    So you'd better ask this in the E-business forum.
    Sybrand Bakker
    Senior Oracle DBA

  • SPSecurity.RunWithElevatedPrivileges Not Working for Read Only Permissions Users

    I have the following code in a method that generates tabbed web parts on any page in SharePoint 2010.
    The problem is that it will not work for users who have Read access only on a SharePoint site.  It will work when those users have Contribute access.  
    So even though I have elevated permissions in the code it does not actually elevate the permissions at the point where it is needed.
    if (panel != null)
    try
    using (SPLimitedWebPartManager wpManager = SPContext.Current.Web.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    try
    // Elevated previleges required for EXPORT and IMPORT. Else Users with normal read access will get errors.
    SPSecurity.RunWithElevatedPrivileges(delegate()
    // Retrieve the web part titles in the ConfigureTabs XML string for this tab.
    var webPartTitles = from t in xDocument.Descendants("webPart")
    where (string)t.Parent.Attribute("name") == (string)e.Item.DataItem
    select (string)t.Attribute("title");
    foreach (string wpTitle in webPartTitles)
    foreach (System.Web.UI.WebControls.WebParts.WebPart webPart in wpManager.WebParts)
    // Find the matched closed web part in WebParts collection
    if (webPart.Title == wpTitle && webPart.IsClosed == true)
    string errorMessage;
    //ADD EXPORT PROPERTY
    webPart.ExportMode = WebPartExportMode.All;
    MemoryStream stream = new MemoryStream();
    XmlTextWriter writer = new XmlTextWriter(stream, System.Text.Encoding.UTF8);
    // Export the closed webpart to a memory stream.
    wpManager.ExportWebPart(webPart, writer);
    writer.Flush();
    stream.Position = 0;
    XmlTextReader reader = new XmlTextReader(stream);
    // Import the exported webpart.
    System.Web.UI.WebControls.WebParts.WebPart newWebPart = wpManager.ImportWebPart(reader, out errorMessage);
    reader.Close();
    writer.Close();
    // Show the imported webpart.
    panel.Controls.Add(newWebPart);
    break;
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please check your XML configuration for error. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please Check SPContext.Current.Web is not null. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    This snippet of code was originally pulled from a microsoft technet article on creating Tabbed web parts "the correct way" but it doesn't work in all scenarios.
    Is there a way to get this code working for Read/Visitors to a SharePoint site?

    From initial observation what I see is that your SPLimitedWebPartManager is not created from an elevated web. Try like below
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using(SPSite elevatedSite = new SPSite(SPContext.Current.Site.ID))
    using(SPWeb elevatedWeb = elevatedSite.OpenWeb())
    using (SPLimitedWebPartManager wpManager = elevatedWeb.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    { //Rest of your code
    Geetanjali Arora | My blogs |

  • This operation is not available for read only field 'Type MVF'

    Hi All,
    We are using OrderToCash PIP and we are on Siebel 8.1X.
    While Synching the customer from Ebiz to Siebel facing the following issues:
    Method 'WriteRecord' of business component 'Account' (integration component 'Account') for record with search specification '[Row Id] = "2d3434313239353"' returned the following error:"This operation is not available for read only field 'Type MVF'.(SBL-DAT-00402)"(SBL-EAI-04451)
    Please suggest us what steps to be done in Siebel.
    Thanks
    Maanasa

    First check the process why this is calling Account BC WriteRecord(). The field "Type MVF" might be read only and this sync process is trying to update this field which is read only. This is the reason for the error. Check the OM log / EAI Obj Manager Comp log (set log level to 5) and check.
    Joseph Arul Dass

  • SharePoint 2010 List View Web Part not showing for read-only users?

    Hello all,
    I have List View Webparts on my Blank Web Part page, and it's not showing for Read-Only users.
    Is this intended by Microsoft or is it a bug?
    Thank you!

    Hi,
    According to your post, my understanding is that the read only user could not see the list view web part.
    Per my knowledge, the issue may be cause that the user do not have the proper permission for the list.
    1. Check whether the user can access the list.
    2. Check whether the user can view all the items instead of partial items in the list.
    3. Check whether there are some fields refer to other lists or terms, especially the lookup field or managed metadata filed.
         If that is the case, make sure the user can access the lookup list.
    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

  • Read Only Account ACS 5

    I can create a read-only account on the ACS 5 server? I have the ACSAdmin account.
    Thanks

    Yes
    Go to:
    System Administration >
    Administrators > Accounts >
    Create
    Create a new admin with the "ReadOnlyAdmin" role
    Now login as that new admin

  • Is it possible to make comments or notes on a read only pdf document?

    Is it possible to make comments or notes on a read only pdf document?  Thank you.

    With Preview you can use the annotations feature.   There's a free  application, Skim, that is designed for annotating and making notes on PDFs. 
    OT

  • How to make form field read only for users with certain permissions

    We need to make two form fields read only for users with certain permissions. Kindly guide me on how to do this in Infopath. I searched and there is an option to disable to the column, but no option to select user permissions. 
    Please give your suggestion on this. 
    thanks.

    Hi,
    See the link below:
    http://info.akgroup.com/blog-0/bid/69277/InfoPath-Restrict-visibility-to-users-in-a-SharePoint-Group
    Here you can add the fomatting action on the field to disable the field if those users belong to certain Sharepoint group (does not matter the permission levels though). Hope it helps.
    Regards, Kapil ***Please mark answer as Helpful or Answered after consideration***

  • Read-Only Console user

    Hi all!
    I would like to introduce a read-only console user on our weblogic 6.1 SP1 app
    server! Does anyone know how to configure such a user (respectively can anyone
    give me a docu reference according to this problem)?
    Is it possible anyway?
    Thanks for every serious response,
    Chris.

    Add the user to the Monitors group, so they have the Monitor role. This will
    give them read-only access to the console.
    "chris" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hi all!
    I would like to introduce a read-only console user on our weblogic 6.1 SP1app
    server! Does anyone know how to configure such a user (respectively cananyone
    give me a docu reference according to this problem)?
    Is it possible anyway?
    Thanks for every serious response,
    Chris.

  • Date Stamp Issues - Calculate Read only

    I want to use a date stamp with the current date that a form was printed.  I was able to get this to work on one form I created from a Word Doc., so that the field only shows when printing and auto calcs the current date.  I however can not replicate it on others that were also from a Word Doc.  When I copy the field from the working form to another form, the field is not visible when printing.  I added the field to my library and pulled it from there to the new form and it does not work there either.  I have pulled this from my librabry to a new blank form and it works there.  
    I am assuming there is something in the form that I can't see that is hiding this field when I print it?  Some kind of background feature or something brought over from th Word Doc. maybe?  Though the form that does work was created the same way so I am not sure why the others would have issues.
    Little frustrating!
    Thank you!

    I want to use a date stamp with the current date that a form was printed.  I was able to get this to work on one form I created from a Word Doc., so that the field only shows when printing and auto calcs the current date.  I however can not replicate it on others that were also from a Word Doc.  When I copy the field from the working form to another form, the field is not visible when printing.  I added the field to my library and pulled it from there to the new form and it does not work there either.  I have pulled this from my librabry to a new blank form and it works there.  
    I am assuming there is something in the form that I can't see that is hiding this field when I print it?  Some kind of background feature or something brought over from th Word Doc. maybe?  Though the form that does work was created the same way so I am not sure why the others would have issues.
    Little frustrating!
    Thank you!

  • Multi Data Source, Fail Over, Read-Only detected as unavailable

    We are using WLS 10.3.6.0 with WebCenter Content (WCC) as the application.
    For the production back end, RAC will be be the production DB and we need to support failover to Data Guard.
    We set up a Multi Data Source (MDS) with the first simple Data Source pointing to RAC and the second Data Source pointing to Data Guard.
    Upon testing, this scenario basically works correctly: when RAC is shutdown and Data Guard enabled, the switch occurs and the app works against Data Guard. And conversely, when Data Guard is shut down and RAC brought up, MDS will revert to pointing to RAC and the app will work correctly.
    However the DBA insists, that the alternate Data Source should not need to be completely down but should be able to be in a read-only state and the MDS should detect that if it is in a read-only state, it will be counted as unavailable and try to use the alternate Data Source. This does not work with the default set up, I see in the logs that a connection can be made to the read-only DB instance which will not work at all with the app and is not what is desired by the customer.
    Is there a way to configure the MDS so that if a Data SOurce is only available as read-only, the alternate Data Source will be used?

    I may be able to describe a trick... Try setting the "test table" property of the DataGuard DataSource
    to some update statement, ideally one to a otherwise unused table. eg:
    SQL update myJunkTable set foo = 1 where 1 = 0
    This won't actually update the table (which could have zero rows even) but I hope the
    read-only DBMS would throw an exception anyway, and this will give WLS the impression
    it can't get healthy connections, and That DataSource won't be used, until the read-only
    status is removed.
    However, from a standard point of view, a read-only DBMS may be perfectly useful for some applications,
    so that is not of itself a reason for WLS not to use it.

  • Using iTunes Library with a read-only account...

    Hi! I use my HD connected to my AEBS and to create some accounts in which people can use information on the shared folder that is created when the account preference is chosen. I later copied my iTunes library in the same folder so that everybody had access to it. Most of the users I created have restricted access (meaning read-only access). The ones that have full acces had no problem but the ones that have read-only access, when they try to choose the iTunes library, recieve a message saying "The folder "iTunes" is in a locked disk or you do not have write permissions for this folder.". I clearly understand what the problem is and why it is not letting those users acces it but does anybody has an idea on how I can make the iTunes library accessible to the "read-only users"? Thanks!

    Hi! I use my HD connected to my AEBS and to create
    some accounts in which people can use information on
    the shared folder that is created when the account
    preference is chosen. I later copied my iTunes
    library in the same folder so that everybody had
    access to it. Most of the users I created have
    restricted access (meaning read-only access). The
    ones that have full acces had no problem but the ones
    that have read-only access, when they try to choose
    the iTunes library, recieve a message saying "The
    folder "iTunes" is in a locked disk or you do not
    have write permissions for this folder.". I clearly
    understand what the problem is and why it is not
    letting those users acces it but does anybody has an
    idea on how I can make the iTunes library accessible
    to the "read-only users"? Thanks!
    iTunes was NOT built for multi-user "write" access. Allowing write access to more than one user of iTunes "concurrently" is a recipe for disaster: sooner or later your iTunes database will get corrupted. You have been warned.

  • Read only account line item appears writable in the webform

    Hi All,
    We are using Hyperion Planning 11.1.1.2.We have a line item called "Salary" under account which is set to read only.Its parent "Compensation" has the security set as IDesc(writable).
    The line item Salary is used in 2 forms.In one form it appears as readonly and in the other it appears as writable.Both the forms are identical except for the change in member in custom dimension for which security is not applied.
    Ideally this line item has to appear as readonly.
    Can anybody throw some light on this issue?
    Thanks in advance,
    Malini

    Hi,
    Can you just try this,edit the first form that works, do a save as and give it a name, change the custom dimension member. save. run. Is it the same?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • PDF form data not visible when opened in Illustrator CS5

    I've been searching the forums but have been unable to find an answer to my specific problem.
    I've created a form using Adobe Acrobat Pro. The PDF form fields are then populated with data via Netsuite. When I open the PDF (with data) in Acrobat all of the information shows up, however when I open the PDF in Illustrator CS5 the field data is not visible. Is there a way to force the data to be visible when opened in Illustrator?
    Thanks in advance for any help!

    You could try first flattenening the fields. This converts the field appearances to regular page contents. You can do this with JavaScript, PDF Optimizer, or a Preflight fixup.

  • Loaded data not visible for Reporting?

    Hi all,
       In the info cube, the data is not visible for reporting, How can i make it available for reporting,
    When i select the Manage option from the context menu of the cube and select the Requests Tab, i get a pop up message that tells
    " There is an inconsistency between the load status of the data and the option of reporting on this data.
    There is data in the InfoCube/ODS object that is OK from a quality point of view, but is not yet displayed in reporting.
    The problem, for example, is to do with request 0000018049, number REQU_F4ZBFRMDGBULE9WCUN3R5UX5X."
    How do i find out the inconsistancies?
    PS: All the requesta are delta upload
    Thanks n regards
    Girikumar

    Hi Girikumar
    Use the RSRV transaction and check the inconsistency of the cube ..If any inconsistency is there repair that with the repari option in the toolbar..
    Let me knwo if it not resolved..
    Bye
    Shu Moh..

Maybe you are looking for