Re-activate option to provide user feedback

I accidently closed the option to send user feedback after new install of Firefox 7.0.1, how do I re-activate this option?

you can send us feedback by here
* http://input.mozilla.com/en-US/feedback

Similar Messages

  • User Feedback/Guestbook

    Hello there,
    Can anyone help me to create just a simple means for the user
    to leave feedback concerning the layout, functionality of the site,
    etc - rather like a guestbook.
    Regards,
    Kristopher (UK).

    Hey, robosteve!
    The RoboHelp Server 7 does indeed provide user feedback
    reports!
    In previous versions of the old RoboEngine (v4) FlashHelp was
    not supported. However, when Adobe took over development, they
    enhanced this feature and it is now provided as "FlashHelp Pro".
    As Rick says, you won't get user feedback by a person's name
    (privacy issues) but you will get a robust set of information from
    users as they access various topics. This can greatly help your
    ability to continuously improve the quality of your help system.
    You can read more specifically about the reports here (though
    it focuses on RH Server 6, the article is valid for RH Server 7 as
    well:
    Adobe
    RoboHelp Server 6 improves the feedback loop
    Thanx,
    John

  • User feedback reports

    I am considering upgrading to RoboHelp Server 7. Does this
    provide user feedback reports when using FlashHelp?
    Steve

    Hey, robosteve!
    The RoboHelp Server 7 does indeed provide user feedback
    reports!
    In previous versions of the old RoboEngine (v4) FlashHelp was
    not supported. However, when Adobe took over development, they
    enhanced this feature and it is now provided as "FlashHelp Pro".
    As Rick says, you won't get user feedback by a person's name
    (privacy issues) but you will get a robust set of information from
    users as they access various topics. This can greatly help your
    ability to continuously improve the quality of your help system.
    You can read more specifically about the reports here (though
    it focuses on RH Server 6, the article is valid for RH Server 7 as
    well:
    Adobe
    RoboHelp Server 6 improves the feedback loop
    Thanx,
    John

  • Feedback options to End users

    Hello,
    I want to provide the feedback options to end user regarding the Portal performance or portal look and feel.
    For this I was guessing to place a Label control,  Input box, submit button etc.,
    wherein user enters his/her comments which inturn clicking on Submit button should send comment to specific email Id.
    I want to know the approach which one would be better - JSPDynpages, webdynpros etc., to implement it.
    Please, appropriate solutions to implements. Any documents/URL links would be highly appreciated.
    Thanks for your time and valuable inputs.
    Best Regards,
    Ravindra

    Hi Ravindra,
    Its Possible to Provide  to provide the feedback options to end user .
    You do it in several Ways:
    >XML Forms
    >Webdynpro Java
    >Webdynpro ABAP
    >BSP Applications
    >J2EE Applns etc.
    I suggest you to go for Webdynpro Java:
       > Which needs Minimal Java code to face your requirment
       > You can store your user data in R/3 By using Adaptive RFC Models
       > Supports number of UI Element Functionalities.
    We can integrate webdynpro applications into portal by using SAP webdynpro iView
    Just have a Look at this,
    http://help.sap.com/saphelp_nw04/helpdata/en/5c/1b76bc3da0504e8b535cf3e154eaa7/content.htm
    Please go through these,
    https://www.sdn.sap.com/irj/sdn/webdynpro?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d
    Regards,
    <b>Ramganesan K</b>

  • Task Scheduler Security Option - Run if user is logged in or not

    using Windows Server 208 R2 Terminal Server - Running .NET 4.0 programs
    We are running .NET 4.0 Windows Forms programs using Task Scheduler with the Security Option - Run whether user is logged in or not.
    When the Task Scheduler starts these jobs they either not not run or they fail.
    Questions:
    1. What shell is used by Task Scheduler with the setting "run whether user is logged in or not" ?
    2. Is there some way to detect this shell or environment in a .NET program?
    I am trying to determine if I can modify the .NET programs so they will run in this shell with no errors.
    Thank you
    MisterT99

    Hi Mister,
    In addition, Since you need to launch a GUI application through Task Scheduler, so this task also need to run interactively.
    However, if the item "Run whether user is logged on or not" is selected, tasks will not run interactively, so we need to select the "Run only when user is logged".
    I recommend you can change the item "Change user or group" in security option and add a group, which will make sure your application will run interactively for all users in the group when the users logon.
    If there is anything else regarding this issue, please feel free to post back.
    If you have any feedback on our support, please click here.
    Best Regards,
    Anna Wang
    TechNet Community 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 Support, contact [email protected]

  • Sflock: simple X screen locker with basic user feedback

    There are several applications out there that lock the X display. On the one side of the spectrum you have xscreensaver and xlockmore which provide screensavers and on the other side you have slock which provides nothing. sflock is an application that is built as an extension to slock, which provides very basic user feedback.
    The need for me arrived because I wanted a screen locker that was trustworthy and that looks ok. Because I have no interest in screensavers and the xscreensaver unlock screen is one of the most ugly things I have ever seen, I turned to slock. This works fine, but there is no real way to tell that the screen is locked.  You just type a password on a black screen and if it's correct, the screen gets unlocked. fslock (at least the first version) shows a line on the screen and displays asterisks for every character entered.
    The goal of the application is to be simple and small, but still look good. You can install sflock from the AUR under the name sflock-git or download it directly from github. Suggestions are of course welcome.

    I've been trying to get this to use Xft for rendering the fonts, but this is essentially my first time doing anything in C. Sflock builds properly but segfaults when I try to run it.
    diff --git a/config.mk b/config.mk
    index 3a42077..b6a72ed 100644
    --- a/config.mk
    +++ b/config.mk
    @@ -12,8 +12,8 @@ X11INC = /usr/X11R6/include
    X11LIB = /usr/X11R6/lib
    # includes and libs
    -INCS = -I. -I/usr/include -I${X11INC}
    -LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext
    +INCS = -I. -I/usr/include -I${X11INC} -I/usr/include/freetype2
    +LIBS = -L/usr/lib -lc -lcrypt -L${X11LIB} -lX11 -lXext -lXft
    # flags
    CPPFLAGS = -DVERSION=\"${VERSION}\" -DHAVE_SHADOW_H
    diff --git a/sflock.c b/sflock.c
    index 72b076b..3c51823 100644
    --- a/sflock.c
    +++ b/sflock.c
    @@ -12,10 +12,12 @@
    #include <string.h>
    #include <unistd.h>
    #include <sys/types.h>
    +#include <fontconfig/fontconfig.h>
    #include <X11/keysym.h>
    #include <X11/Xlib.h>
    #include <X11/Xutil.h>
    #include <X11/extensions/dpms.h>
    +#include <X11/Xft/Xft.h>
    #if HAVE_BSD_AUTH
    #include <login_cap.h>
    @@ -79,7 +81,10 @@ main(int argc, char **argv) {
    XColor black, red, dummy;
    XEvent ev;
    XSetWindowAttributes wa;
    - XFontStruct* font;
    + XftFont *font;
    + XftColor *xftcolor;
    + XftDraw *xftdraw;
    + XGlyphInfo *extents;
    GC gc;
    XGCValues values;
    @@ -145,14 +150,14 @@ main(int argc, char **argv) {
    XDefineCursor(dpy, w, invisible);
    XMapRaised(dpy, w);
    - font = XLoadQueryFont(dpy, fontname);
    + font = XftFontOpenXlfd(dpy, screen, fontname);
    + XftColorAllocName(dpy, DefaultVisual(dpy, screen), DefaultColormap(dpy, screen), "white", xftcolor);
    if (font == 0) {
    die("error: could not find font. Try using a full description.\n");
    gc = XCreateGC(dpy, w, (unsigned long)0, &values);
    - XSetFont(dpy, gc, font->fid);
    XSetForeground(dpy, gc, XWhitePixel(dpy, screen));
    for(len = 1000; len; len--) {
    @@ -187,7 +192,8 @@ main(int argc, char **argv) {
    if (update) {
    XClearWindow(dpy, w);
    XDrawLine(dpy, w, gc, width * 3 / 8 , (height + baroffset) / 2, width * 5 / 8, (height + baroffset) / 2);
    - XDrawString(dpy,w,gc, (width - XTextWidth(font, passdisp, len)) / 2, (height+42) / 2, passdisp, len);
    + XftTextExtentsUtf8(dpy, font, (XftChar8 *)passdisp, len, extents);
    + XftDrawStringUtf8(xftdraw, xftcolor, font, (width - extents->width) / 2, (height+42) / 2, (XftChar8 *)passdisp, len);
    update = False;
    @@ -251,7 +257,9 @@ main(int argc, char **argv) {
    XUngrabPointer(dpy, CurrentTime);
    XFreePixmap(dpy, pmap);
    - XFreeFont(dpy, font);
    + XftFontClose(dpy, font);
    + XftColorFree(dpy, DefaultVisual(dpy, screen), DefaultColormap(dpy, screen), xftcolor);
    + XftDrawDestroy(xftdraw);
    XFreeGC(dpy, gc);
    XDestroyWindow(dpy, w);
    XCloseDisplay(dpy);

  • HT5595 Iphone 4 / "Reduce Motion" Option not provided

    Iphone 4 / Reduce Motion option not provided.  Please provide IOS update so that Iphone 4 users can reduce motion.

    That's because the 4 doesn't support the motion effects that option reduces to begin with. There is nothing to reduce.

  • No  Activate option

    Hi
            In my system XI.30 installed(not by me).  . i did SLD configuratation. After then I imported SWCV , next  i proceeded as usual but, after saving   i am going to activate, but i am unable to found activate option. also i tried with  ctrl+f3 . that is also doesn't work. could you please tell me how to activate them. is this installation problem? or I need to add any options?

    Reddy,
    Go to change list and verify whether the user name. Make sure that you are looking into the correct user's change list. Open the SWCV in change list and right click on the Standard Change list and then you have to see the activate button.
    Also I assume that you have created some objects and trying to activate them. If you have not created any objects you cannot see in the change list.
    Regards,
    ---Satish

  • User feedback on project

    I want to insert a link in my email that a user can click to
    open an email to send me questions, suggestions. Has anyone done
    this? I do not have RoboHelp Server 6, which offers reports in some
    form about users. I simply would like to have the users be able to
    contact me directly so that I can be more proactive and responsive
    to their concerns and issues.

    Peter, I went to your Website and reviewed snippets. I found
    only one topic that might be close to my question - "Mail This
    Topic". I reviewed the information, but it is not quite what I
    need. What I want is to put a link in one or more of my topics -
    such as the overview I do for each section, that says something
    like, "Send your comments or suggestions to Kitty Martin." This is
    for internal help files and thus the link would be to my email
    address within my company. When the user clicks on the link in that
    topic, the Help system displays/opens an email message. The To:
    contains my email address and user can write message about the
    topic.
    I read about this last fall in a STC Intercom July/August
    2006 article "Obtaining User Feedback:" Author is Jeremy Webb and
    it was about sending an email message using JavaScript. I followed
    his instructions, but ultimately the link would not work. I
    corresponded with him, showed him exactly what I had done, and he
    verified everything was okay. But still didn't work. When I
    previewed my topic I kept getting RH HTML messages about the
    reference to the feedback.js file contains illegal characters and
    will not be shown in Project Manager.
    The basic steps for his process involved creating the message
    in Notepad, saving as "feedback.js", copying that Notepad file and
    pasting it into the project top folder. Then you add the
    Feedback.js file to the RH Baggage file, add links in topics to the
    Feedback function. Then you also have to add some text to the
    TrueCode in the topics.
    Since his process has not worked for me, I a searching for
    another way. I have been requested to include this feedback option
    in my new project. Last fall I was using RH5 for projects, so I
    thought perhaps it would be different now that I have RH6. Still
    doesn't work.

  • Using Qualtrics Interceptor for End-User Feedback

    Hi,
    I've been managing my company's online help system for a few years now (currently using RoboHelp 9 WebHelp) and I've been getting some questions about deploying more user feedback options. One tool that we've been using on some of our marketing sites is Qualtrics Interceptor.
    I was wondering if anyone has used this or whether it can work in the RoboHelp environment? The javascript code is placed in the header of the landing page, and would create a pop-up with a link to Qualtrics site when the user closes the Help system. I'm pretty sure that this won't work, but I can't test it on our staging server at this time.
    Thanks

    Why not try faking it out with a test project published to a local fake web server? Peter Grainge talks about a company that offers a free one in his discussion about the Chrome browser security issue (grainge.org)

  • My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    Hmmmm... would appear that you need to be actually logged in to enable the additional menu features.
    Have you tried deletting the plists for MAS?
    This page might help you out...
    http://www.macobserver.com/tmo/answers/how_to_identify_and_fix_problems_with_the _mac_app_store
    Failing that, I will have to throw this back to the forum to see if anyone else can advise further.
    Let me know how you get on?
    Thanks.

  • How to remove save, cancel option when end user runs the workbook in Portal

    Hi,
    how to remove save, cancel option when end user runs the workbook and make some small changes like using page items or increasing rows and columns
    I already made 2 changes
    1) I removed the option in Oracle Enterprise Manager under discoverer viewer of saving
    2) I also removed the option of Allow saving changes made in Viewer when adding workbook to portal
    But still the end user gets options of saving when made small changes to workbook like increasing rows and columns
    Is their any place, I need to make changes?
    Thanks in Advance
    Rowdheer

    Don't use JSP to serve a binary file. It almost implies the use of awful scriptlets and the invocation of both the response writer and the response outputstream which would only lead to IllegalStateException headaches in the server logs.
    Use a Servlet instead. Specify the file name as request parameter and let the servlet read the file and write it to the outputstream of the response.

  • [Forum FAQ] Group Policy Preferences Scheduled Tasks Item not working when the option Run whether user is logged on or not is selected

    Scenario:
    We use one of the following Group Policy Preferences Scheduled Tasks item to deploy a task to clients:
    Computer Configuration -> Control Panel Settings -> Scheduled Tasks -> New -> Scheduled Task (At least Windows 7)
    Computer Configuration -> Control Panel Settings -> Scheduled Tasks -> New -> Immediate Task (At least Windows 7)
    User Configuration -> Control Panel Settings -> Scheduled Tasks -> New -> Scheduled Task (At least Windows 7)
    User Configuration -> Control Panel Settings -> Scheduled Tasks -> New -> Immediate Task (At least Windows 7)
    (Note that on some platforms, "At least Windows 7" is replaced with "Windows Vista and later.")
    After designating a user account to run the task, we select “Run whether user is logged on or not” option, and “The Do not store password…”
    check box is automatically grayed out (See Figure 1).
    Figure 1
    After finishing configuring the task item, on a client, we run command
    gpupdate/force to forcefully update group policy. However, on the client, when we check if the task is listed in Task Scheduler snap-in, the task is not displayed, and when we run
    gpresult/h report.html to collect group policy result for troubleshooting, we see an error as similar as shown in the following figure (Figure 2).
    Figure 2
    Cause:
    To make the scheduled task run whether the user is logged on or not, we need to store the password of the designated user account. However, for the content of the scheduled
    task item is stored in Sysvol where it’s not safe to store passwords, this function has been deprecated.
    Workaround:
    We can run the task with system account
    NT Authority\System, or we can use specific user accounts to run the task when the given user is logged on. (See Figure 3)
    Figure 3
    Reference:
    MS14-025: Vulnerability in Group Policy Preferences could allow elevation of privilege: May 13, 2014
    http://support.microsoft.com/kb/2962486
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Hello Everyone,
    Succeeded !!!!!!!
    Even i was struggling with this same Problem to execute a batch via Window scheduler and set the setting to "Run whether the user is logged in or not".
    I tried many time but the batch runs with " Run
    whether user is logged on" and not with "Run
    whether user is logged on or not".
    what i discovered is that there was one mapped drive
    path in my batch file which was not the complete path like y:/AR.qvw actually what i did i changed that map path to the complete path like \\servnamename\d$\AR.qvw and the batch executed successfully with the setting "Run
    whether user is logged on or not"
    The
    conclusion is that check the dependency of the script on external resources because when you check this option "Run
    whether user is logged on or not" It actually conflicts. This my discovery.
    If
    you have any question write me on [email protected]
    Thanks
    & Regards,
    Arun

  • TIPS(16) : PROVIDING USERS WITH SESSION INFORMATION

    제품 : SQL*PLUS
    작성날짜 : 1996-11-12
    TIPS(16) : Providing Users with Session Information
    ===================================================
    rem
    rem orasessn.sql
    rem
    rem
    rem This script is used to provide users with information regarding their
    rem oracle sessions.
    rem The USER_SESSION view provides information related only to the
    rem current session for a user; while the ALL_SESSIONS relates to all
    rem sessions within the database for a user.
    rem The DBA_SESSION can only be viewed by the
    rem Oracle sys id (and anyone granted select on this view).
    rem The DBA_SESSION lists all oracle sessions excluding the Oracle
    rem generic processes (dbwr, pmon, smon, etc.).
    rem The SID and SERIAL# can be used with killing sessions.
    This script must be run from the Oracle sys id.
    rem --------------------------------------------------------------------------
    rem
    set echo on;
    spool orasessn;
    rem
    drop public synonym ALL_SESSIONS;
    create or replace view ALL_SESSIONS
    (USERNAME, OS_USER, SID, SERIAL#, STATUS, SERVICE, DATABASE,
    CURSORS, MACHINE, TERMINAL, PROGRAM)
    as
    select substr(v1.username,1,20), substr(v1.osuser,1,12),
    to_char(v1.sid,'999'), to_char(v1.serial#,'999999'),
    v1.status, v1.server, substr(v3.value,1,10), v2.value,
    substr(v1.machine,1,15), v1.terminal, v1.program
    from v$session v1, v$sesstat v2, v$parameter v3
    where v1.username = user
    and v2.sid = v1.sid
    and v2.statistic# = 3
    and v3.name = 'db_name' ;
    grant select on ALL_SESSIONS to PUBLIC;
    create public synonym ALL_SESSIONS for ALL_SESSIONS;
    rem
    drop public synonym USER_SESSIONS;
    create or replace view USER_SESSIONS
    (USERNAME, OS_USER, SID, SERIAL#, STATUS, SERVICE, DATABASE,
    CURSORS, MACHINE, TERMINAL, PROGRAM)
    as
    select substr(v1.username,1,20), substr(v1.osuser,1,12),
    to_char(v1.sid,'999'), to_char(v1.serial#,'999999'),
    v1.status, v1.server, substr(v3.value,1,10), v2.value,
    substr(v1.machine,1,15), v1.terminal, v1.program
    from v$session v1, v$sesstat v2, v$parameter v3
    where v1.audsid = userenv('SESSIONID')
    and v2.sid = v1.sid
    and v2.statistic# = 3
    and v3.name = 'db_name' ;
    grant select on USER_SESSIONS to PUBLIC;
    create public synonym USER_SESSIONS for USER_SESSIONS;
    rem
    create or replace view DBA_SESSIONS
    (USERNAME, OS_USER, SID, SERIAL#, STATUS, SERVICE, DATABASE,
    CURSORS, MACHINE, TERMINAL, PROGRAM)
    as
    select substr(v1.username,1,20), substr(v1.osuser,1,12),
    to_char(v1.sid,'999'), to_char(v1.serial#,'999999'),
    v1.status, v1.server, substr(v3.value,1,10), v2.value,
    substr(v1.machine,1,15), v1.terminal, v1.program
    from v$session v1, v$sesstat v2, v$parameter v3
    where v1.username is not null
    and v2.sid = v1.sid
    and v2.statistic# = 3
    and v3.name = 'db_name' ;
    rem -------------------------------------------------------------------
    spool off;

    제품 : SQL*PLUS
    작성날짜 : 1996-11-12
    TIPS(16) : Providing Users with Session Information
    ===================================================
    rem
    rem orasessn.sql
    rem
    rem
    rem This script is used to provide users with information regarding their
    rem oracle sessions.
    rem The USER_SESSION view provides information related only to the
    rem current session for a user; while the ALL_SESSIONS relates to all
    rem sessions within the database for a user.
    rem The DBA_SESSION can only be viewed by the
    rem Oracle sys id (and anyone granted select on this view).
    rem The DBA_SESSION lists all oracle sessions excluding the Oracle
    rem generic processes (dbwr, pmon, smon, etc.).
    rem The SID and SERIAL# can be used with killing sessions.
    This script must be run from the Oracle sys id.
    rem --------------------------------------------------------------------------
    rem
    set echo on;
    spool orasessn;
    rem
    drop public synonym ALL_SESSIONS;
    create or replace view ALL_SESSIONS
    (USERNAME, OS_USER, SID, SERIAL#, STATUS, SERVICE, DATABASE,
    CURSORS, MACHINE, TERMINAL, PROGRAM)
    as
    select substr(v1.username,1,20), substr(v1.osuser,1,12),
    to_char(v1.sid,'999'), to_char(v1.serial#,'999999'),
    v1.status, v1.server, substr(v3.value,1,10), v2.value,
    substr(v1.machine,1,15), v1.terminal, v1.program
    from v$session v1, v$sesstat v2, v$parameter v3
    where v1.username = user
    and v2.sid = v1.sid
    and v2.statistic# = 3
    and v3.name = 'db_name' ;
    grant select on ALL_SESSIONS to PUBLIC;
    create public synonym ALL_SESSIONS for ALL_SESSIONS;
    rem
    drop public synonym USER_SESSIONS;
    create or replace view USER_SESSIONS
    (USERNAME, OS_USER, SID, SERIAL#, STATUS, SERVICE, DATABASE,
    CURSORS, MACHINE, TERMINAL, PROGRAM)
    as
    select substr(v1.username,1,20), substr(v1.osuser,1,12),
    to_char(v1.sid,'999'), to_char(v1.serial#,'999999'),
    v1.status, v1.server, substr(v3.value,1,10), v2.value,
    substr(v1.machine,1,15), v1.terminal, v1.program
    from v$session v1, v$sesstat v2, v$parameter v3
    where v1.audsid = userenv('SESSIONID')
    and v2.sid = v1.sid
    and v2.statistic# = 3
    and v3.name = 'db_name' ;
    grant select on USER_SESSIONS to PUBLIC;
    create public synonym USER_SESSIONS for USER_SESSIONS;
    rem
    create or replace view DBA_SESSIONS
    (USERNAME, OS_USER, SID, SERIAL#, STATUS, SERVICE, DATABASE,
    CURSORS, MACHINE, TERMINAL, PROGRAM)
    as
    select substr(v1.username,1,20), substr(v1.osuser,1,12),
    to_char(v1.sid,'999'), to_char(v1.serial#,'999999'),
    v1.status, v1.server, substr(v3.value,1,10), v2.value,
    substr(v1.machine,1,15), v1.terminal, v1.program
    from v$session v1, v$sesstat v2, v$parameter v3
    where v1.username is not null
    and v2.sid = v1.sid
    and v2.statistic# = 3
    and v3.name = 'db_name' ;
    rem -------------------------------------------------------------------
    spool off;

  • Failed to activate authorization check for user SAPSYS

    Hi Experts
    I am trying to run the sdcc, it was throwing time_out error. i have increased the work process runtime. now
    i am getting a error Failed to activate authorization check for user SAPSYS.
    Please help me to solve this issue.
    Regards
    Venkat

    Hi, Mr. Joe Bo.
    Thanx for your reply. We are using ECC6 (HP Unix with Oracle)
    Basis Patch - 15, Kernel 159
    I have seen the the note but it's showing ccms method defination settings, but for my case we are yet to go live we have not made any settings from sap they are planning to run a session for the go live. When i am running sdcc i am getting a error in the system log "Failed to activate authorization check for user SAPSYS"
    Thanks & Regards
    Venkatesan J

Maybe you are looking for

  • Sharing Downloaded Files between 2 accounts on the same system

    My wife and I each have separate accounts set up on our iMAC G5. We both have .MAC accounts, but only use one account to download songs into iTunes. In an earlier version of iTunes, I set up both accounts to point to the same iTunes library file, whi

  • A problem with jFileChooser

    I'm creating a GUI application in NetBeans, where I'm using jFileChooser object to select a file when a user clicks a button, the filechooser dialog appears and doesn't respond to the user's action but after closing the file chooser using the close b

  • Document flow

    Dear All, Can anyone suggest how, based on a list of sales orders i will be able to query to see the corresponding delivery numbers and invoice numbers? Is there some way predefined in SAP? i just want to plug in the order numbers and geta  report sh

  • Reg: Printer Drivers Installations please Help me Urgent

    Dear All, I need to know how to install printer plugin in Moutain lion version   The thing which i have moutain lion OSX in my iMac i have a printer its offical. But i cant able to give a print in iMac osx then i have asked to my supported printer pe

  • Oracle 8i EE Solaris 7 install problem

    Install 8i(8.1.7) with minimal(or typical) option. Everything went fine until it stalled at step "initializing database" during creating a startup db, with error message "ORA-03114, not connected to Oracle". I ignored it, and then it comes with anoth