Variable acting differently in differnt reports

Hi All,
i Have a problem with a Variable.
i have used a standard variable for Fiscal year (Manual Entry/ Default).
i have used the same variable in 2 reports, in Free Chanracteristics and restricted with variable in Default values of Quer Designer.
Report 1
Am Executing a report, in the selection prameter Screen i select 2008 for Fiscal year.
After executing, the report displays the data, now if i change the fiscal year value in filter to 2009 the report does not shown any data, at the same time if i use 2 filter values say 2007 & 2008 it shows data only for the year selected in the prameter screen before executing.
Report 2
If i execute this report with 2008 as fiscal year and change the fiscal year value in the filter pane to 2009 i can see the report for 2009 and when i select 2 years 2008,2007/2009 the report displays aggregated data for 2 years.
i have used same variable for both the reports but the reports are behaving completely different.
Can anyone suggest me what might be the problem
Regards
Jasmine

Hi Tobias,
Report 1 is restricted with fiscal year variable, due to which the values were not aggregating for different years. so once the restriction for the key figures is removed will the report be behaving as report 2?
will this change cause any problems in the  report execution. report is already being used by users, in case i change the query and if it does'nt work that would be leading to more problems.
Do you have any idea about the effects,
I've assigned points for your helpful answer.
Thank you,
jasmine

Similar Messages

  • How to set different default interactive reports for different user groups?

    I'm probably overlooking an obvious solution, but how do I set different default interactive report for different user groups?
    For the same interactive report, I want one set of users to see a default where the default filter is based on column X. However, another group of users doesn't have authorization to see that column so I need to set the default filter to something else for them.
    Thanks

    You can set a filter on a report in a URL - would that help? I think with apex 4.x you can also link to a saved default report or alternative report...

  • WHAT ARE SUBEVENTS OF DIFFERENT EVENTS IN REPORTS ?

    WHAT ARE SUBEVENTS OF DIFFERENT EVENTS IN REPORTS ?
    BEST REGARDS,
    RYAN

    hi,
    output events are.........
    <b>start-of-selection.</b>
    using this event we can genarate basic list.
    <b>end-of-selection.</b>
    we can use this event also for genarating basic list
    <b>top-of-page</b>.
    this event is related to list, we can use this event to providing list header.
    <b>end-of-page.</b>
    this event is related to list, we can use this event to providing list footer.
    if our program reading data from logical database, in that case GET and
    GET LATE events triggered to  genarate report.
    <u><b>interactive repotrs.</b></u>
    we use <b>AT LINE -SELECTION</b> and <b>AT USER-COMMAND</b> events to genarate secondary events based on user actions.
    <b>TOP-OF-PAGE DURING LINE-SELECTION</b> EVENT, provides page heading to all secondary lists.
    PBO and PAI   events also used to genarating list.
    regards,
    AshokReddy.

  • Removed variable still shows up in the variable screen of a Web report

    Hello,
    I am using a variable screen in a web report. I changed the variable on 0CALMONTH, but I still can see the old one. Two variables now show up. In Bex, only the new one can be seen.
    Does anyone knows the reason for that? I'm using BW 7.0 with the 3.5 reporting functionalities.
    Thanks in advance, Nathalie

    Nathalie,
      i'm sorry, it's not datasource... it's dataprovider
        delete the dataprovider from the the HTML Code...you could see the DataProvider in <Object>... </Object>
    suppose let us assume that you have DataProvider and DataProvider. you are not using DataProvider3, delete from the HTML code.
    delete this block from HTML.
    <object>
             <param name="OWNER" value="SAP_BW"/>
             <param name="CMD" value="SET_DATA_PROVIDER"/>
             <param name="NAME" value="DATAPROVIDER_3"/>
             <param name="QUERY" value="NEWQUERY123"/>
             <param name="INFOCUBE" value="ZSD_OPST3"/>
             DATA_PROVIDER:             DATAPROVIDER_3
    </object>
    Create a new Web application that will give you correct result.
    Can you please update the thread.
    all the best.
    Regards,
    Nagesh Ganisetti.

  • Is the 'C' language acting differently for all the SDK(VisualStudio,xCode...)?

    Hi guys~!
    I've been in a dazed since i started writing this piece of code as an example since i'm still learning 'C' programming in the Poly's. Is the 'C' language acting differently while is on another platform?
    When i wrote this using VS, it works, but when it comes to Xcode, it's not going to provide me the right output.
    #include <stdio.h>
    #include <ctype.h>
    int main(int argc, const char * argv[])
        int x, num = 0;
        char choice;
        printf("Number\n");
        for (choice = 'Y'; choice == 'Y'; num++)
            for (x = 1; x <= 4; num++)
                printf("%6d\n", x);
                x++;
            } // end for
            printf("\nWould you like to continue the loop? Y/N?: ");    < - - It ignored the user key and skipped out of the loop, and proceed with the final output.
            fflush(stdin);
            scanf("%c", &choice);
            choice = toupper(choice);
        } // end for
        printf("Thank you for your participation~! Have a nice day & See you!");
    } // end main

    Code the scanf like this:
    scanf(" %c", &choice);
    Note the leading white space.
    c
    Matches a sequence of width count characters (default 1); the next pointer must
    be a pointer to char, and there must be enough room for all the characters (no
    terminating NUL is added).  The usual skip of leading white space is sup-
    pressed.  To skip white space first, use an explicit space in the format.

  • Help with menus and variables in different classes.

    1) how do I change variables in different classes? My situation..
    I have a few tabbed panels/planes, that ask for different user inputs. I want the last tabbed panel/plane to have the inputs on 1 plane. Is that confusing?
    Code:
            JTabbedPane tp = new JTabbedPane();
            tp.addTab ("Kitchen", new KitchenPanel());
            tp.addTab ("Living Room", new LivingRoomPanel());
            tp.addTab ("Master Bedroom", new MasterBedPanel());
            tp.addTab ("Bedroom 1", new Bedroom1Panel());
            tp.addTab ("Bedroom 2", new Bedroom2Panel());
            tp.addTab ("Misc Use", new MiscPanel());
            tp.addTab ("Totals", new TotalsPanel());not the full thing obviously, but just so u see what im working with.
    2) How do popup menus work? I have a menu (File -> About | File -> How to Contact)
    I want The File->About menu item, to prompt a dialog
    The File -> How to to prompt a dialog
    Contact Menu(Not Item) to load a webpage
    thanks again for the help, and i hope its not to confusing
    Edited by: 2point2ek on May 25, 2009 9:51 PM

    It's better to think in terms of transferring data between object, rather than between classes.
    What you need is for the tab pane objects to have a reference to some common object to which the data is to be sent. This common object might be the total pane. It's generally better design to keep the data in separate objects from the presentation (in this case the totals pane), but at this stage that's probably just going to confuse you.
    The simplest way to get this reference in is to the pane objects is as a constructor argument, which the constructor of your pane objects saves in a field. As you create each pane you pass it a reference and it stores that reference for when it needs to save data.
    Then, when you click detect the action by which the user tells the program to store the data he's entered the pane class should call a method on the central data object, passing all the data from that pane. If there's a lot of it, wrap it up in an object (typically called a "data transfer object").
    The central data object would be responsible for dealing with this data, amending totals etc.. It might delegate responsibility for updating the display to a separate total pane object.

  • Order of workbook variables is different to order in query

    Hi Friends,
    I have a curious situation. When I open one of my workbooks then I see the order of my variables is different o the order of these variables in the underlying query.
    Does or did anyone have the same issue seen so far ?.
    To be honest, it worked before I made the following change in my query:
    - First I had my fiscal year variable in the global filter but the variable was at first position in the query and it was also in the workbook.
    - Then I removed the variable from global filter and added it back into characteristics. I moved it into first position of the variable order again.
    However, since then my workbook shows this variable at the end of list !!!!
    I already rremoved and moved the query back into the worbook but no positive change so far.
    Any ideas would be much appreciated.
    Thanks

    Hi,
    We also faced the same kind of issue some time back in our project and we simply recreated the workbook and it got resolved.
    I think some time workbook doesn't acquire query changes automatically, you can regenerate the workbook and check.
    Regards,
    Durgesh.

  • Pls Help! Drag and Drop problem, identical symbols acting differently - same code! WHY?

    In the attached file, I have a series of symbols that have a drag and drop command to change colour at different sections of a bullseye, and that are also text editable (html).
    However, some of the symbols get stuck and will not be moved after moving once or at all, and some get stuck once their text has been edited.
    I have poured over the code and it appears to be the same for each symbol - can anyone explain as to why this is happening?
    I also cannot now edit the text properly on the ipad (it is really fiddly to change between different symbols to edit their text -- is there maybe a better way to do this? A button to change between symbols to then edit their text, can you help with this too?)
    THANK YOU SO MUCH!!!
    File here:
    https://www.dropbox.com/s/g71gnfichjgyehn/NEW%20RISK%20RADAR.zip

    Hi, I think I undertsand what you mean now, so the code is as below, btu I am not sure what a handler is? but some of my risks still get stuck once the text has been changed on them:
    // Use for loop for attr
    // deleted  yepnope since you load with scropt loading
    // added pos for each symbol so we can replace them there.
    document.ontouchmove = function(e) {
            e.preventDefault();
    var risk = ;
    var Pos = [
    {'x':-9,'y':806},
    {'x':27,'y':854},
    {'x':72,'y':894},
    {'x':71,'y':934},
    {'x':231,'y':811},
    {'x':231,'y':853},
    {'x':231,'y':894},
    {'x':231,'y':934},
    {'x':388,'y':811},
    {'x':388,'y':852},
    {'x':388,'y':893},
    {'x':388,'y':934},
    {'x':543,'y':811},
    {'x':543,'y':853},
    {'x':543,'y':893},
    {'x':543,'y':934}
    var myText = ; 
    for (i=0;i<risk.length;i++){
    sym.getSymbol(risk[i]).$(risk[i]).attr("contenteditable",true);
    sym.$('Quadrant_text').attr("contenteditable",true);
    sym.$('Quadrant1_text').attr("contenteditable",true);
    sym.$('Quadrant2_text').attr("contenteditable",true);
    sym.$('Quadrant3_text').attr("contenteditable",true);
    // apply the draggable JQuery UI plugin to the MyDraggableSymbol symbol on your stage
    sym.$('Risk1').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk1").stop("Initial");
      sym.setVariable("symName","Risk1");
    //adding for risk3_orange similarly add for other symbols
    sym.$('Risk1').draggable();
    sym.getSymbol('Risk1').$("Risk1").bind('click tap',function(ev) {
         sym.$('Risk1').draggable('disable');
    }).unbind('dblclick tap',function(ev) {
         sym.$('Risk1').draggable('enable');
    sym.$('Risk2').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk2").stop("Initial");
      sym.setVariable("symName","Risk2");
    //adding for Risk2 similarly add for other symbols
    sym.$('Risk2').draggable();
    sym.getSymbol('Risk2').$("Risk2").bind('click tap',function(ev) {
         sym.$('Risk2').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk2').draggable('enable');
    sym.$('Risk3').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk3").stop("Initial");
      sym.setVariable("symName","Risk3");
    //adding for Risk3 similarly add for other symbols
    sym.$('Risk3').draggable();
    sym.getSymbol('Risk3').$("Risk3").bind('click tap',function(ev) {
         sym.$('Risk3').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk3').draggable('enable');
    sym.$('Risk4').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk4").stop("Initial");
      sym.setVariable("symName","Risk4");
    //adding for Risk4 similarly add for other symbols
    sym.$('Risk4').draggable();
    sym.getSymbol('Risk4').$("Risk4").bind('click tap',function(ev) {
         sym.$('Risk4').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk4').draggable('enable');
    sym.$('Risk5').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk5").stop("Initial");
      sym.setVariable("symName","Risk5");
    //adding for Risk5 similarly add for other symbols
    sym.$('Risk5').draggable();
    sym.getSymbol('Risk5').$("Risk5").bind('click tap',function(ev) {
         sym.$('Risk5').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk5').draggable('enable');
    sym.$('Risk6').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk6").stop("Initial");
      sym.setVariable("symName","Risk6");
    //adding for Risk6 similarly add for other symbols
    sym.$('Risk6').draggable();
    sym.getSymbol('Risk6').$("Risk6").bind('click tap',function(ev) {
         sym.$('Risk6').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk6').draggable('enable');
    sym.$('Risk7').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk7").stop("Initial");
      sym.setVariable("symName","Risk7");
    //adding for Risk7 similarly add for other symbols
    sym.$('Risk7').draggable();
    sym.getSymbol('Risk7').$("Risk7").bind('click tap',function(ev) {
         sym.$('Risk7').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk7').draggable('enable');
    sym.$('Risk8').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk8").stop("Initial");
      sym.setVariable("symName","Risk8");
    //adding for Risk8 similarly add for other symbols
    sym.$('Risk8').draggable();
    sym.getSymbol('Risk8').$("Risk8").bind('click tap',function(ev) {
         sym.$('Risk8').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk8').draggable('enable');
    sym.$('Risk9').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk9").stop("Initial");
      sym.setVariable("symName","Risk9");
    //adding for Risk9 similarly add for other symbols
    sym.$('Risk9').draggable();
    sym.getSymbol('Risk9').$("Risk9").bind('click tap',function(ev) {
         sym.$('Risk9').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk9').draggable('enable');
    sym.$('Risk10').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk10").stop("Initial");
      sym.setVariable("symName","Risk10");
    //adding for Risk10 similarly add for other symbols
    sym.$('Risk10').draggable();
    sym.getSymbol('Risk10').$("Risk10").bind('click tap',function(ev) {
         sym.$('Risk10').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk10').draggable('enable');
    sym.$('Risk11').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk11").stop("Initial");
      sym.setVariable("symName","Risk11");
    //adding for Risk11 similarly add for other symbols
    sym.$('Risk11').draggable();
    sym.getSymbol('Risk11').$("Risk11").bind('click tap',function(ev) {
         sym.$('Risk11').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk11').draggable('enable');
    sym.$('Risk12').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk12").stop("Initial");
      sym.setVariable("symName","Risk12");
    //adding for Risk12 similarly add for other symbols
    sym.$('Risk12').draggable();
    sym.getSymbol('Risk12').$("Risk12").bind('click tap',function(ev) {
         sym.$('Risk12').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk12').draggable('enable');
    sym.$('Risk13').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk13").stop("Initial");
      sym.setVariable("symName","Risk13");
    //adding for Risk13 similarly add for other symbols
    sym.$('Risk13').draggable();
    sym.getSymbol('Risk13').$("Risk13").bind('click tap',function(ev) {
         sym.$('Risk13').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk13').draggable('enable');
    sym.$('Risk14').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk14").stop("Initial");
      sym.setVariable("symName","Risk14");
    //adding for Risk14 similarly add for other symbols
    sym.$('Risk14').draggable();
    sym.getSymbol('Risk14').$("Risk14").bind('click tap',function(ev) {
         sym.$('Risk14').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk14').draggable('enable');
    sym.$('Risk15').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk15").stop("Initial");
      sym.setVariable("symName","Risk15");
    //adding for Risk15 similarly add for other symbols
    sym.$('Risk15').draggable();
    sym.getSymbol('Risk15').$("Risk15").bind('click tap',function(ev) {
         sym.$('Risk15').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk15').draggable('enable');
    sym.$('Risk16').draggable(,
    drag: function(e,ui)
      sym.getSymbol("Risk16").stop("Initial");
      sym.setVariable("symName","Risk16");
    //adding for Risk16 similarly add for other symbols
    sym.$('Risk16').draggable();
    sym.getSymbol('Risk16').$("Risk16").bind('click tap',function(ev) {
         sym.$('Risk16').draggable('disable');
    }).bind('dblclick tap',function(ev) {
         sym.$('Risk16').draggable('enable');
    sym.getSymbol("Drop").$('Outer').droppable(
    sym.getSymbol("Drop").$('Middle').droppable(
    sym.getSymbol("Drop").$('Target').droppable(
    sym.$('resetBtn').click(function(){
      sym.$('Quadrant_text').html('Quadrant');
      sym.$('Quadrant1_text').html('Quadrant');
      sym.$('Quadrant2_text').html('Quadrant');
      sym.$('Quadrant3_text').html('Quadrant');
    for (i=0;i<risk.length;i++){
      sym.$(risk[i]).css({"left":Pos[i].x,"top":Pos[i].y,"position":"absolute"})
      sym.getSymbol(risk[i]).stop(0);
      sym.getSymbol(risk[i]).$(risk[i]).html("Challenge");
    But is still doesn't work,
    Subject: Re:  Pls Help! Drag and Drop problem, identical symbols acting differently - same code! WHY?

  • Initializing more than one variable of different types in for-loop

    I know it is possible to initialize two variables of the same type in a for-loop like this:
    for(int i=0, j=0;i<=word.length/2;i++){}
    However, I'm trying to initialize two variables of different type in the initialization of for-loop. And the IDE won't let me do it..
    for(int i=0, double j=0;i<=word.length/2;i++){}
    Is it even possible to do initialize two variables of different type?

    Well, just for fun, you can write very generalized for loop. you can do it in a complicated way though.
    But, for god sake, why would you do that?
                 boolean someboolean = true;
              for(Object i=new Integer(0),j=new Double(1);someboolean;i=(Integer)i+1){
                   j =(Double)j + 1;
                   if((Double)j>3)
                        someboolean = false;
                   System.out.println("i: "+i+" j: "+j+" someboolean:"+someboolean);
              }

  • ODI Execute Button Acting Different than Right-Click - Execute in Diagram

    We have noticed that clicking the 'Green Arrow' Execute button in ODI to begin the Execution using First Step with only one Procedure is acting differently than simply right-clicking and selecting 'Execute' within the Diagram tab. We have noticed this issue with only a SQL Procedure.
    In other words, when clicking the 'Green Arrow', ODI compiles the package together before executing which seems to make the procedure execute differently than right-clicking and executing the procedure individually.
    Has anyone else noticed this issue?

    Executing with Green arrow means the entire package would be compiled and executed. In such case if you have any special configuration for that step then that would be effective and thus might show different behavior.
    Running a particular step by right clicking on it would be equivalent to running the procedure or interface directly.
    Do you see difference in behavior if you run the procedure directly v/s running it within package too?

  • How to access _global variables in different domain

    hi
    i am loading a swf in local and this has to be communicate the swf which was in the server(different domain). using the system.security.allowdomail i can access the variables, but i can't able to access _global variable.
    Pls tell how to access _global variable in different domain
    Thanks in advance
    @flash

    Ganesh,
    It should work the way you mentioned it. I don't see why it
    didn't unless there is a spelling mistake or something. If there
    is you should have a got an error message. :-)
    I actually don't recommend using globals at all, I would rather
    use a PL\SQL Package Specification to define Global Variable.
    These variables are valid for the duration of the Session and
    they are restricted to Char(255) limit. It reduces the number of
    mistakes when converting dates and Such. It also forces the
    developers to place all the globals in one place instead of
    multiple places. Read Feurstein's book on PL\SQL Programming for
    more details.
    Sunil
    MS Ganesh (guest) wrote:
    : Hi Steve,
    : I know how to assign values to global variables.
    : I did the following
    : Form Name : FIRST_FORM
    : :global.group_id := 'SUPERVISOR'
    : call_form('SECOND_FORM');
    : In Second Form
    : When New Form Instance
    : Message(:global.group_id);
    : No message is displayed.
    : Please explain to me the steps in detail.
    : Thanks in advance.
    : Bye
    : MS GANESH
    : Steve (guest) wrote:
    : : Just assign value to global variable i.e.
    : : :global.foo := 'anything'; or
    : : COPY('anything', 'global.foo');
    : : to remove global variable
    : : ERASE('global.foo');
    : : Note: global variables are always VARCHAR2(255);
    : : MS Ganesh (guest) wrote:
    : : : Dear OTN Members,
    : : : I would like to pass values between forms,
    : : : I know it is possible to do it by using Parameters.
    : : : But I would like to know how to use global variables to
    : : : accomplish the same task.
    : : : Thanks in Advance.
    : : : Bye
    : : : MS Ganesh
    null

  • Sharing variable among different file

    How to set value to a variable from different file.I can not use interface because interface make everything as final.Is there any other way to set number of variables from more than one file?

    I guess you want to declare the variable in one class and change the value of the variable in another class. If I am correct, try the following
    public class First {
            public int a = 10;
    //TODO
    public class Second {
         private First firstObject = null;
         public void changeValue() {
               if(firstObject == null) {
                   firstObject = new First();
                   firstObject.a = 30;
    }

  • Select-option of a  variable is acting wierd in web report

    Hi,
    I am getting the following error in web report when I click a select option button of variable. Has any of you come across this situation ?
    Error:  <b>"System error in program CL_RSR_WWW_RENDERER and form GET_VARDEF_FOR_F4:03 (see long text)"</b>
    We are on BI 7.0.
    The ABAP code in the above mentioned Class & method are in sync with a relevant OSS note 671405.
    This is kind of wierd to me as it doesn't give any error when I run the same report in our QA Portal, It is happening only in our BW Production system.
    Any help is appreciated. Thanks.
    MG

    The OSS note you specified is for 3.x and you mentioned you are on nw2004s.
    Whats the Support pack you on currently.
    I saw couple oss for SP-8 and 9 for the error you mentioned howver ,I presume you should be minimum on SP-10 ,so those may not help.
    You may wish to take a look at OSS below-
    Note 1018019 - Hierarchy node selection without hierarchy in web F4(7.X)
    PS- As a part of sanity check if your QA and PROD are on same support pack.
    Hope it Helps
    Chetan
    @CP..

  • Adding messages to the Variable entry screen in web report

    I need to add a message or note to the variable selection screen on a web report. I need this message or note to be displayed somewhere on the same screen with the variable list. I found something similar in BW Expert regarding pop-up messages, but this does not work with web templates. Does anyone know of a way to add a static (or dynamic) message to this initial screen of a web report?

    In my clients place, they are ready to do the SAP Mod based on "CL_RSR_WWW_VARIABLE_SCREEN" to have a Alert Message which sort of based on different idea.
    Does anyboay have an idea on where to make the change?
    Thanx
    Arun

  • Sending different files or reports to each contact with EMOD

    Hi,
    I want to use EMOD to send information to my customers, is there some way i can define to send a different file in the email to each contact with EMOD? Or is there some way to send the result of a report to a contact?
    thanks

    You could possibly create a variable link (1-5 Possibilities) in the email but if this was different for every contact then this would be a bit to hard for EMOD.
    You could re-import the result back into OD and then use this field within you email as the result.

Maybe you are looking for

  • Unable to print any PDF file on my laptop computer.

    I get a response on my screen that says 1 - the document could not be printed and 2 - there were no pages selected to print.  Of course I made sure to try all types of page print selections to no avail.  What is funny, though, I can print any other t

  • Need help installing Adobe XI Pro

    I've downloaded the file and run the installation which says it's complete.  When I try to open the application, it tells me there is not enough stoarge to complete the command and the installation is not complete.  I'm running Windows 7 and should h

  • JQuery Cycle Plugin possible with sliced image site from Photoshop? CS5

    Hi all, I'm in a real pickle here. I'm an architecture & interior design graduate. I know not a lot about web design. I have managed to design my website, slice it in Photoshop and link it in Dreamweaver. I am trying to use JQuery Cycle for my slides

  • Probe fail on Standby ACE in One-armed mode

    Hi there I'm Kilsoo. I made One-armed mode using ACE. Real servers are in away Vlan from ACE. So, I configured the PBR with ACE alias ip address for the next-hop on the real server's gateway interface. And, the probe from active ACE works well. But,

  • How to avaoid the respawn

    Hi All, I have started my processes through SMF functionality. It gets started successfully. But when I kill my processes, it¡¦s getting restarted. But in Solaris 9 and below if I kill it will not get restarted. In Solaris 10 it should not get restar