Service name from user level through any query

Hi
One of my user want to find the oracle service name through SQL query from user level. This user is not a DBA.
With DBA privs this querry
SELECT NAME, VALUE FROM V$PARAMETER WHERE NAME = 'service_names';
brings the correct result. But user he will not have the access to read the V$PARAMETER table which is part of sys object.
select sys_context('USERENV','SERVICE_NAME') from dual;
SYS_CONTEXT('USERENV','SERVICE_NAME')
SYS$USERS
this query is not giving my the correct result. Is there any way we can grab the service name from user level.
Your cooperation is highly appreciated.
Rao

select sys_context('USERENV','SERVICE_NAME') from dual;You need to note that the result of the above depends on how you connect to the database. If you connect using NET Service, it should give you the SERVICE_NAME.
SQL> conn sys as sysdba
Enter password:
Connected.
SQL> show parameters service_name
NAME TYPE VALUE
service_names string testdb
SQL> select sys_context('USERENV','SERVICE_NAME') from dual;
SYS_CONTEXT('USERENV','SERVICE_NAME')
SYS$USERS
SQL> conn sys@testdb as sysdba
Enter password:
Connected.
SQL> select sys_context('USERENV','SERVICE_NAME') from dual;
SYS_CONTEXT('USERENV','SERVICE_NAME')
testdb
SQL> conn scott@testdb
Enter password:
Connected.
SQL> select sys_context('USERENV','SERVICE_NAME') from dual;
SYS_CONTEXT('USERENV','SERVICE_NAME')
testdb
SQL> conn scott
Enter password:
Connected.
SQL> select sys_context('USERENV','SERVICE_NAME') from dual;
SYS_CONTEXT('USERENV','SERVICE_NAME')
SYS$USERS
SQL>
So you need to understand the use of sys_context

Similar Messages

  • Fetching network name from a mobile through MIDlet

    Hi All,
    Friends can we fetching network name from a mobile through Midlet programming ? I mean the network tower it currently used.
    if anyone has the concept about that then please help me about that.
    Thanks........
    Edited by: javalearner83 on Sep 26, 2007 4:58 AM

    sory to tell u that i dont know whether it is possible in j2me or not??
    but surely it is possible in Symbian c++
    in my company my collegue has worked in same application about which u are talking

  • IOCTL from user level program do not reach module

    Hello,
    I am facing with a weired problem. The user level ioctl on my device file does not reach the ioctl handler in my module at all. I have a simple character device driver called dummy (just pulled from a device driver manual 'hello world' example).
    [root@/]modinfo | grep dummy
    227 fa2f9a20 634 220 1 dummy (dummy driver)
    [root@/]ls -l /devices/pseudo/dummy\@0\:0
    c-wxrw--wx 1 root sys 220, 0 Dec 3 15:13 /devices/pseudo/dummy@0:0
    The open on the device file works well. But when I call ioctl, the message in the ioctl handler does not print. Niether does the ioctl call appear in the DTrace probes. perror from user program returns :
    : Invalid argument
    Let me know of any probable cause of ioctls not getting executed.
    Thanks in advance
    ->Shreyas
    My driver code is as follows :
        * Minimalist pseudo-device.
        * Writes a message whenever a routine is entered.
        * Build the driver:
        *         cc -D_KERNEL -c dummy.c
        *         ld -r -o dummy dummy.o
        * Copy the driver and the configuration file to /usr/kernel/drv:
        *         cp dummy.conf /usr/kernel/drv
        *         cp dummy /tmp
        *         ln -s /tmp/dummy /usr/kernel/drv/dummy
        * Add the driver:
        *         add_drv dummy
        * Test (1) read from driver (2) write to driver:
        *         cat /devices/pseudo/dummy@*
                  echo hello > ‘ls /devices/pseudo/dummy@*‘
        * Verify the tests in another window:
        *         tail -f /var/adm/messages
        * Remove the driver:
        *         rem_drv dummy
    #define SOLARIS
    #include <sys/devops.h> /* used by dev_ops */
    #include <sys/conf.h>               /* used by dev_ops and cb_ops */
    #include <sys/modctl.h> /* used by modlinkage, modldrv, _init, _info, */
                                           /* and _fini */
    #include <sys/types.h> /* used by open, close, read, write, prop_op, */
                                           /* and ddi_prop_op */
    #include <sys/file.h>               /* used by open, close */
    #include <sys/errno.h> /* used by open, close, read, write */
    #include    <sys/open.h>         /* used by open, close, read, write */
    #include    <sys/cred.h>         /* used by open, close, read */
    #include    <sys/uio.h>          /* used by read */
    #include    <sys/stat.h>         /* defines S_IFCHR used by ddi_create_minor_node */
    #include    <sys/cmn_err.h>      /* used by all entry points for this driver */
    #include    <sys/ddi.h>          /* used by all entry points for this driver */
                                     /* also used by cb_ops, ddi_get_instance, and */
                                     /* ddi_prop_op */
    #include <sys/sunddi.h> /*          used by all entry points for this driver */
                                     /* also used by cb_ops, ddi_create_minor_node, */
                                     /* ddi_get_instance, and ddi_prop_op */
    #include "vmci_defs.h"
    #include "vmciDatagram.h"
    char _depends_on[]="vmci";
    static int dummy_attach(dev_info_t *dip, ddi_attach_cmd_t cmd);
    static int dummy_detach(dev_info_t *dip, ddi_detach_cmd_t cmd);
    static int dummy_getinfo(dev_info_t *dip, ddi_info_cmd_t cmd, void *arg,
         void **resultp);
    static int dummy_prop_op(dev_t dev, dev_info_t *dip, ddi_prop_op_t prop_op,
         int flags, char *name, caddr_t valuep, int *lengthp);
    static int dummy_open(dev_t *devp, int flag, int otyp, cred_t *cred);
    static int dummy_close(dev_t dev, int flag, int otyp, cred_t *cred);
    static int dummy_read(dev_t dev, struct uio *uiop, cred_t *credp);
    static int dummy_write(dev_t dev, struct uio *uiop, cred_t *credp);
    static int dummy_ioctl(dev_t dev, int cmd, intptr_t arg, int mode,
                          cred_t *credp, int *rval);
    static int dummy_poll(dev_t dev, short events, int anyyet,
                          short *reventsp, struct pollhead **phpp);
    /* cb_ops structure */
    static struct cb_ops dummy_cb_ops = {
         dummy_open,
         dummy_close,
         nodev,                     /* no strategy - nodev returns ENXIO */
         nodev,                     /* no print */
         nodev,                     /* no dump */
         dummy_read,
         dummy_write,
         dummy_ioctl,
         nodev,                     /* no devmap */
         nodev,                     /* no mmap */
         nodev,                     /* no segmap */
         dummy_poll,                /* returns ENXIO for non-pollable devices */
         dummy_prop_op,
         NULL,                      /* streamtab struct; if not NULL, all above */
                                    /* fields are ignored */
         D_NEW | D_MP,              /* compatibility flags: see conf.h */
         CB_REV,                    /* cb_ops revision number */
         nodev,                     /* no aread */
         nodev                      /* no awrite */
    /* dev_ops structure */
    static struct dev_ops dummy_dev_ops = {
         DEVO_REV,
         0,                            /* reference count */
         ddi_no_info,
         //dummy_getinfo,
         nulldev,                      /* no identify - nulldev returns 0 */
         nulldev,                      /* no probe */
         dummy_attach,
         dummy_detach,
         nodev,                        /* no reset - nodev returns ENXIO */
         &dummy_cb_ops,
         (struct bus_ops *)NULL,
         NULL                         /* no power */
    /* modldrv structure */
    static struct modldrv md = {
         &mod_driverops,               /* Type of module. This is a driver. */
         "dummy driver",              /* Name of the module. */
         &dummy_dev_ops
    /* modlinkage structure */
    static struct modlinkage ml = {
         MODREV_1,
         &md,
         NULL
    /* dev_info structure */
    dev_info_t *dummy_dip; /* keep track of one instance */
    /* Loadable module configuration entry points */
    int
    _init(void)
         cmn_err(CE_NOTE, "Inside _init");
         return(mod_install(&ml));
    int
    _info(struct modinfo *modinfop)
         cmn_err(CE_NOTE, "Inside _info");
         return(mod_info(&ml, modinfop));
    int
    _fini(void)
         cmn_err(CE_NOTE, "Inside _fini");
         return(mod_remove(&ml));
    /* Device configuration entry points */
    static int
    dummy_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
         cmn_err(CE_NOTE, "Inside dummy_attach");
         switch(cmd) {
         case DDI_ATTACH:
               dummy_dip = dip;
               if (ddi_create_minor_node(dip, "0", S_IFCHR,
                   ddi_get_instance(dip), DDI_PSEUDO,0)
                   != DDI_SUCCESS) {
                   cmn_err(CE_NOTE,
                         "%s%d: attach: could not add character node.",
                         "dummy", 0);
                   return(DDI_FAILURE);
               } else
                   return DDI_SUCCESS;
         default:
               return DDI_FAILURE;
    static int
    dummy_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
         cmn_err(CE_NOTE, "Inside dummy_detach");
         switch(cmd) {
         case DDI_DETACH:
               dummy_dip = 0;
               ddi_remove_minor_node(dip, NULL);
               return DDI_SUCCESS;
         default:
               return DDI_FAILURE;
    static int
    dummy_getinfo(dev_info_t *dip, ddi_info_cmd_t cmd, void *arg,
         void **resultp)
         cmn_err(CE_NOTE, "Inside dummy_getinfo");
         switch(cmd) {
         case DDI_INFO_DEVT2DEVINFO:
                                     *resultp = dummy_dip;
                                     return DDI_SUCCESS;
                                 case DDI_INFO_DEVT2INSTANCE:
                                     *resultp = 0;
                                     return DDI_SUCCESS;
                                 default:
                                     return DDI_FAILURE;
    /* Main entry points */
    static int
    dummy_prop_op(dev_t dev, dev_info_t *dip, ddi_prop_op_t prop_op,
      int flags, char *name, caddr_t valuep, int *lengthp)
      cmn_err(CE_NOTE, "Inside dummy_prop_op");
    //  return DDI_SUCCESS;
      return(ddi_prop_op(dev,dip,prop_op,flags,name,valuep,lengthp));
    static int
    dummy_open(dev_t *devp, int flag, int otyp, cred_t *cred)
       int status;
       cmn_err(CE_NOTE, "Inside dummy_open");
        return DDI_SUCCESS;
    static int
    dummy_close(dev_t dev, int flag, int otyp, cred_t *cred)
        cmn_err(CE_NOTE, "Inside dummy_close");
        return DDI_SUCCESS;
    static int
    dummy_read(dev_t dev, struct uio *uiop, cred_t *credp)
         cmn_err(CE_NOTE, "Inside dummy_read");
         return DDI_SUCCESS;
    static int
    dummy_write(dev_t dev, struct uio *uiop, cred_t *credp)
         cmn_err(CE_NOTE, "Inside dummy_write");
         return DDI_SUCCESS;
    static int
    dummy_ioctl(dev_t dev, int cmd, intptr_t arg, int mode,
                          cred_t *credp, int *rval)
         cmn_err(CE_WARN, "%s(%d) Received function : %d\n", __FUNCTION__, __LINE__, cmd);
         return(0);
    static int
    dummy_poll(dev_t dev,                // IN: Device number.
               short events,             // IN: Requested events.
               int anyyet,               // IN: Whether other fds have had events.
               short *reventsp,          // OUT: Mask of satisfied events. 
               struct pollhead **phpp) { // OUT: Set to a pollhead if necessary.
         cmn_err(CE_WARN, "%s(%d) \n", __FUNCTION__, __LINE__);
       return 0;
    }

    Read very carefully the file /usr/include/sys/ioccom.h.
    -r

  • How can I get the "Service Name" the user used to connect to the DB with

    My application has code that is dependent on the databases "Global Name" make application processing chooses. I want to switch that to the "Service Name" the the user connected to. I have looked at SYS_CONTEXT but I do not seem to see it their. Any ideas?

    Sky13 wrote:
    My application has code that is dependent on the databases "Global Name" make application processing chooses. I want to switch that to the "Service Name" the the user connected to. I have looked at SYS_CONTEXT but I do not seem to see it their. Any ideas?09:19:31 SQL> select * from global_name;
    GLOBAL_NAME
    V112
    09:19:39 SQL>

  • Unregister service name from listener

    Hi,
    I have a default listener (named LISTENER, port 1521) and a database with SID=ORCL. The database automatically registers with the listener, the output of "lsnrctl status" is:
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orcl_XPT" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    And the value of the service_names parameter is:
    SQL> show parameter service_names
    NAME                                 TYPE        VALUE
    service_names                        string      orclNow I'd like to prevent clients to connect to the database using the service name 'ORCL', so I changed the service_names init parameter:
    SQL> alter system set service_names=testdb;
    System altered.
    Then I restarted the listener. The "problem" is that the database registers with the listener also the 'ORCL' service name:
    Service "TESTDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orclXDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Service "orcl_XPT" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    The command completed successfully
    Is it possible to somehow prevent the database from registering the service name ORCL with the listener?
    If you're wondering why I'm asking that, it's because this database is a duplicated production database (on a different host), and I'd like to prevent the possibility of mistakenly connecting to the production DB. I'm aware it would be better if I change the database's SID altogether, but currently that's not possible.
    Thank you in advance for any answer.
    Regards,
    Jure

    Hi coskan,
    Thanks for the answer.
    Jut a question at the beginning. Doesn't the SID_LIST_listener_name parameter define which databases the listener listens to (and not the single services the database offers)? As I understand, I can prevent automatic registration of a database into the listener, but not selectively allow only some services the database offers? Maybe I'm completely wrong, so please correct me if it's so :-)
    As you suggetsed I tried the following:
    listener.ora:
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1522))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = ORCL)
    (ORACLE_HOME = E:\oracle\product\10.2.0\db_4)
    tnsnames.ora:
    LISTENER=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1522))
    SQL> show parameter local_listener
    NAME                                 TYPE        VALUE
    local_listener                       string      LISTENERlsnrctl status:
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1522)))
    Services Summary...
    Service "ORCL" has 1 instance(s).
    Instance "ORCL", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    So, now only the service ORCL is registred, although the init parameter service_names=TESTDB. I can connect using ORCL as the service_name in the connection string, but not using TESTDB.
    Regards,
    Jure

  • "Users " Form Name from "User Definied Field Definition" does not showing

    Hi everyone!
    I start to implement the new SAP Connector on OIM 9.1.0 and one of steps is configure the lookup Lookup.SAP.HRMS.AttributeMapping.
    I need to add more fields beyond those already exists, and in accord to Documentation, I need to create the UDF of these fields, but when I search of "Users" form name form "User Definied Field Definition" option, I receive the follow response:
    "Query Failed: No Record For this Query"
    Thinking about it, I think that necessary create one User Form, but...this form isn't a standard form?
    What I do in scenarios like this?

    Can you share your environment details. Are you trying it out in a newly installed OIM ?_
    Yes, it's a newer fresh installation of OIM 9.10. We use the old version (9.03) in production environment and would like to upgrade to 9.10. This issue occur in a fresh installation in Development Environment.
    The one possible reason for this may be due an improper upgrade to 910X. I actually faced this issue while I was installing/upgrading my OIM. I did the process all over again and it was just perfect. I am not sure that this might be an issue with you or not. But there is simply no othe reason for the Users from not showing uo in the "User Definied Field Definition"._
    If you have taken a fresh backup of the schema just after installation, then import that backup dump and see if you are able to view the Users form. If in case you are not able to view it then your installation / upgrade is corrupt._
    No, we don´t have a fresh dump of environment. We just follow the documentation and all the steps was done without problem. The SAP connector import the fields from the reconciliation using flat IDOC file, just only the standard fields. We need to add newer fields and attributes and after, we face this problem.

  • Get port number,host name,service name from database

    Is there any way to know the host name,port number, sid and the service name of a particular instance from the database.

    > Is there any way to know the host name,port number, sid and the service name
    of a particular instance from the database.
    Why?
    The host name in the HOST_NAME column of V$INSTANCE for example, may not be the hostname/IP address that the local Listener listens for connections on. Or the Listener can listen on that host name/IP and several other local IP addresses.
    The port number used for listening for connections by clients, are determined by the Listener's configuration.
    Thus if you can explain the requirement for this info, maybe the forum can provide better and more specific answers.

  • Getting all service names and users

    Hi all,
    Can i ger all service names in database and users related to that service names .
    Thanks in advance.

    Hi,
    I don't think that's possible in one query given the fact that you can connect to only one instance/database at a time...
    You could post this question also at the [Database-General|http://forums.oracle.com/forums/forum.jspa?forumID=61&start=0] forum, though...

  • Get the root folder name once user will upload any files to subfolder with in this root folder using sharepoint designer WF??

    Hi,
    How to get the root folder name using sharepoint designer WF? i have a document library with root folders and subfolders. so i am trying to get the root specific root folder name attaching with email once user will
    upload any files to subfolders within that root folder.
    Thanks in advanced!

    Hi,
    According to your description, you might want to get the root folder name in SharePoint Designer Workflow when there is file uploading.
    The “Path” field of the current item holds the relative path of a file, as a workaround, you can retrieve the value of the “Path” as string, then split the string
    value with a delimiter character of “/” to meet your requirement.
    In SharePoint Designer 2010, there is no OOTB action to split the string. You can use the custom workflow actions below to achieve it.
    Here is a link about the related actions I use in this scenario:
    https://spdwfstringactions.codeplex.com/
    Settings of workflow as below:
    It works well in my environment:
    Best regards
    Patrick Liang
    TechNet Community Support

  • Cannot change SQL 2008 R2 Service account from local System to any account

    Windows 7 64 Bit Developer Edition of SQL Server 2008 R2
    Successfully changed SQL Server Agent, SQL Server Reporting Services, SQL  Analysis Services, SQL Server Integeration Services and SQL Full-Text Filter Daemon Launcher from Local System Account to Domain account.  Howerver,  I cannot change
    the SQL Server Account.  The SQL Server Configuration Manager generates the below error:
    WMI Provider ERROR (in window title bar)
    Big red X followed by "The parameter is incorrect. [0x80070057].
    I have tried many things with no luck:
    Tried using a different local administrator account
    Tried putting the Domain account I want to change to in the local admin group
    Tried adding the Domain account I want to change to in all of the SQL created local groups
    I think im going to have to reinstall to change the account.  What up!@!!
    -thanks for any help in advance.  Its probably something dumb i did or did not do.
    scott

    Please try:
    Open SQL Server service's property dialog in SQL Server Configuration Manager.
    Select "This account", and then click "Browser".
    Enter you domain account and then click "Check Names"
    Back to property dialog and input the password
    Please let me know if the issue persists.
    Best Regards
    Alex Feng | 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]

  • Deriving Planning Folder Technical Name From User-Exit

    Dear Colleagues,
    For those of you who know ABAP, do you know if it is possible to determine the technical name of a planning folder from within a user-exit (i.e. planning function that has been executed from within a planning folder)?
    Customer states: They would like to use a Planning Folder, and invoke a planning function of type user-exit (i.e. via button in folder), which will execute an ABAP that has a case statement for conditional execution of steps, based upon the technical name of the planning folder that invoked the call.
    Thank you in advance for any guidance or feedback you may be able to offer.
    -M

    Hi Michael,
    Write this code in the exit function
    FIELD-SYMBOLS: <fsl_class> TYPE REF TO cl_upb_pm_applc.
      DATA:          name(50),
                     plan_folder TYPE upb_y_ps_name.
      name = '(SAPLUPB_PM)gr_applc'.
      ASSIGN (name) TO <fsl_class>.
      IF sy-subrc = 0.
        CALL METHOD <fsl_class>->get_active_pm
          RECEIVING
            r_pm = plan_folder.
      ENDIF.
    Glad I could be of help to the mastero.
    Let me know if it worked.
    thanks

  • How to customize the XML file name from user entered field value when submitting

    How can I customize the name of an HTTP submitted XML file from data entered by the user in a text field?
    The field in question contains user identification information and would ease the sorting of files received for easy identification.
    Thank you,

    How can I customize the name of an HTTP submitted XML file from data entered by the user in a text field?
    The field in question contains user identification information and would ease the sorting of files received for easy identification.
    Thank you,

  • Database name from OS level

    Hi ,
    How can i know the name of the database running from OS prompt

    on unix check with ps command, on wndows check the services.
    rgds

  • Not able to access the module from user level i.e., other than Super user.

    Hello Friends,
    I created company with super user and normal user, for a normal user gave the rights of sales. When logged in with normal user try to create sales order i am experiencing following system message "To generate this document, first define the numbering series in Administration module [Message 131-3]".
    Could you please advise me in this regard.
    Thanks,
    Rayudu

    Hi,
    Please check the following thread which is being discussed:
    Re: "Define the numbering series in Admin module"
    For the issue you have reported, kindly refer Note 1057873, which will resolve your issue.
    Note says:-
    Symptom
    When trying to open a document a user gets the system message:
    'To Generate this document, first define the numbering series in the Administration module'
    Other terms
    Authorizations, Document Numbering, Series, access
    Reason and Prerequisites
    SAP Business One Functionality, Consulting
    Solution
    A document numbering series have been defined and the user have authorisation to the document type in:
    Administration -> System Initialisation -> General Authorisations -> Sales-AR/Purchasing-AP
    All document numbering series are also given a Group.
    Administration -> System Initialisation -> Document Numbering
    Double click to the left of the row to view the existing numbering
    series for the document type. The field 'Group' is here. By default this value is 1.
    For the Groups there is a separate authorisation.
    Administration -> System Initialisation -> Authorisations -> General Authorisations -> Administration -> System Initialisation -> Series
    After expanding the 'Series', give the user authorisation to the
    Serie/Group that is defined for the document numbering serie it is trying to open.
    Also, check for more similar threads in the forum which could help you.
    Regards,
    Jitin

  • In Infopath - From User Group webservice First & Last Name are not displaying

    Hi, I am working on Internet faced Infopath Sharepoint 2010 web application.In Infopath form we used a User Group web service to retrieve the first and last names when opening the form. In Development environment its working fine (Ex:- http://sharepoint2010dev:45/)
    then we extend the webapplication with domain name in url.(Ex:http://Domainsp:80/) then the first and last names from User Groups is not working.
    Please give your suggestions to resolve this isssue.
    Any help is appreciated..!

    Hi,
    According to your post, my understanding is that the User Group web service not worked when extend the web application with a domain name in URL.
    Did you change the URL to the UserGroup web service in the Data Connection Wizard?
    As you had changed the URL, I think you should change the URL(http://<site>/_vti_bin/UserGroup.asmx), then check whether it works.
    http://blog.ianchivers.com/2011/01/using-sharepoint-usergroup-web-service.html
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • Where do you get ai0 channel from for 3 hr course

    I am doing the 3 hr beginners course I am in the 2b data acquistion section, I created the data assistant chose analog input then voltage, now I am in the next section, it tells you to select ai0 channel but i have no channels to choose from, can any

  • HOW CAN I AN ERROR FROM A REPORT ON A WEB

    I HAVE AN FORM THAT LAUNCH A REPORT BUT WHEN I RUN THE REPORT,THE REPORT END WITH "TERMINATED WITH ERROR", MY QUESTION HOW CAN I SEE MORE INFORMATION ABOUT THE REPORT ERROR? tHANKS

  • Reg:Tables for Workflow

    Hi All, My requirement is as follows... I need to create one new program based on contract number when I executed that program it should show the status of approval where itu2019s pending whether rejected or approved and comment of approved / rejecte

  • Sometimes dual head display is stretched

    Sometimes when I am logging in, instead of the gdm login screen appearing on my default monitor, it turns off the default one, and half of it appears, stretched in the secondary one.  If I log in with this setting, then the primary monitor is off unl

  • Firefox will not show a downloaded toolbar. It says it is installed but it will not put in on my toolbars.

    I downloaded the ChaCha Guide Toolbar 1.2. It says it in installed and enabled, but it will not show up on my toolbar. == This happened == Every time Firefox opened == The first time I tired