Is it a foolish question or   a real bug?

i want make the renderd property of input components (such as h:inputText) to be dynamic by binding it with a boolean variable of backingbean ,but i find that all input components can not save the sates when they are not rendered at the first time.
for example
the following is my jsp source code:
<f:view>
<h:form>
<h:SelectBooleanCheckbox id="checkbox1" value="#{myBean.renderedText}" /><br>
<h:commandButton id="button1" value="submit" /><br>
<h:inputText id="input1" value="#{myBean.text}" rendered="#{myBean.renderedText}" /> <br>
<h:commandButton id="button2" value="submitText" action="#{myBean.doSubmitText}"http://forum.java.sun.com/help.jspa?sec=formatting
Formatting tips
rendered="#{myBean.renderedText}" /><br>
</h:form>
<f:view>
the following is myBean source code:
public class MyBean
private boolean renderedText=false;
private String text="input me ";
public String getText()
return this.text;
public void setText(_text)
this.text=_text;
public boolean getRenderedText()
return this.renderedText;
public void setRenderedText(boolean _renderedText)
this.renderedText=_renderedText;
public doSubmitText()
System.out.println(this.renderedText);
when the page was rendered first time ,we can not see the input1 and button2 of course .
then we clicked checkbox1 to make it checked then clicked button1,we can see the input1 and button2 now,
but we modified the data of input1 then clicked button2, the text attribute of myBean was not changed,and
the doSubmitText method was not invoked.

I don't understand your question.
You will have a separate opt file for the packages, not the applets. You can also have the same applet multiple times, but using different instance AID values all in the same opt.

Similar Messages

  • BI 7.0 Question on RDA (Real Time Data Acquisition)

    Those who have all implemented RDA (real Time Data Acquisition) in BI 7.0, could you please tell me if this is limited to only a few of the extractors or available to all the business content extractors. Reason I ask this question is I read that if you have PI_BASIS 2005.1 then RDA is possible, but when I go into ROOSOURCE table in R/3 I do not see the Real time flag checked for any of the transactional Businees content extractors!!
    Also does this mean that we need to set this flag manually and if so is this supported by SAP? please throw in expert your responses...
    Ram

    Dinesh, thank you...after going throught the posts I am still more confsued and not sure if SAP supports any Business content data sources as RDA Capable yet...also if someone has successfully implemented RDA for any of the following applications please do reply back, thank you...
    1. Plant maintenance
    2. GL
    3. EC-PCA
    thank you

  • A few questions from a REAL beginner

    OK, so I am very very very new to HTML, CSS and Dreamweaver and I have a few questions. But before I start let me just state that I have been messing around with HTML, CSS and Dreamweaver for like one week so take it easy if these questions are obvious.
    1. Is there a way to create a type of "sign in" function that is relatively easy? Or do you have to have knowledge of many different scripts and languages to do so?
    2. I would like to have an archive system where if I post an article on my site and then two days later i post another one it saves the first one i posted and can be viewed in some form over time. Is this possible?
    3. If multiple people will be posting on my site is there a way I can have it set up where the articles automatically say "posted by _______" after each person signs in (If #1 is possible of course)
    4. And lastly, this one is similar to #2 but is there a way to make a blog type setup in Dreamweaver? Yes, yes i know there is wordpress and I frequently use wordpress but you can only have on blog page per url and i dont like that. I am trying to be able to write multiple articles in a day and would like for them all to be reached pretty easily.
    Thanks in advance to the brave person who will put up with my childish questions.
    And just so you all know i would like for the person answering these to explain them as if they were talking to a child lol

    Heya,
    First you have to choose a scripting language in order for one to direct you to tutorials on how to use it. I recommend php as it seems to be the most widely used and supported. Then go over the the Application Development forum since that's where most discussions of this nature reside.
    Whatever scripting language you choose you'll have to setup a database first. I recommend MySQL; again as it seems to be the most widely used. Then connect your database to dreamweaver through the Server Behaviors window. After that you can add server behaviors to help in your development. For instance Dreamweaver has server behaviors to create registration, signup, restrict access pages. Then you can have a page that uses a Insert Record, Update Record, Remove Record server behavior to add, edit, or remove blog entries into your database. After that have another page that uses the Recordset server behavior to get a record of the database. You can then display the record on the page by dragging the value of the recordset from the Bindings Window in Dreamweaver. There's also repeat region server behavior to repeat the record to show (all or) a set amount of entries like blog1, blog2, blog 3 etc. There's also a Paging server behavior to automatically create page indexes of blog entries so first 10 on one page with links to page 1, 2, 3, 4 previous, next, first last, etc. to show additional entries on respective pages.
    Your best course of action is to have a definite agenda of development goals. First choose a scripting language, then setup your database. Connect your database to Dreamweaver, then add server behaviors. That's the workflow for dynamic development. After that creating your feature is basically only a matter of what server behaviors to use and what queries to run to your database. If you have any other questions about development it may be best to ask further inquiries in the Application Development forum. If/when you do ask in the forum about stuff like this then mention what scripting language and database model you're using.
    Oh and also if this is your first venture into dynamic development then do yourself a favor first and setup a local testing server on your computer. What kind of computer are you using? Mac/PC and what OS version? There's different ways of setting up a local testing server depending on your computer and OS.
    I am in the Application Development forum a lot so if you have any other questions regarding dynamic application development just hit me up there.
    Hope that helps!

  • Some basic questions: Help defining Real World Classes

    I am trying to write a small applet using proper OO concempts and Java technique and I'm confused on the proper way to do this. I think I know several ways that work and have all the peices I need such as JMail and JDBC drivers, but would appreciate help on understanding how to properly structure my classes and objects.
    The application will simply do the following: I have a database table that receives a new entry when a truck is late for its delivery. When this new record is created, I need to send an email to the driver manager who will then decide (via a jsp page) whether the customer should receive an email about the late delivery. For each truck, there will only be one driver manager and one client to be notified.
    What I'm confused about is what classes and objects to create (and why). My first thought is to create a LateTruck class, a DriverManager class and a Customer class and have the LateTruck class call up the DriverManager to send an email then have the JSP page reinstantiate the LateTruck and instantiate the Customer class to send the email to the client.
    If I do it this way, is there a proper way to send the email? Do I send the email as a method in LateTruck which gets the email address from DriverManager such as
    LateTruck.Order1234.SendEmail(DriverManager.JoeBlow.Email)
    or do I use LateTruck to write the email message which I then pass to DriverManager such as
    DriverManager.JoeBlow.SendEmail(message)
    Should I even break up the applet into three classes and objects? Since each LateTruck only needs one DriverManager and one Client, is the proper way to do this to create only one class called LateTruck which has DriverManager, DriverManagerEmail, ClientName and ClientEmail all as properties of LateTruck?
    Thanks for any help in understanding the basics here.

    Is that the story of Static Write and the Seven Classes and the evil stepmother Wilma Gates who kept asking "Mirror Site, Mirror Site on the web, who's got the buggiest InterDev?

  • One foolish question

    Hi JSF,
    Where could I get the source code of JSF?
    thanks!

    http://www.sun.com/software/communitysource/jsf/download.xml

  • My Foolish Question

    Hi People I am using a cfffunction and returntype is array.
    I am using on my cfm page and try to get the values i am
    getting error:
    <cfinvoke component="showall" method="getDBTableStruct"
    tablename="#url.table#" returnvariable="tableData"/>
    <cfdump var="#tableData#">
    <cfset wibble = getDBTableStruct() />
    <cfoutput>#wibble[ColumnName]#</cfoutput>
    </cfif>
    The web site you are accessing has experienced an unexpected
    error.
    Please contact the website administrator.
    The following information is meant for the website developer
    for debugging purposes.
    Error Occurred While Processing Request
    Variable GETDBTABLESTRUCT is undefined.
    The error occurred in C:\Inetpub\wwwroot\p1\index.cfm: line
    117
    115 : <cfinvoke component="showall"
    method="getDBTableStruct" tablename="#url.table#"
    returnvariable="tableData"/>
    116 : <cfdump var="#tableData#">
    117 : <cfset wibble = getDBTableStruct() />
    118 : <cfoutput>#wibble[ColumnName]#</cfoutput>
    119 : </cfif>
    Ok When I Dump i get The Following:
    array
    1
    struct
    AllowNulls false
    CF_DataType CF_SQL_INTEGER
    ColumnName ban_id
    Increment true
    PrimaryKey true
    Special [empty string]
    2
    struct
    AllowNulls true
    CF_DataType CF_SQL_VARCHAR
    ColumnName ban_title
    Increment false
    PrimaryKey false
    Special [empty string]
    length 255
    3
    struct
    AllowNulls true
    CF_DataType CF_SQL_VARCHAR
    ColumnName ban_img
    Increment false
    PrimaryKey false
    Special [empty string]
    length 255
    4
    struct
    AllowNulls true
    CF_DataType CF_SQL_LONGVARCHAR
    ColumnName ban_link
    Increment false
    PrimaryKey false
    Special [empty string]
    5
    struct
    AllowNulls true
    CF_DataType CF_SQL_INTEGER
    ColumnName ban_hits
    Increment false
    PrimaryKey false
    Special [empty string]
    6
    struct
    AllowNulls true
    CF_DataType CF_SQL_VARCHAR
    ColumnName ban_active
    Increment false
    PrimaryKey false
    Special [empty string]
    length 255

    Ok My CFC is returning this:
    <cffunction name="getDBTableStruct" access="public"
    returntype="array" output="no" hint="I return the structure of the
    given table in the database.">
    <cfargument name="tablename" type="string"
    required="yes">
    <cfscript>
    var qRawFetch = 0;
    var arrStructure = 0;
    var tmpStruct = StructNew();
    var i = 0;
    var PrimaryKeys = 0;
    var TableData = ArrayNew(1);
    </cfscript>
    <cfset qRawFetch = runSQL("SELECT TOP 1 * FROM
    #arguments.tablename#")>
    <cfset arrStructure = getMetaData(qRawFetch)>
    <cfif isArray(arrStructure)>
    <cfloop index="i" from="1" to="#ArrayLen(arrStructure)#"
    step="1">
    <cfset tmpStruct = StructNew()>
    <cfset tmpStruct["ColumnName"] = arrStructure
    .Name>
    <cfset tmpStruct["CF_DataType"] =
    getCFDataType(arrStructure.TypeName)>
    <!--- %% Ugly guess --->
    <cfif arrStructure
    .TypeName eq "COUNTER" OR ( i eq 1 AND arrStructure.TypeName
    eq "INT" AND Right(arrStructure
    .Name,2) eq "ID" )>
    <cfset tmpStruct["PrimaryKey"] = true>
    <cfset tmpStruct["Increment"] = true>
    <cfset tmpStruct["AllowNulls"] = false>
    <cfelse>
    <cfset tmpStruct["PrimaryKey"] = false>
    <cfset tmpStruct["Increment"] = false>
    <cfset tmpStruct["AllowNulls"] = true>
    </cfif>
    <!--- %% Ugly guess --->
    <cfif isStringType(arrStructure.TypeName) AND NOT
    tmpStruct["CF_DataType"] eq "CF_SQL_LONGVARCHAR">
    <cfset tmpStruct["length"] = 255>
    </cfif>
    <cfset tmpStruct["Special"] = "">
    <cfif Len(tmpStruct.CF_DataType)>
    <cfset ArrayAppend(TableData,StructCopy(tmpStruct))>
    </cfif>
    </cfloop>
    <cfelse>
    <cfthrow message="Error Found."
    detail="NoMSAccesSupport">
    </cfif>
    <cfreturn TableData>
    </cffunction>

  • A question for the real masters of Flash...

    Hey everybody,
    I'm working on this portfolio site. The portfolio pages load
    into the main swf when clicked on, all the images and thumbnails
    are loaded from an XML file. You can see the site here...
    www.esmartie.com/bekele_final/
    Click on one of the portfolios (P1, P2, or P3)...
    You'll see the portfolio, everything works great, but my
    client wants on thing to happen which I'm having some trouble
    doing.
    The images in the portfolio all need to continue loading
    before they are actually clicked on, so there isn't such a hard
    wait time inbetween. This way while your checking out one photo,
    the next ones have already started downloading...
    Then, the portfolio needs to be turned into an actually
    slideshow. So once the first image loads, the second starts
    loading, and once the second image has loaded, it automatically
    fades in....thus becominig a slideshow that only plays once the
    next image is ready...
    If anyone can demistify this for me that would be great, my
    reputation is on the line! (looks like I need to do some major
    studying)
    By the way, this is AS2...
    Any help is greatly greatly greatly loyally
    appreciated...

    Quite easy my friend,
    I see your using loadClip features to bring the portfolio
    onto the site...
    So inside the portfolio file, create an empty movieclip on
    the first frame, make this movieclip however many seconds long you
    want it to take until the next image shows up...
    Then, whatever function calls the next image to show up
    (which usually only runs when u click on a thumbnail), call that
    function from the empty movie clip at the end of the clip....
    Im not sure how to check the downloadin first though, just
    make the movieclip long enough to download the stuff first...
    Peace!

  • SQL question that's always bugged  me

    SQL> select * from customer where customer_id = 4;
    no rows selected
    SQL> select max(customer_id) from customer where customer_id = 4;
    MAX(CUSTOMER_ID)
    SQL>
    WHY!!!!!
    This has been driving me nuts, for the past hour or so trying to hunt down a bug in some code, it turned out that due to the max() a function wasn't raising a NO_DATA_FOUND exception and failing elsewhere with an obscure error because of it. after a "select max() into" clause, we have to add an additional check to see if the value it selected into is null or not..... how dumb is that?
    ok, I've calmed down now.

    Michael:
    Both seem quite reasonable to me. Conceptually. ignoring the GROUP BY bit, a COUNT works like:
    DECLARE
       l_cnt NUMBER :=0;
    BEGIN
       FOR r IN (<query>) LOOP
          l_cnt := l_cnt + 1;
       END LOOP;
       RETURN l_cnt;
    END;While a MAX or MIN works like:
    DECLARE
       l_max VARCHAR2(4000) := NULL;
       FOR r IN (<query>) LOOP
          IF r.max_col > l_max THEN
            l_max := r.max_col;
          END IF;
       END LOOP;
       RETURN l_max;
    END;I'm sure that Oracle has more efficient algorithms, but the point is that the aggregate functions iterate over a result set to generate the result The fact that the result set is empty in some cases doesn't really matter.
    Think about what it would mean if some aggregates, like COUNT or SUM, never threw NO_DATA_FOUND, but others like MAX OR MIN did if there were no rows matching the criteria.
    In both of your example cases. grouping does take place:
    SQL> SELECT COUNT(*) FROM employees;
      COUNT(*)
           107
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=1 Card=1)
       1    0   SORT (AGGREGATE)
       2    1     INDEX (FULL SCAN) OF 'EMP_EMAIL_UK' (UNIQUE) (Cost=1 Card=107)It is just that the group is all of the records.
    John
    Message was edited by:
    John Spencer
    Added the grouping comments.

  • Question deploying ejbs, possible bug

    I am deploying my ejbs with an ear file and I specified for only 3 beans to be created
    at start up but I saw it created the Bean more than 3 times when the server is started.
    Is this normal?
    I'm also having problems with the auto redeploy. It never redeploy in the correct
    order forcing me to restart the server. Any help would be greatly appreciated.

    Hi.
    Server version? Are you using the latest service pack?
    Regards,
    Michael
    Kye wrote:
    I am deploying my ejbs with an ear file and I specified for only 3 beans to be created
    at start up but I saw it created the Bean more than 3 times when the server is started.
    Is this normal?
    I'm also having problems with the auto redeploy. It never redeploy in the correct
    order forcing me to restart the server. Any help would be greatly appreciated.--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Question - composition lightbox display bug

    When I add additional triggers to the composition lightbox display the caption boxes on the additional containers disappear. They appear with the original 3 triggers that come with the widget, but they are not present on any other additional triggers. ???

    Hello,
    In the composition Lightbox Display, caption is nothing but a Text Frame. You can go to any previous Target > select the caption text frame > copy it > Paste it in New target.
    Regards
    Vivek

  • Real time scenarios - interview questions

    Hi there,
    Here are some questions which are real time based. If you could answer that will be very helpful.
    1. Archivelog destination gets filling up and it is now 98%. I have more transactions at this time. DB is going to crash or hang in another 2 minutes? what is the step to be followed here?
    2. First day you are taking up archivelog backup? next day morning you find some archivelogs missing? will RMAN show some logs are missing or it will take up backup when you give backup archive log command?
    3.During RMAN backup of database, if your destination drive (mount point) found corrupted, how do you mount the new mount point with the same name as the corrupted mount point in another server , if no catalog database or with catalog db?
    4.While at a peak time, where there is a huge transactions takesplace, you just happended to find PMON died ? will there be transactions happen after PMON's crash or database will go crash after finishing up all the transactions? Will database do instance recovery after bouncing up db after such a scenario?
    5. You are issuing sqlplus username/password@connstring. what is actually happening at the background in db after you give that sqlplus command?
    For this question my answer was oracle is creating a session for that particular user process. is this right?
    6.If a user is telling you that i could not connect to the database? what should be checked here?
    Thanks,
    Balu.

    1. Archivelog destination gets filling up and it is now 98%. I have more transactions at this time. DB is going to crash or hang in another 2 minutes? what is the step to be followed here?You can move old archive to other mount point. (Be careful moving will increase server load). Then take those archive backup and delete.
    2. First day you are taking up archivelog backup? next day morning you find some archivelogs missing? will RMAN show some logs are missing or it will take up backup when you give backup archive log command?I m not sure
    3.During RMAN backup of database, if your destination drive (mount point) found corrupted, how do you mount the new mount point with the same name as the corrupted mount point in another server , if no catalog database or with catalog db?You can ask OS teams to create another mount point in the same server for your backup and reconfigure the rman. You can configure the catalog of database in another server but you cannot configure rman backup destination to another server till 10g ( I dont know about 11g) meance your backup can be configured only to your target db server.
    4.While at a peak time, where there is a huge transactions takesplace, you just happended to find PMON died ? will there be transactions happen after PMON's crash or database will go crash after finishing up all the transactions? Will database do instance recovery after bouncing up db after such a scenario?If your PMON killed your entire process will go die within few sec but if your current online redo is present, oracle will do instance recovery on next startup
    5. You are issuing sqlplus username/password@connstring. what is actually happening at the background in db after you give that sqlplus command?For this question my answer was oracle is creating a session for that particular user process. is this right?
    if you use @connecting string meance with the help of your tnsnames.ora file user process will resolving the service name. Based on the informations , it will go to the server and check the port mentioned, where listner is linstening.. if the listner is running and if he registerd with the same instance which you are requesting for, you will asign with a server process (if it is a dedicated connection) ... afer that listner will go back to listen for another request.. then based on the username and password you provide, server process will allow you to get the informations from the database.
    6.If a user is telling you that i could not connect to the database? what should be checked here?So many things based on the error messege, you can ask to the interveiwer what is the error is he/she getting?
    Regards
    Nishant Santhan

  • Question regarding encryption and decryption

    Hi all,
    I am doing a authentication project. In which I do encryption and decryption (AES 128 bit) in two different methods. At the time of encryption (for eg a text file ), I store the key in dat file (key.dat). And at the time of decryption, I read the key.dat and extract the key and do the decryption. This works fine. No problem with that.
    But the problem is, that the client requires that
    "No encryption keys will be written to the hard drive."
    I have to store the key somewhere to decrypt the encrypted file. Right. Without storing the key, I cannot decrypt.
    The question is (though its a foolish question) with out storing the key, can i encrypt and decrypt (in two different methods) the text file ?
    Thank You.
    Regards,
    Jay

    Hi Grant,
    Thanks for the reply. ( I am the one whom you helped to solve the encryption and decryption problem using AES )
    I will give you an overview of my project. Its an Two Factor Authentication using an USB Flash Drive.
    Admin Side : ( currently developing this part )
    Through an CPP executable file ( writen by John Hyde USB By Example author), I retrive the Manufature ID, Product ID and Serial number of the USB Flash Drive from a text file which is generated when the executable file is executed.
    From my Java application, i retrive the Manufature ID, Product ID and Serial number.The admin (through an dialog box ) enters an usernam and password . All this information ( Manufature ID, Product ID, Serial number , username and password ) using AES 128 bit encryption i write these information to encrypted file in the USB Flash drive along with the the encryption key used at the time of decryption.
    User Side: ( not yet devleoped )
    When the user plugs in the USB Flash drive, an dialog box is shown where the user enters the username and password ( assigned earlier by the admin). This username and password is checked along with the Manufature ID, Product ID and Serial number encrypted earlier and stored in the USB Flash drive. If username password ,Manufature ID, Product ID and Serial number (retrieved again by exectuing the CPP excutable file ) are correct the user is granted access.
    Whats your suggestion reagrading of storing the encryption key? I have to store the key in the USB Flash drive along with the encrypted file. But then wont an intruder (for eg ) if he gets the key and decrypt the file ?
    Client has mentioned to use AES 128 Bit encryption.
    Thank You.
    Regards,
    Jay.

  • How to create real time chart with candle stick for displaying Open, High, Close, Low values from BSE/NSE EOD data

    Please help with sample windows form C#.Net Example

    Hi Goutam,
    Please refer to the following link with examples: http://www.codeproject.com/Questions/234865/create-real-time-chart
    Hope this helps you!
    Regards,
    Mitch!

  • Questions regarding using the .monitor command to retur a animated image and we would like feedback to a designed webpage that is monitoring a 5kW windturbine:)

    I'm embedding a front panel image in an existing HTML dokument. I would like to use the command .monitor in the URL together with the refresh command so the VI automatic will reload every 20 secund. This actual work, but simultaneous I want to have the possibility to refresh manually so I don't have to wait 20 sec before new values is shown in the display. Is this possible to do?
    Another question: Since the real time display updates 1-2 times a secund the command .monitor is used to get a animated picture of the Real Time Display.
    There are several ways to add animation on to web pages. The techniques used h
    ere are the �server push� and �client pull�which makes the browser repeatedly reloads a changing inline image to provide crude animated sequences. This is not the most efficient way as this result�s in an image being re-transmitted for each frame of the animation. The command .monitor with the attribute refresh and lifespan in the URL trigger this �server push� and �client pull� techniques.
    I use this automatic refresh uploading of the display so that it each time shows different values, is this called crude animation?Then I'm wondering what I'm suppose to use the command lifespan to?I can't see the use of it in my display.....?
    link to the webpage so you can have a look at the display:
    http://134.7.139.176/.monitor?Real%20Time%20Performance.vi&refresh=20
    This is a project that I'm working together with another Norwegian friend. WE are very happy for feedback on our web page and displays go to: http://www.ece.curtin.edu.au/~peersena/ if you would like to view itThanks

    Annis,
    One of the other things to keep in mind is that the generation of an image does take some computing power so having the generation and the acquistion on the same machine is not always ideal. If you're using the machine that is publishing the front panel just to collect data it's not so much of an issue.
    If you really want to monitor in "Real-Time" using Remote Panels (requies LabVIEW 6.1) is your best option. This posting has more information on using Remote Panels and links to some live examples:
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=506500000008000000C0660000&UCATEGORY_0=_49_%24_6_&UCATEGORY_S=0&USEARCHCONTEXT_TIER_0=0&USEARCHCONTEXT_TIER_S=0&USEARCHCONTEXT_QUESTION_0=web+control&USEARCHCONTEXT_QUESTION_S=0
    Remote panels makes it possible to control the application remotely as well.
    With .monitor the only way I've been able to manually refresh is to "Shift+Refresh" on the browser.
    Regards,
    Kamran

  • Real Racing 3?

    Hi guys its me again and i was wondering if i should go ahead and update my iPhone because i heard the iPhone 5 is faster than the iPhone 4 and my question was does real racing 3 lag on the iPhone 5 if so how do i stop it?

    What was the exact error message you got?
    If you've been helped click on , if you've been saved buy the app.
    Developer of stokLocker, Sympatico and Super Sentences.

Maybe you are looking for

  • Pls offer me a solution!.3ks

    hi ,experts, now there is a requirement about bill of exchange,about payment,discounting,collection,forfeiting. I find the corresponding tcode in the system:f-36-payment f-33discounting,f-34collection,how to do this in the system,I mean,how to input

  • Macbook won't start past grey screen/apple; won't start OS disc

    I know this issue has probably been talked about a million times, but I still can't seem to find a working answer... and what better to make my first post than this problem? Anyway, I was streaming a movie online on my 13 inch black Macbook (OS: Leop

  • How to import PDF files from email

    When I try to download PDF files from emails the file just disappears. What am I doing wrong?

  • Changed IP, but Forum Mod banned me AGAIN, how?

    I posted here before about changing my IP. Basically, I had a disagreement with a mod on a forum. He banned me because of it. Since I was IP banned, I changed my IP address. (the one people can see). Sure enough, today, I see that I was banned (from

  • List of partitioned cube

    hi all, is there anyway of listing cubes that have been partitioned.. and also is there anyway select all the cubes in rsrv transaction? ex: is there a way to select all the cubes while doin consistency for a time dim on a infocube in RSRV transactio