Printer Configuration - User Level

Greetings to All,
I have question.. Is it possible to set printer at user level (Default printer to EBS applicatioin users) in EBS r 12
Environment:
OS: OEL 5.3
APP: EBS R 12
Thanks in advance,
Satish

Hi Satish,
Yes its possible
Mainly u need to follow:
- Setup the printer at the OS level
- Add a valid entry in the hosts file (Printer Name and the IP Address)
- Login to System Administrator responsibility
- Navigate to Install > Printer > Register
- Define a new printer by entering the Printer Name you have set in the hosts file
- Save
- Bounce the Concurrent Manager
- Submit any standard concurrent request
Also check
Oracle Application Object Library Printer Setup Test [ID 200359.1]
You can search printer issue on forum, you will find many good thread which is answered Hussein Sawwan
Regard
Helios

Similar Messages

  • LaserJet P1505n printing slow just for user-level accounts in Win7

    I have several workstations running Win7 Pro 64-bit that have been installed as replacements for XP machines.  All of them print to one of several P1505n printers, and are using the latest drivers from HP.  Under XP there were no problems printing to these printers, but the Win7 machines have significant delays when trying to print.  The Windows test page prints instantaneously, but printing from any other application has a delay of up to a full minute before the job begins to print.  Once the job prints, it prints without issue.
    One thing that I have noticed during my testing seems to point to permissions.  If I am logged in using my admin-level account, everything prints as it should, with no delays at all.  Once I log in with a user-level account, however, the delays begin.  I found the driver files at C:\Windows\System32\spool\drivers\x64\3, but giving "everyone" full control over those files does not help.
    Is there anything else that I should be looking at?
    Thanks in advance!
    Donny

    In the end, I was able to resolve the problem by installing the Vista x64 drivers.  No playing with permissions necessary.

  • LT31 - Default print code at User Level

    Dear All,
    Is it possible to default PRINT CODE(Print control data) in LT31 t-code at user level. Thanks in advance.
    Regards
    Ramprakash

    In WM is in general no user-specific printing, but SAP offers 2 workarounds see the details in the KBA 1847818 - Unable to assign a specific printer to a user when printing Transfer Orders in WM

  • Printer Configuration at user end

    Dear Friends,
    In our Production Server we configured one printer named as ZEP0. We used this printer for all our print out needs.
    I configured this printer in user end  PC. Printer is connected to that PC just i rename thar printer as ZEP0. it's working fine. I enabled the sharing in that printer. and I connted the same printer to some different PC via sharing. and I try to give print it's not working. I need yours help to fix this problem.
    Thanks in advance.
    G.G.Karthickbabu.

    Hi,
    I connted the same printer to some different PC via sharing.
    if you are sharing the printer on different windows host then
    in this case host printer must be __DEFAULT
    regards,
    kaushal

  • How do I configure a Frontend Printer for User type - Communication "C"

    Hi,
    Inorder to facilitate the business process in our company we have assigned (using T.code OMJ3) 2 Storage locations to print the material documents to the front end printer whenever a GR or GI/GT is performed.
    Recently we implemented a project, to perform a GR (movement type 505) using dotnet application, which connects to SAP R/3 using a Login Id with user type "C" (communication). The material documents cannot be printed as the system is searching for a frontend printer. If we assign a particular Printer we are able to print, but this does not help our business process effectively.
    Can we configure to print the material document on the front end printer?  Assumed that fronted printer cannot be configured to this user type and we tried to use the T.code OMJ4 to assign the user group, but did not work. The output determination was always pointing to the frontend printer and the spool is in "waiting" status.
    Please suggest how can we configure so that at the same storage location, we should be able to use the frontend printer by user type dialog or communication.
    Or any alternate way of doing this.
    Thanks
    Nithin

    Firefox Orange Button > Preferences > Preferences > Application
    Search for the ".indd file" and change the option

  • Output Control at User level

    Hi ,
    I have a requirement. Is that in the Output Determination  can we control the specific ouput type for user specific.
    I,e In billing output for output type "RD00" for the print medium 1, i need to control at user level. One user should be able to generate this output & the other user should not.
    Please give me suggestion on the above. This should be only controlled through configurations but not through any Z Programs.
    Points Rewarded.
    Regards,
    Chakri M

    Dear Chakri,
    As you mentioned that one user should have access for Output but the other should not have the same.
    Please contact your basis or security team to give the access to the person  whom you want authorisation for Output and check the other user whether he is having access to Output generation, If he have authorisation ask Basis team to deactive his  authorisation.
    If you have any concern revert back the same to me
    Amjad

  • 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

  • ORARRP doesn't print to a printer configured through TCP/IP.

    Could any one using ORARRP pls. help ? I am pasting the TAR contents I opened with Oracle Support.
    Oracle Support doesn't support ORARRP. They referred me back to discussion forum.
    Thanks,
    RK
    Resolution History
    22-MAY-02 19:25:05 GMT
    Can you easily recover from, bypass or work around the problem? = NO
    Does your system or application continue normally after the problem occurs? =
    YES
    Are the standard features of the system or application still available; is the
    loss of service minor? = YES
    ### Problem Description: ###
    I am using windows 2000. I found an article which said there is a new release
    of ORARRP for windows 2000. Can I obtain the latest release of ORARRP.exe ?.
    I am having trouble printing with ORARRP. I select the output file from the web
    by clicking it. and it opens the printer dialog.. I hit O.K and nothing is sent
    to the printer.
    Need help.
    ### Upgrade or New Install?:###
    Neither
    ### Error numbers/messages:###
    no error messages.
    ###Log files faxed/emailed or uploaded ###
    Uploaded
    ###Any workarounds ###
    none
    ###Name & Version Details ###
    none
    ### Were you able to complete this process previously? When? ###
    no
    ### Can you duplicate the issue? What is the navigation path? ###
    yes
    ###Is the problem in all environments? If not what's the difference?:###
    Not Sure. Need to check with some one else who uses windows 2000.
    ###Any patches applied recently?:###
    none
    Contact me via : E-mail -> [email protected]
    23-MAY-02 00:09:27 GMT
    Issue needs to be addressed with Oracle Reports Developer. XFR->TOOLSREP
    23-MAY-02 01:06:04 GMT
    New info : Hi Oracle Support,
    I found that the ORARRP works fine and submits report to the Printer if the
    printer is defined through Novell Netware Network.
    But if the same printer is defined through I.P address directly as a local
    Printer it doesn't work. ( Add new port , Standard TCP/IP port method in
    Windows 2000).
    Does it give us any clue to solve this issue ?.
    Pls. Help.
    Thanks,
    RK
    23-MAY-02 13:19:58 GMT
    Investigating this issue...
    23-MAY-02 13:32:25 GMT
    Hi,
    My understanding is that you where trying to print using ORARRP utility on the web
    Since you are trying on an muti-tiered server(that is web is 3-tier)
    by default this report will be printed out to the default printer assigned to
    the application server machine , NOT to the client machines default
    printer.
    For example,
    Machine 1 - the application server machine
    Machine 2 - the client machine
    Machine 2 submits a request to run a report to the multi-tier server with
    DESTYPE set to PRINTER; DESNAME is left blank.
    Printing will be on the default printer of Machine 1(Application server)
    and not on Machine 2(Client PC)
    If I am wrong inmy understanding, please eloborate
    Best rehards
    Chandru
    23-MAY-02 13:32:44 GMT
    Email Update button has been pressed -- Sending email.
    23-MAY-02 15:08:03 GMT
    New info : A Big No. We are running the 10.7 version of Oracle applications and
    there is no middle tier per se.
    All we have done is to define a new printer called "LOCAL_PRINTER" and when
    users select this printer the initiaization string which the Print command
    sends to the printer before sending the file gets added to the output file and
    the output file is stored in a directory which is accessible through a web
    server.
    Users invoke the browser and point to the website where the output files are
    avaiable. and then click on their request ids. Since the extension of the file
    is .rrpt the ORARRP utility brings the Printer dialog where we have select the
    printer.
    This setup was working sucessfully till so far. ( Past 1 year).
    Now it suddenly didn't work for a user's printer which was connected to her PC.
    Since I had windows 2000 on my laptop and I tried the same and found that the I
    select a PC which is defined through I.P Address then it is not working. But
    if I select the same printer defined through Novell Netware it is working.
    Please let me know if you are getting the picture. if not may be we can do a
    webex session or something like that.
    Thanks,
    RK
    916-630-3508
    23-MAY-02 15:51:40 GMT
    Hi,
    Sorry, I do not find any related notes on this issue
    Possibly the PDF by name orarrp1.3.4.pdf in the ZIP file [downloadale at http://otn.oracle.com/sample_code/products/reports/files/Orarrp_1_3_4.zip] could show some pointers on this issue.
    This PDF about this utility and is the only document I could find on this issue
    ORARRP is a sample supllied "AS IS" to customers and is currently not supported by Oracle Support
    Users facing any issues with this utility are encouraged to share their experiences in OTN forum at http://otn.oracle.com
    This forum is being monitored by Product Management who can help customers as well as provide fixes for this utility
    Please close the tar and post in OTN forum
    Thanks
    Chandru
    23-MAY-02 15:51:51 GMT
    Email Update button has been pressed -- Sending email.
    23-MAY-02 10:24:13 : CHANGES MADE VIA MetaLink
    NOT YET FORWARDED TO OUR INTERNAL SYSTEMS :
    Closed by customer
    Closing the TAR

    Hi Radhakrishnan,
    ORARRP doesn't actually do any printing itself. Via COM/Active-X, it calls the appropriate program that corresponds to the type of output, and then this program does the actual printing. For PDF, it calls Acrobat Reader to print the document. Acrobat Reader displays the printer dialog to let you choose which printer to use, and then when you click OK, Acrobat Reader prints the document and sends it to the printer.
    I expect that you'll find that when you use Acrobat Reader yourself on this machine it has exactly the same problems with this particular printer configuration. If so, you'll need to contact Adobe for further assistance.
    regards,
    Stewart

  • Windows Server 2012 Group Policy Block USB Storage devices @ User Level Not getting applied on a Domain Client machine with Windows Server 2008 R2. Why?

    Hello,
    I have a Windows Server 2012 R2.
    I have configured the Group Policy on it to block the usage of USB - Storage Devices @ user level on the client machines. It works properly for my Windows 7 client machines but it's not working on one of the machine having Windows Server 2008 R2 installed
    on it (this machine is also a domain client in the same domain).
    I will really be thankful if anyone can suggest some solution to this issue.
    Please feel free to write back in-case I have missed anything obvious to be shared.
    Thanks!
    -Vinay Pugalia
    If a post answers your question, please click "Mark As Answer" on that post or
    "Vote as Helpful".
    Web : Inkey Solutions
    Blog : My Blog
    Email : Vinay Pugalia

    Hi,
    Any update?
    Just checking in to see if the suggestions were helpful. Please let us know if you would like further assistance.
    Best Regards,
    Andy Qi
    TechNet
    Subscriber Support
    If you are TechNet
    Subscription user and have any feedback on our support quality, please send your feedbackhere.
    Andy Qi
    TechNet Community Support

  • Presentation on BI7.0 at user level

    Hi Experts.
    I am looking for presentations or documentation on BI7.0 improvements at user level.
    I have to show my users the advantages and improvements of BI7.0 over BW3.5 to convince them about a  migration, but I could not find such information.
    Thanks and Regards.

    hi,
    refer the below link
    www.slideshare.net/srinath_vj/differences-between-bw35-bi70-presentation
    https://www.sdn.sap.com/irj/scn/articles-intermediate?prtmode=print&startindex=281
    https://www.sdn.sap.com/irj/scn/articles-data-warehousing-all?prtmode=print
    www.saplounge.be/Files/media/cases/2008/TechDay2008/1.6---Siemens.pdf
    thanks
    naresh

  • Risk Analysis at user level shows nothing in all 3 views though at role level shows risks of global rule set

    I am configuring ARA 10.1 for a ECC 6.0 plug in development system and facing this issue. Risk Analysis at user level shows no data  in all 3 views though at role level shows risks of global rule set. I am using Global rule set. I generated all risks/functions & using connector group as SAP_ECCS_LG not SAP_R3_LG.I activated common, R/3 & ECCS BC sets. Added integration scenario for AUTH. Run all 4 sync jobs multiple times successfully. My system already has decentralised EAM 10.1 implemented & even used in production as BAU. I have checked at both chrome & IE. The misleading thing is that RFC is also working fine & I can see risks in Risk Analysis at role level & risky roles are even assigned to valid users.GRC is at SP4 & accordingly is the ECC 6.0 plug in. Thanks in Advance. Please  consider it urgent.

    Hi,
    Assign ECC connector to SAP_ECCS_LG group.
    Run the programs GRAC_PFCG_AUTHORIZATION_SYNCand GRAC_REPOSITORY_OBJECT_SYNC) in full synch mode(this might take time so better do this in background). Better do it sequentially.Check the logs of the jobs in SLG1 just to ensure everythings fine.
    Run ARA for a specific user and mention the connector for faster output. Ensure this user has the role with risks.Also as explained earlier check the GUID against user id in table GRACUSERROLE and using GRACROLE you can find out the technical name of the role updated in the table. This should be same as the backend role.
    Then run ARA and while doing so please ensure the selection screen doesnt have any unwanted default inputs. If followed correctly , this should be of help.  I am assuming the role analysis yielded correct risks as configured since this would mean that connector have correct actions and basic config is in place.
    Regards,
    Vivek

  • Changing The Validity Dates In Org Model in CRM- User Level

    Hi
    How can we restrict the Validity Dates in Organisation Structure at User Level.
    I need that the user should be given some specific dates<b> ( Valid till or assigned till )</b> while assigning in the org. And it should be visible always in the Org Model.
    We tried using Delimited Date Function, but the User gets ellapsed if the Validity is expired.With the business point of view, <b>the requirement is that all user should be listed in Org model with respect to any dates.this would mean that if a user is terminated we would want to change the Valid till date in the Org</b>

    Hi Amrita,
    Business partner number and Object ID is automatically determines by system when creating a org unit.
    I dont find any configuration to create org unit with your own BP number and object ID. You have option to make repairs to the existing org unit.
    Please find the below path to repair the org unit
    IMG -> CRM -> Master Data -> Business partner -> Integration Business partner -Org management -> Create Business partner initially
    Select the org unit and execute to get all the org units.
    You can select the org units with errors /warnings and click on start repair to get automatic assignment of BP.
    Hope it helps
    Reward points if it helps
    Regards,
    Madhu

  • Configuring user login on spa504g

    Hello, I am editing spa504 configuration files for adding a user level logins. We want to password protect the user level GUI. However, when doing so, the softkey functions on the phone are locked and require passwords to use. Is there a way to password protect the GUI without changing the softkey functionality?
    There are three command strings for web access:
    <Enable_Web_Admin_Access ua="na">Yes</Enable_Web_Admin_Access>
    <Admin_Passwd ua="na">xxxxx</Admin_Passwd>
    <User_Password ua="rw">yyyyy</User_Password>
    Creating password xxxxx works to protect access for the advanced settings in the GUI.  Creating password yyyyy works to protect access for the basic settings. However, the undesired locking softkey effect takes place. Are there other settings that might help?

    Hi Dan,
    Thanks for your reply. Why isn't this seen as a problem? If the user level GUI isn't password protected, the phones are subject to malicious activity. If administrators add passwords, the level of complexity for users becomes a big negative. The best available option is to disable the GUI altogether, which becomes a big pain for customer support personnel when troubleshooting problems. Does this have visibility with Cisco engineers?

  • Retrieving detailed printer configuration

    Hi, I have installed on my macbook a printer physically connected to a linux machine and shared over samba. I have understood how to enter all the configuration parameters (IP address, user, etc), but I cannot find any way to retrieve this information if I want to change it.
    For example if I enter a wrong IP address and I want later to change it, I found no other way but removing the printer from the list and adding a new one. Any help is appreciated.
    Another question: is there any way to access printer configuration apart from the graphical interface? (for example like in linux where it is always possible to manually edit configuration files)
    Thanks
    Daniele
    Macbook Mac OS X (10.4)
    Macbook   Mac OS X (10.4)  

    You can make IP address changes using the CUPS web
    interface (just like in modern linux):
    http://localhost:631
    (you can probably use the command line lpadmin, too,
    just like in linux, but I don't use that.)
    Very cool information to have. Do you happen to know where I would find the username and password needed in order to configure a printer?
    Thanks,
    Frank

  • Configuring multiple level approval workflows

    Hi,
    1. I would like to know how to configure multiple levels of approval in a workflow.
    For example, when a user self registers himself, the request must be sent to level1 manager and after his approval it must be sent to level2 manager for final approval.
    2. I would like to know the difference between "provisioning" and "provisioned".
    Path : Process definition->task->TasktoObjectStatusMapping
    Thanks in advance

    Hi,
    For question no 1.
    1.You need to create a approval process.
    2.Create a approval task for example "Approve by Manger1". assign this to Manager level 1.If its not static assignment then you need to create task assignment adapter.
    3.Create another approval task for exmaple "Approve by Manger 2" assign this to manager level2.
    4.Have the 2nd task depends one first one so that until one is completed 2nd one will not start.
    For question 2.
    Provisioning status refer to when provisioning process is not complete.
    Provisioned status refer to when provisioning process is complete.
    You can map this status on the completion or rejection of any task.Usually provisioned status is mapped with success of create identity task.
    Let me know if you have any more questions.
    Regards
    Nitesh

Maybe you are looking for

  • Error "can not start the configuration in parallel does not correct"

    Hello everybody, I have Windows 7 SP1, and when I install Business Objects 4.1 Client, it is install correctly but when i execute the program, for example BO Rich Client, an error appear "can not start the configuration in parallel does not correct"

  • What does it take to work with Sun on Java?

    How did they create Java and keep coming out with new versions? Heh, they can't write Java to create it, you know? Or can they? Lets discuss.

  • Webutil - Read Image?

    1.While reading image into image item of my canvas if the image size larger then my image item size i want it to be scroll both horizontally and vertically. Is that possible.? 2.I want to give zoom in/out functionality to that image item. How? 3.Also

  • Adf panel header facets disappear in internet explorer 8, 9

    Hello! I am using JDev&ADF 11.1.2.2 and my application works fine in Firefox 15. However, when opening it in IE 8 or 9, I get a problem with panel header facets. I have some jsff pages containing master-detail relationship with panel headers both in

  • Re-Order Voyager Dimension Member

    I've created reports in Voyager Workspace based on MSAS 2005 cubes. the dimension members are appearing as per the dimension structure in MSAS and I'm unable to re-order the dimension members. Is there a way to re-order the dimension members in Voyag