Email Event Read/View Access

In our current setup in development tier we have access of add, edit, and delete to the email event. In production tier we do not have any those access. I was wondering if the email event can have view/read access so that we can see the email event. The same setup for job definition that we can only view/read the job in production.
Thanks,
Warren

The option selected is correct.  A few possibilities:
1. Log out of Tidal Client, then sign back in
2. Do you access Tidal via a locally installed client or go through Citrix as a published app? If so, then at times the Citrix user profile gets corrupted preventing users from seeing all their entitlements, and needs to be fixed.
BR,
Derrick Au

Similar Messages

  • Email Event Generator to read out-box on Exchange server

    I know Email Event Generator could read in-box, can it also read out-box on Exchange server? if yes, how could i configure to read outbox?

    The iPhone and iPad are unable to read RMS (restricted email) because iOS is not RMS enabled.  GigaTrust has an application (http://www.gigatrust.com/ios-devices.shtml) for the iPhone and iPad that will allow RMS protected emails to be viewed and created.  The GigaTrust App is available for a free download from the iTunes App Store but there are server side components that must be provided by GigaTrust and require a connection license.

  • Hi There for the last few days I can log into Icloud on my pc but I can't action anything. I can see the emails but cannot view them. I cannot compose a new email.. I don't know if this is icloud or my pc? Its working fine when I access on my iphone..

    Hi There
    for the last few days I can log into icloud via icloud.com on my pc but I can't action anything.
    I can see the emails but cannot view them. I cannot compose a new email.. I don't know if this is icloud or my pc?
    Its working fine when I access on my iphone.
    many thanks
    Cherry

    Just realised its fine through internet explorer but its Mozilla.. so assuming an issue with my browser?

  • View read allows read only access

    Hi friends,
        I have created maintainance view, I am getting this warning " View read allows read only access , Maintainance not possible". So to avoid this, what should i do now.
    Thank you

    Hi,
    In Delivery and maintence check if the field Data Browser/Table View Maint. has the value delivery and maint allowed
    or delivery and maint allowed with restrictions.
    Regards,
    Rajesh Kumar

  • DB read only access role with properties view of a database

    Hi,
    We need to access database properties for SQL server 2000/2005/2008. I am pretty sure that 2005/2008 can be accessed with db_datareader role. Not sure whether same can be used with SQL 2000 instances. CAn anyone provide clarity on this?

    You can use db_datareader on SQL 2000, but as Satish says, you don't need it only to access database properties.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Cannot open/view/access interactive pdf form on iMac after updating Adobe Reader to 11.0.06.70

    Cannot open/view/access interactive pdf form on iMac after updating Adobe Reader to 11.0.06.70. Please help!

    Here is what it says:
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/products/acrobat/readstep2.html.
    For more assistance with Adobe Reader visit http://www.adobe.com/support/products/ acrreader.html.

  • How to Email Reader View from Safari

    On both iPad and iPhone when I display a web page using reader view I can then email that full article/reader view.
    In Safari on Yosemite that reader view is also available but there seems to be no way to email the full article from reader view.
    Is it possible?

    If an article is Reader capable, 3½ bars icon will appear near the left end of the search bar
    Click the "Share" icon and select "Email This Page".
    When the Mail composing  window appears with link inserted, click inside popup box next to "Send Web Content As"  and select "Reader".
    Best.

  • How will read the value from Adobe Reader/Viewer in c# windows App

    I m using VS2005 . working in windows appliction. i am using adobe Reader 9, Then the new pdf document open  inside the Acrobat adobe reader , Exsiting PDF file is created by Adobe Forms(Adobe LiveCycle designer and Adobe pro 9).
    Using the Class is:
    1.AcroExch.App
    2.AcroExch.AVDoc
    3.AcroExch.pdDoc
    4.Acrobat.CAcroApp
    namespace is:
    using AxAcroPDFLib;
    using AFORMAUTLib;
    using Acrobat;
    Using DLL is:
    1. Interop.Acrobat
    2. Interop.AcroPDFLib
    3. Interop.AFORMAUTLib
    4. AxInterop.AcroPDFLib
    My problem is,
    I am Working in
                       PDFis open inside the adobe reader/Viewer, but i can not able to get the value from PDF Forms.
                        ( This Pdf forms is Some more Control Design is Available)
    Ex:
    I have Attached my Pdf  disgn file.        Please see this Pdf file.
    I am not able to get the value from  inside window(adobe Reader/Viewer),  but i can able to get the value from the out side of adobe viewer/Reader.
    This coding not working properly,
    try
                    CAcroAVDoc AcroExchAVDoc = default(CAcroAVDoc);
                    CAcroApp AcroExchApp = default(CAcroApp);
                    CAcroPDDoc oDoc = default(CAcroPDDoc);
                    AFORMAUTLib.AFormApp AFormAut = default(AFORMAUTLib.AFormApp);
                    AFORMAUTLib.Field Field = default(AFORMAUTLib.Field);
                    AFORMAUTLib.Fields Fields = default(AFORMAUTLib.Fields);
                    bool OK = false;
                    AcroExchApp = new AcroApp();
                    oDoc = new AcroPDDoc();
                    AcroExchAVDoc = new AcroAVDoc();
                    AFormAut = new AFormAppClass();
                    //AcroExchApp = (Acrobat.AcroApp)Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.App" ));
                    //oDoc = (Acrobat.AcroPDDoc)Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.PD Doc"));
                    //AcroExchAVDoc = (Acrobat.AcroAVDoc)Activator.CreateInstance(Type.GetTypeFromProgID("AcroExch.AV Doc"));
                    //AFormAut = (AFORMAUTLib.AFormApp)Activator.CreateInstance(Type.GetTypeFromProgID("AFormAut .App"));
                    bool bOK = AcroExchAVDoc.Open(pdfWindowLeft.src, "Temp"); ' some time not true
                        ' if  ok (true) then
                    if (bOK)
                        Fields = (AFORMAUTLib.Fields)AFormAut.Fields;
                        foreach (Field myField in Fields)
                            if (myField.Name == "form1[0].#subform[0].Id[0]")   ' field value not get from the inside window
                                string Id = myField.Value; ' not getting a answare
                            if (myField.Name == "form1[0].#subform[0].PatientName[0]")
                                string PatientName = myField.Value;
                            if (myField.Name == "form1[0].#subform[0].Email[0]")
                                string Email = myField.Value;
                            if (myField.Name == "form1[0].#subform[0].PhoneNo[0]")
                                string PhoneNo = myField.Value;
                            if (myField.Name == "form1[0].#subform[0].Address[0]")
                                string Address = myField.Value;
                catch (Exception Ex)
                    lbl_Result.Text = Ex.Message;
                finally
                    Conn.Close();
    This coding is working properly,
    try
                    String FORM_NAME = addressLeft.Text;
                    //String FORM_NAME = Application.StartupPath + "\\..\\..\\..\\..\\..\\TestFiles\\SampleForm.pdf";
                    // Initialize Acrobat by cretaing App object.
                    CAcroApp acroApp = new AcroAppClass();
                    // Show Acrobat Viewer
                    acroApp.Show();
                    // Create an AVDoc object
                    CAcroAVDoc avDoc = new AcroAVDocClass();
                    // Open the pdf
                    if (!avDoc.Open(FORM_NAME, ""))
                        lbl_Result.Text = "Cannot open" + FORM_NAME + ".\n";
                        return;
                    // Create a IAFormApp object, so that we can access the form fields in
                    // the open document
                    IAFormApp formApp = new AFormAppClass();
                    // Get the IFields object associated with the form
                    IFields myFields = (IFields)formApp.Fields;
                    // Get the IEnumerator object for myFields
                    IEnumerator myEnumerator = myFields.GetEnumerator();
                    bool bFound = false;
                    // Fill the "Name" field with value "John Doe"
                    while (myEnumerator.MoveNext())
                        // Get the IField object
                        IField myField = (IField)myEnumerator.Current;
                        // If the field is "Name", set it's value to "John Doe"
                        // form1[0].#subform[0].Name[0]
                        if (myField.Name == "form1[0].PatientInformation[0].Id[0]")
                            //form1[0].#subform[0].Id[0]
                            bFound = true;
                            lbl_id.Text = myField.Value;
                        //form1[0].#subform[0].Name[0]
                        if (myField.Name == "form1[0].PatientInformation[0].PatientName[0]")
                            bFound = true;
                            lbl_name.Text = myField.Value;
                        if (myField.Name == "form1[0].PatientInformation[0].Email[0]")
                            bFound = true;
                            lbl_email.Text = myField.Value;
                        if (myField.Name == "form1[0].PatientInformation[0].PhoneNo[0]")
                            bFound = true;
                            lbl_phoneno.Text = myField.Value;
                        if (myField.Name == "form1[0].PatientInformation[0].Address[0]")
                            bFound = true;
                            lbl_address.Text = myField.Value;
    can u anyone help me. It's very urgent for my project.
    Thanks for ur replay,
    Regards
    Ganesaselvam.I

    First off - the code you wrote won't work with Reader, it will only work with Adobe Acrobat.
    Second, LiveCycle Designer-based forms are a special type of PDF and don't use AcroForms, they use an XML-based forms grammar.  Therefore, the AcroForms API calls aren't designed to work with them.  You should be using the JSObject bridge code along with JavaScript to access the values of the fields.

  • Granting Read Only Access to user in another schema

    Oracle Database 10g
    Red Hat Enterprise Linux Server release 5.3
    We are requested by a developer to grant his account read only access to TABLES, VIEWS, INDEXES, SEQUENCES, FUNCTIONS, PROCEDURES, PACKAGES, TRIGGERS, JOBS of another schema.
    I know granting read only access to Tables and Views. But is it possible to grant READ ONLY access to other mentioned objects ? How to do it ?
    And some views are in INVALID status.
    I tried to compile them using alter view owner.viewname compile;
    But got this ---- Warning: View altered with compilation errors.
    Those views are still in INVALID status. And then I tried to use utlrp.sql . Same result.
    Then I used the following
    SELECT TEXT FROM DBA_VIEWS WHERE VIEW_NAME='view-name';
    select REFERENCED_NAME,REFERENCED_TYPE from dba_dependencies where name='view-name';
    It turns out some reference types are non existent.
    Does that mean DBAs cannot do anything about this ?

    Nilton wrote:
    We are requested by a developer to grant his account read only access to TABLES, VIEWS, INDEXES, SEQUENCES, FUNCTIONS, PROCEDURES, PACKAGES, TRIGGERS, JOBS of another schema.
    I know granting read only access to Tables and Views. But is it possible to grant READ ONLY access to other mentioned objects ? How to do it ?
    TABLES -> YES grant SELECT
    VIEWS -> YES grant SELECT
    SEQUENCE -> YES grant SELECT
    INDEXES -> There is no read access for indexes...indexes are put on tables and a user who has read access on tables can read the index as well.
    FUNCTIONS / PROCEDURES / PACKAGES -> I am not sure what you mean by read access on procedures, functions and packages. You may grant EXECUTE privilege on these.
    TRIGGERS -> there is no read access on triggers required. They are implemented on tables for a DML event. If the user has DML access he has the execute access on the trigger as well.
    JOBS -> I am not sure what to read from Jobs.
    And some views are in INVALID status.
    I tried to compile them using alter view owner.viewname compile;
    But got this ---- Warning: View altered with compilation errors.
    Those views are still in INVALID status. And then I tried to use utlrp.sql . Same result.
    Then I used the following
    SELECT TEXT FROM DBA_VIEWS WHERE VIEW_NAME='view-name';
    select REFERENCED_NAME,REFERENCED_TYPE from dba_dependencies where name='view-name';
    It turns out some reference types are non existent.
    Does that mean DBAs cannot do anything about this ?There are compilation errors in the Views. e.g. the view may be referring to a table which doesn't exist etc.
    Unless you fix the error in the view you can't compile it and male it valid. Fix the view errors. If objects are non existing create them or refer to view to some where else.
    If the nonexistent objects were mistakenly dropped, or the data file which contained those objects was dropped, no matter what was the reason for that object to be gone a DBA can bring it back if he is a well prepared DBA and has setup his database for such kind of disasters.
    Now tell us why those objects are non-existent ? were they meant to be gone ? or they were dropped mistakenly?
    Now here are my guesses:
    If they were meant to be gone then probably the views definitions need to be adjusted not to refer them anymore.
    If they were mistakenly dropped then:
    Do you have them in recyclebin? (only tables) if YES just FLASHBACK TABLE <<tablename>> AS BEFORE DROP.
    Is your database has Flashback database ON? if YES FLASHBACK DATABASE until 'time/scn just before the object was dropped'
    Do you have backups and your database is running in ARCHIVE LOG mode? if YES perform an incomplete recovery using RMAN.

  • Email event generator - error publishing emails received from browser

    Hi,
    Configured an email event generator that listens on a mailbox. The message type is set to string and no filters. All emails sent from outlook is published successfully to message broker channel and the subscribed by a process. Whereas for emails sent from any browser email like yahoo, gmail gives "Null pointer exception - cannot publish message". Anybody have encountered this error?
    Also is it possible to configure the email event generator to archive the emails to another folder in the mailbox rather than to a physical directory?
    -Manjula.

    access issues..

  • Send Email Error from Viewer 10gR2

    This is new standard functionality in Discoverer Viewer on AS 10gR2. From a 10gR2 Viewer worksheet, one of the action links is "Send email". It takes you to a form where you can enter your e-mail and a recipient's e-mail address. It exports the worksheet to a file on the server in the selected format (CSV, Excel, etc.) and states "export file created successfully" but then fails for me when it attempts to send the e-mail with export file attachment.
    ERROR MESSAGE: "OracleBI Discoverer was unable to read the configuration file. A value is required for the following expression: mailhost.opnext.com An error occurred while handling the event. See the application log for more details."
    METALINK DOC # 289738.1 - "Sending An Email Via Discoverer Viewer 10g r2 (10.1) Fails With "Error Unknown SMTP host" seems to address our problem. We followed its solution and set the Viewer server e-mail
    METALINK DOC SOLUTION: Set the outgoing smtp mail server via OEM(Oracle Enterprise manager)on the 10gR2 server. Launch the OEM http://machinename.domain:181x then click the Discoverer link and then click the link Discoverer Viewer, and then Email link, Now set the SMTP Server.
    We changed that setting from "mailhost.opnext.com" (whose value matched the address in the error message) to the IP address of our SMTP server. Upon retrying the action, we got the same error message with mailhost.opnext.com in the message, even though the Viewer setting was changed to an IP address of a different server.
    We’re not sure why Viewer is still trying to use the original value, mailhost.opnext.com, since we changed the setting.
    Any ideas?

    after a lot of reading on forums such as this and trying different settings and tests recommended in those forums unsuccessfully, i think i finally stumbled across an answer that worked for me and i now have my problem solved. i came across a discussion about reloading the mail software from the operating disk and or deleting accounts and starting over. i chose the easy way first and deleted my email account. at this moment i can send and receive with no problems, knock wood it will stay that way.
    i ended up deleting my Verizon account from the email account list. then restarted my computer, opened mail and it asked me to set up an account. i did exactly the same things, same settings, checked the same boxes as before but this time it works and i am at a complete loss as to why but i am not going to question it any more than i already have. these kind of issues can drive a guy crazy.
    i am in hopes that this simple process will help some of the many other folks who are also having problems like this get thru their send error issues as well, give it a try and see what comes from it, it seems to have solved my problems.

  • Seting custom email Event ring tones on a Treo 800w

    I want to use custom ring tones for the New Email Event. The ring tones in My Documents/My Ringtones do not show up in the dropdown to select a ring tone. It works fine for the other Events. The file type for the ring files is MP3.
    Post relates to: Treo 800w (Sprint)
    This question was solved.
    View Solution.

    Try copying the file the sound file here:
    My Device > Application Data > Sounds
    Any luck?

  • Event List view in iCal?

    I would love to have an Event List view in iCal like I do on the calendar on my iPhone. Is there such a thing? The particular reason for wanting it (this time) is that one of the calendars in the ON MY MAC list has a number in a oval to the right.
    I believe this is trying to tell me that there is a new event that I need to do something about. Problem is, I don't know where to find it.

    ecernek,
    There is no event list option on iCal like the one on the iPhone.
    That number means that you have an event invitation. Use iCal>View>Show Notifications to choose what to do with the notification.

  • Event page view in APEX 4.0

    hi -- It looks to me like the new "tree" page view in APEX 4.0 shows only regions/processes/items, etc defined on the current page. If I recall correctly, the "event" view in
    3.2 showed app processes and page 0 regions, etc intertwined w/ the actual page items.
    Is there a view available in 4.0 that mimics this event view? I found it very handy...
    thanks,
    carol

    Is there a view available in 4.0 that mimics this event view? I found it very handy...Now available from the page Utilities pop-up menu: Utilities > Page Events.

  • I have a smartmail box and a 1 in a bubble next to it. I see no new emails to read so how do I find the ONE it says is there? if it is a glitch, how do I get rid of that bubble?

    I have a smartmail box and a 1 in a bubble next to it. I see no new emails to read so how do I find the ONE it says is there? if it is a glitch, how do I get rid of that bubble?

    Try rebuilding the mailbox.
    First select the offending mailbox. Then click on Mailbox in the menu bar, and select Rebuild. If the bubble goes away, it was a glitch. If it does not go away there is one unread message in that Mailbox.
    To find that one:
    In Mail, go to View / Sort by / Unread. That should bring the unread email to the top of the list.

Maybe you are looking for

  • Mac OS X Mountain Lion Boot Drive Issues

    Dear Apple Users, This is my first post here on the Apple Support Communities, so kindly forgive me if I'm repeating a previously asked question. I'd like to create a Mac OS X Mountain Lion USB Boot Drive and of course I already have it installed on

  • Class Selector Question

    Hello, Is there a way in Dreamweaver to apply a class to an item like this for example: .paragraphstyle.orange The class in code view would look like: <class="paragraphstyle orange"> The only way I can find to apply a class like this, is to manually

  • Missing registry keys

    Why is it that we cant seem to get help and it seems to me that quite a few of us of having the same problem. We are getting the error message thst the registry settings for used by itunes for importing and burning CDS and DVDS are missing. Now all m

  • Updated iPhone to 4.2.1 but camera doesn't show up in text

    Hi! So I broke my iphone and got a new one at the store and updated it at home to the newest update because my camera wouldn't show up in my texting bar. I updated the phone and it still isn't showing up. Please help! Thanks

  • Opening .xls in pages

    hello does anybody know how to open an .xls file in pages...i can't seem to be able to do it