Help on assignment, don't understand JOptionPane and showInputDialog

Hi, I am currently studying java and have problems doing my assignment. here is the assignment question. What I am looking for is pointers and hints to start on my assignment. I am not looking for the source code, rather the way to actually understand it and start writting my code
I believe this assignment wanted me to create a class Object called Zeller with the methods in it and a ZellerTester to test the Object?
I read up on the JOptionPane and the showInputDialog, but don't really quite understand it.
Do i need a constructor for the Object Zeller?
Does my assignment require me to put the showInputDialog as a method in the Zeller class? Or put it in the ZellerTester?
The isLeapYear is a method in the Object Zeller?
Here is the assignment question
Examine the method
showInputDialog() and study its function. Note the return type of this method.
Write a program on the following requirements:
1. Use the JOptionPane facility to ask the user for three positive integers,
representing the day, month and year of a date.
2. Use the Zeller�s congruence formula to find the day of the week.
3. Should include a method boolean isLeapYear(int year)
that will return true if year is a leap year, and false otherwise.
The method should check for leap years as follow:
return true if the year is divisible by 400.
return true if the year is divisible by 4 but not by 100
return false for the remaining values
Thank you.

I can't seems to return the method back to the main
Not sure where has gone wrong...
here is my code
import javax.swing.*;
public class ZellerTester
    public static void main(String[]args)
    int day  = 28;
    int month = 2;
    int year = 2007;
    int z;
    boolean isLeapYear;
    String[] displayName = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"};
    if(month==1 || month==2) {
        if (isLeapYear = false)
            day = day-1;
          else
            day = day-2;
    if(month<3)
        month = month + 12;
    z = (1 + day + (month * 2) + (3 * (month + 1) / 5) +
         year + year / 4 + year / 400 - year/ 100) % 7;
    System.out.println("The day is " +displayName[z]);
public boolean isLeapYear(int year)
       if (year%400 == 0)
           return true;
       else if((year%4 == 0) && (year%100 != 0))
            return true;
       else
             return false;
}

Similar Messages

  • HELP!! Don't understand why my new phone won't work!!

    HELP!! I just brought my iPhone home and went through the activation process. Everything was fine. Then all of a sudden, where the bars for service are... it says "Searching" and won't stop. I also can't get into anything. I press on the screen... nothing. I reset it twice... nothing. It's still doing it. I don't understand why and I can't speak to anyone in technical support right now. Has this happened to anyone else? I just want to cry because I bought this phone a few hours ago and it already is giving me crap! Someone help me!!!

    it's a new account, but I was sending texts and everything was fine. now all of a sudden it keeps going on and off and won't let me do anything. Just says "searching"
    it's really ticking me off!!! no one said there might be problems while activating it. I didn't pay this much money for a phone I can't even use!

  • Re: This is so basic I'm embarassed to ask. I don't understand Y0 and dY?

    ( sorry if it's posted twice, it didn't seem to get through the first time)
    Hi,
    The problem might be, that the precision of the x-scale is default 1
    (e.g. -0.01 gets 0.0). Put it to 2 (e.g. -0.01 stays -0.01). Then it works
    fine.
    Regards,
    Wiebe.
    >
    > "abarkan" wrote in message
    > news:[email protected]..
    > > After using LabVIEW for 4 years, I'm so embarassed to admit I don't
    > > get Y0 and dY (and X0, dX). Just now, I was trying to make the y-axis
    > > on my chart read from -0.01 to 0.1 in 0.01 steps (so -0.01, 0, 0.01,
    > > 0.02, 0.03, ... 0.1). But I can't!?!? It seems to me that I should
    > > make Y0 = -0.01 and dY = 0.01, b
    ut this doesn't work. I've tried
    > > numerous things, and I've played this game numerous times in the past,
    > > but always I had to give up. How can this trivial task be so elusive?
    > > [email protected]
    >
    >

    Also, your chart should be large enough to print all labels. If you don't have enough space, choose the STYLE with all markers and min/max limits. If you need some other labels (except min/max), use Marker Spacing Arbitrary and a combination of labels+markers will fill the available space.

  • Help! I don't understand the frame mechanics.

    Hi, I've been trying to figure out how frames work in Flash.  I'm new to ActionScript, so I don't know the inner workings of the language.  I tried checking the API but no Frame class is listed.  The closest thing was FrameLabel and that wasn't helpful.  I need to know a few things:
    1) How can I tell what frame I am in?  If there is a class method for this, what is the exact name?
    2) How does a frame advance?  I have some code with no timer, only event listeners/handlers, and I've got a hacked animation working without playing clips on the time line.  The displayed pictures change whenever I press a directional button to move the character.  This is not really what I want to do however, because I'm switching the visibility of many different symbols and updating their position according to the original player symbol.  Very inefficient.  And does that mean that the frame only advances when a button is pressed? Am I even advancing the frame at all?  I don't know any frame advance method.
    3) How do frames work on the time line?  I have all of my symbols on a single frame.  I made their visibility false in my constructor because I don't want some things to show when I first load up the .swf file.  When I created a second frame, everything went crazy and things began to show up.  This suggests that the visibility = false was only done in the first frame?  What caused the frame to change?  I don't really get it.
    Ideally I want to achieve a dynamically modifiable animation because the game actions are not going to be linear.  The player character will be responding to controls (which will change the animation) and the AI will be responding to the player (which will also change the animation).  I don't think I can do this without understanding frames, so please help me.  I'm very confused!  Even pointing me in the right direction as to where I can read about frame details would be cool.  I've tried Adobe tutorials, support, and documentation but it was not sufficient.  Is there any place where there is a very in depth explanation about frames, or would someone be so kind as to tutor me about them?
    Thanks in advance.

    You can find out the current frame by using the currentFrame property. There are a number of ways to change frames, where the most common would be prevFrame(), nextFrame(), play(), gotoAndPlay(), and gotoAndStop().  There are plenty of ways to make use of frames in a Flash file, from having linear animations along the timeline, to have each frame being a distinct zone of operation that contains elements having their own timelines.
    One thing you may need to get a handle on are the different types of frames.  There are plain frames and there are keyframes.  Plain frames genrally involve a continuation of preceding frames, while keyframes mark an area of change.  In your example of things going crazy when you added a second frame, I am guessing you implanted a new keyframe because had you inserted a plain frame the status of your content from frane 1 would not have been impacted.
    I don't know of any resources for you to follow up with for learning more about frames--I came to learn them thru trial and error.  Someone else may come along with some suggestions for reference materials.

  • Don't understand cffunction and cfcomponent

    I am trying to alter Forta's ajax related select tutorial to fit my needs.  I am having trouble understanding the details of this .cfc though.
    <cfcomponent output="false">
        <!--- Get array of media types --->
        <cffunction name="get_states" access="remote" returnType="array">
            <cfset data="">
            <cfset result=ArrayNew(2)>
            <cfset i=0>
            <!--- Get data --->
            <cfquery name="data" datasource="mydsn">
            SELECT id,states
            FROM state
            </cfquery>
            <!--- Convert results to array --->
            <cfloop index="i" from="1" to="#data.RecordCount#">
                <cfset result[i][1]=data.id[i]>
                <cfset result[i][2]=data.state[i]>
            </cfloop>
            <cfreturn result>
        </cffunction>
        <!--- Get art by media type --->
        <cffunction name="get_waters" access="remote" returnType="array">
            <cfargument name="location" type="string" required="true" default="">
            <!--- Define variables --->
            <cfset var data="">
            <cfset var result=ArrayNew(2)>
            <cfset var i=0>
            <!--- Get data --->
            <cfquery name="data" datasource="mydsn">
            SELECT id,name
            FROM waters
            WHERE bow_state = '#arguments.location#'
            </cfquery>
            <!--- Convert results to array --->
            <cfloop index="i" from="1" to="#data.RecordCount#">
                <cfset result[i][1]=data.id[i]>
                <cfset result[i][2]=data.name[i]>
            </cfloop>
            <!--- And return it --->
            <cfreturn result>
        </cffunction>
    </cfcomponent>
    When I put '#arguments.id#' into the second query, I get results.  However, I'd like to query by the name instead, so I am trying location.  I don't fully understand so I am hacking around with this a bit but I'd like to 1 - get results by name instead of id and 2 - understand the arguments variable so I really know what is going on.
    Thanks!

    Sorry, didn't see this before I posted.
    But I think my suggestion was in keeping with the example.  If you need to select on "state", then make the "state" column of your first query to be the first value in the array that you return:
    <!--- Get data --->
    <cfquery name="data" datasource="mydsn">
         SELECT id,states
         FROM state
    </cfquery>
    <!--- Convert results to array --->
    <cfloop index="i" from="1" to="#data.RecordCount#">
         <cfset result[i][1]=data.state[i]>
         <cfset result[i][2]=data.state[i]>
    </cfloop>
    This will make your select look something like this in the rendered HTML:
    <select id="states" name="whatever...">
         <option value="Alabama">Alabama</option>
         <option value="Alaska">Alaska</option>
    </select>
    So then, on your second, dependent select, you'd specify the binding like so (just like you did, really):
    <cfselect name="waters" bind="cfc:_ffc_cfc_select_jump.get_waters({states})" bindonload="false"></cfselect>
    However, now, because the value of the "states" select options are state names, rather than ids, you should now be able to use the argument in your query based on state names:
    <!--- Get art by media type --->
    <cffunction name="get_waters" access="remote" returnType="array">
         <cfargument name="location" type="string" required="true" default="">
         <!--- Define variables --->
         <cfset var data="">
         <cfset var result=ArrayNew(2)>
         <cfset var i=0>
         <!--- Get data --->
         <cfquery name="data" datasource="mydsn">
            SELECT id,name
            FROM waters
            WHERE bow_state = <cfqueryparam value="#arguments.location#" cfsqltype="varchar" /> <!---Be sure to queryparam!!!--->
         </cfquery>
         <!--- Convert results to array --->
         <cfloop index="i" from="1" to="#data.RecordCount#">
              <cfset result[i][1]=data.id[i]>
              <cfset result[i][2]=data.name[i]>
         </cfloop>
         <!--- And return it --->
         <cfreturn result>
    </cffunction>

  • I don't understand ul and li

    Hi, 20 qiestions from me tonight!
    . sorry bout that.
    I'm trying to get to grips with unordered lists. I want to
    make my menu bar a list, so in dreamweaver i higlighted severl ines
    of text and clicked the list button, and sure enough it made a
    list, but i wanted to get ride of the bullets and the margin, so i
    wrapped it all in div: #designmenulist. Then i made the adjustments
    but nothing happened. So i looked at some code i was given earlier
    (from anthor topic i started) and noticed the list div ended in
    "ul". So i retyped in the code view my div to be called:
    #designmenulist ul. and now the changes are applied! i'm not sure i
    understand why this works. And now the code for my div reads:
    <div id="designmenulist">
    <ul>
    <li>Year 1</li>
    <li>Misc projects</li>
    <li>Helicopter</li>
    <li>Year 2</li>
    <li>Airline seat</li>
    <li>Departure lounge</li>
    <li>Entertainment system</li>
    <li>Year 3</li>
    <li>Transport interchange</li>
    <li>Delivery van</li>
    <li>Placement</li>
    <li>Year 4</li>
    <li>Drum kit</li>
    <li>Cockpit </li>
    </ul>
    </div>
    but in my global.css, #designmenulist doesn't exist, only
    #designmenulist ul. but it still works. this puzzles me.
    Also, do i need a #designmenulist li? and what does that do?
    Thanks, Mark

    Consider the tags to be boxes within boxes. ul is "unordered
    list" (as
    opposed to ordered list, which items start with 1. 2. etc.)
    "li" means line
    item and within each unordered list (between the ul and the
    /ul, you could
    have any number of li and /li pairs.
    If the div is designlist then anything you applied to
    #designlist would
    reference the whole div. If you want something (say a margin)
    on the
    unordered list itself (the ul) .. you would apply it to
    #designlist ul which
    means the ul that is contained in div designlist.
    But if you wanted something like padding on each item within
    the unordered
    list .. you would apply it to #designlist ul li .. which
    means the li within
    the ul within designlist and those rules are just for those
    list items
    within that list within that div.
    Make sense?
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "Mark Hazeldine" <[email protected]> wrote
    in message
    news:[email protected]...
    > Hi, 20 qiestions from me tonight!
    . sorry bout that.
    >
    > I'm trying to get to grips with unordered lists. I want
    to make my menu
    > bar a
    > list, so in dreamweaver i higlighted severl ines of text
    and clicked the
    > list
    > button, and sure enough it made a list, but i wanted to
    get ride of the
    > bullets
    > and the margin, so i wrapped it all in div:
    #designmenulist. Then i made
    > the
    > adjustments but nothing happened. So i looked at some
    code i was given
    > earlier
    > (from anthor topic i started) and noticed the list div
    ended in "ul". So i
    > retyped in the code view my div to be called:
    #designmenulist ul. and now
    > the
    > changes are applied! i'm not sure i understand why this
    works. And now the
    > code
    > for my div reads:
    > <div id="designmenulist">
    > <ul>
    > <li>Year 1</li>
    > <li>Misc projects</li>
    > <li>Helicopter</li>
    > <li>Year 2</li>
    > <li>Airline seat</li>
    > <li>Departure lounge</li>
    > <li>Entertainment system</li>
    > <li>Year 3</li>
    > <li>Transport interchange</li>
    > <li>Delivery van</li>
    > <li>Placement</li>
    > <li>Year 4</li>
    > <li>Drum kit</li>
    > <li>Cockpit </li>
    > </ul>
    > </div>
    >
    > but in my global.css, #designmenulist doesn't exist,
    only #designmenulist
    > ul.
    > but it still works. this puzzles me.
    > Also, do i need a #designmenulist li? and what does that
    do?
    >
    > Thanks, Mark
    >

  • Ios 6 orientation doesn't work and boot time increases. How to solve these issues for dummy? I don't understand code and strings suggested by others.

    I just upgraded from ios 5 to ios 6 on my ipad2. Now orientation doesn't work properly. Boot time increase, it takes longer time to boot. Is there any configuration to solve these issues? I can't understand the explanation with code and strings found on google to solve the orientation issue. Any easy configuration for dummy ?

    It supports well for ios 5. I couldn't remember (5.x.x) exactly but I always keeps update for ios5 and the abnormality starts when I upgraded to ios 6.

  • Can anyone help me, i don't understand?

    When i use my iPod after a while it started to make high pitched noises every 30 seconds-ish, and randomly skipped song.
    Then after a while it said restore through itunes but when i connected to PC it gave me the sad icon meaning it's a hardware fault. I then sent it to apple to be repaired but it said there was nothing wrong with my iPod. When i receive my iPod back it is fine, nothing wrong with it. Now after 2 weeks, it is playing up again with the same symptoms, and i have no clue what causing it.
    Can anyone help me?

    If nothing in that thread I linked to helped (and there's a lot of info there), it needs service.
    You can arrange online service here.
    Service request.
    Or if an Apple store is near you, take it there and have them check your iPod.
    You can make an appointment by using this link.
    Genius Bar Appointments.

  • T450s and docking stations : don't understand differences and limitations

    Hi,
    As you may have seen in my previous posts, I leave my previous company and my good old X220. So I am really wondering if I upgrade or not to the new T450s, or if I search for a X220/X230/T420s/T430s refurbished.
    One of my main concern, is the total display size when docked. I used to use quad FHD screens on my old X220, and I was thinking about increasing again the total display size by replacing 2 FHD screen by 1 4K monitor. However, it seems impossible to run 1 4K and 2 FHD simultaneously.
    So my question is, Where can I find the differences and limitations of the docking stations available for the T450s regarding the display size ability ?
    On the product sheet of the docking stations , Lenovo said "* Some of the video ports have exclusive use and are also dependent on the docked ThinkPad configuration".
    Ok, but where can I have this information ?
    Many thanks for your answers,
    Lenovo X220 4287-CTO / Intel Core i7 2640M @ 2.8 / Corsair Vengeance 16 Go@1866 MHz CL10 / Samsung SSD 840 PRO 512 Go / Bios 1.38 / Linux Xubuntu 14.04LTS / eGPU ATI Radeon 5870 Eyefinity 6 / 2x DELL U2142M / 2x DELL U2212HM

    According to https://software.intel.com/en-us/articles/quick-reference-guide-to-intel-processor-graphics,
    For HD5500 on U processor : 
    Independent Digital Displays : Yes (at most, 3 displays may be supported at one time)
    Maximum Display Resolution : U-Processors: 3840 x 2160 @ 60 Hz
    So 4 displays won't be possible on T450s.
    So, I guess, you can run :
    1 4K display @ 60hz 
    OR
    something like 3 FHD/WUXGA displays
    If someone can confirm...
    Lenovo X220 4287-CTO / Intel Core i7 2640M @ 2.8 / Corsair Vengeance 16 Go@1866 MHz CL10 / Samsung SSD 840 PRO 512 Go / Bios 1.38 / Linux Xubuntu 14.04LTS / eGPU ATI Radeon 5870 Eyefinity 6 / 2x DELL U2142M / 2x DELL U2212HM

  • Please Help! I don't understand what's going on.

    I'm almost at the end of my 30 day trial of lightroom. I like the program very much but there's one behavior that has me baffled. Lightroom doesn't always sync folders properly to reflect a RAW file that I've converted to TIFF or jpeg and saved to the same folder that the file originally resided in.
    one example.
    I opened a NEF file that I shot with the Nikkor 10.5mm fisheye lens in Nikon Capture to convert to a convertional (unfisheye) wide angle look. I save the file to the original folder as a 16 bit tiff. When I select the folder in Lightroom that I saved the tiff file to and do synchronize folder, the synchronize folder dialog box states that there are NO photos to add. I check the folder in the finder and the tiff file is there.
    I try the exact procedure again and this time the sync folder dialog box says that is one file to import and the file is properly imported into the Lightroom database and the file shows up in the Lighroom folder.
    Have other people had this experience.?
    Thanks in advance
    John Blake
    Lightroom 1.1 Mac OS 10.4.10 Dual GH G4 with 1.5GB of RAM

    tomrock
    Saving the file and changing the file name did the trick. Lightroom Properly synchronized the folder and the new file is in the database.
    Thank you!
    I guess Lightroom sees two files as being the same file if the only difference is the file's extension. I will have to save the derivative files in a different folder in order to be imported into Lightroom's database.
    I'm going to start a new thread about this
    John

  • JOptionPane and showInputDialog display problem

    Hi,
         I'm writing a graphing application for molecular spectroscopy. I create a JFrame which has a JDesktopPane. A graph is created by adding a JInternalFrame to the JDesktopPane. Each JInternalFrame has a JPanel in it on which the graph is painted. The JInternalFrames have JMenus that allow the user to change graph parameters like the font size and axis spacing. This is implemented by popping up a dialog when an option is selected from the menu. My problem is that the second time an option is selected, the dialog box that pops up is drawn incorrectly. The OK and Cancel buttons, along with the message, don't display. When I mouse over them, the buttons reappear, but not the message. I have tried creating the dialog with the following two lines of code:
    String s = javax.swing.JOptionPane.showInputDialog(this,m,"Y Axis Spacing",javax.swing.JOptionPane.PLAIN_MESSAGE);and
    String s = javax.swing.JOptionPane.showInputDialog(null,m,"Y Axis Spacing",javax.swing.JOptionPane.PLAIN_MESSAGE);     Finally, this may be related to an overall problem with the application. When the application loses focus and is partially hidden, the hidden area is not repainted when the focus is regained.
    Thanks,
    Tom Carroll
    Bryn Mawr College Physics Department
    [email protected]

    I'm not sure to have understood your problem but try appling repaint() and validate method..
    _Fabio                                                                                                                                                                                                       

  • Perform and form params, here's a thing i don't understand

    Hi all experts,
    a simple & dumb doubt I'd like to clarify about parameters in a form, if anybody can help
    Here's the declarative part of my sample code:
    TYPES: BEGIN OF ty_loghier,
                otype TYPE otype,
                objid TYPE hrobjid,
                stext TYPE stext,
               END OF ty_loghier.
        TYPES: tbl_ty_loghier TYPE TABLE OF ty_loghier.
        DATA: loghier TYPE tbl_ty_loghier WITH HEADER LINE.
    The FILTER form that follows should operate on the previously declared internal table, as follows:
    PERFORM filter CHANGING loghier[].
    I declared the form as follows:
    FORM filter CHANGING itab TYPE tbl_ty_loghier.
    but the syntax checker tells me that "TABLE- expected, not tbl_".
    I don't understand why, and also, I'd like to declare the form such that the itab used in the form is meant to be an internal table with header line. Seems quite a simple question but... I'm wasting a lot of time :P

    Hi ,
    Try this code...
    TYPES: BEGIN OF ty_loghier,
                otype TYPE otype,
                objid TYPE hrobjid,
                stext TYPE stext,
               END OF ty_loghier.
    DATA: loghier TYPE STANDARD TABLE OF ty_loghier .
    DATA : wa_loghier TYPE ty_org_data.
    PERFORM filter CHANGING wa_loghier.
    FORM filter CHANGING itab TYPE ty_loghier.
    Regards,
    Sachin M M
    Edited by: Sachin Mathapati on Jun 17, 2009 4:19 PM

  • I'm 51 years old and recently retired. I have a new IPad Air. Which MacBook should I buy to go with it?  I don't understand flash storage.  It feels like I would have a bunch of flash drives to keep up with.  Help an old lady out!!!

    I'm 51 years old and recently retired. I have a new IPad Air. Which MacBook should I buy to go with it?  I don't understand flash storage.  It feels like I would have a bunch of flash drives to keep up with.  Help an old lady out!!!

    Depends on how you want to use it. Flash storage on the newer macbook and macbook air are built in. A macbook air is the most light weight and a very good machine. It will do all you want it to do unless you are running some very intensive programs. If you go to the apple store on line you can compare  the different macbook pro" and macbook Air's.

  • Uloading ebook using iProducer rec'd error: ERROR ITMS-9000: "Unable to parse nav file: toc.ncx" at Book. I don't understand and need help fixing it. Please Help

    Uloading ebook using iProducer rec'd error: ERROR ITMS-9000: "Unable to parse nav file: toc.ncx" at Book. I don't understand and need help fixing it. Please Help if you've the knowledge.
    Many Thanks

    Yep, i just did it again. The entire scroll-bar widget, complete with formatted text, graphics, etc., pasted itself nicely in another book. Two different files, the same widget.
    I use the scroll-bar widgets for most of my texts. (I have audio buttons on the side, and the scripts are within the widget, to the side). My only text is within widgets, and text boxes, naturally. 
    I am following your recommendation: cleaning files, etc. I am remaking the book anew. I need to convince the EPUB bot or whatever that my file looks and works nicely on all my devices. You would expect an error message when previewing the book: 'Hey Amigo, your file is flawed, stop working on it, and get back to the drawing board." Should be able to try again next Monday.

  • TS3276 Hello all, I am getting the following message with some emails I receive:- HTML enabled email client required to read this email. I don't really understand this and don't know what to do to allow me to open the email. Any help? Thanks, Alex

    Hello all, I am getting the following message with some emails I receive:- HTML enabled email client required to read this email. I really don't understand this message, am non techy, would anyone know how I can open and read the email? Thanks very much for any help, Alex

    In Mail I suggest you try 'View->Message->Plain text alternative'.
    Why? In multipart/alternative messages, such as this, the text/plain version should precede the text/html version, but Toyota have swapped them around. By default mail clients display the second version, assuming it to be HTML.
    Very strange.

Maybe you are looking for

  • Transfering Back up from Time Machine to a Windows 7 computer

    I have a 1st Gen MacbookAir, LOVE IT! but the hard drive is failing and computer is on last leg...i do not have the money to replace it with another Mac, or to fix my harddrive, my only option is to purchase a cheaper PC laptop until i can either fix

  • Hiding icons in the Dock and 'Word for Mac'

    Hi, I'm new to macs and I'm struggling a little with some of the simpler tasks! I've put Word for Mac Student Edition on my Macbook but can you tell me how I can delete a word document once I've created it? I can't seem to find 'delete.' Also, can so

  • Zen Firmware Error (1.10.

    After upgrading from .03.04 none of my m4a files are supported. Anyone got a link to the old firmware so I can go back till this issue is fixed?

  • Object ZPAK does not exist in objekt version A for object type Infopackage

    Hi, I've transported Info packages to Quality, but in STMS of Qua I've got warning that Info package doesn't exist in object version A. Also I'm unable to see this info package in RSA1 tcode too. I'm working on BI 7.3 environment. The below error mes

  • PeopleSoft Database Update Statistics

    I am trying to find out what is the best practices for implementing the Update statistics on Psoft Database. Any help or documentation regarding will be a great help I am looking for what is the best practice for update statistics on oracle , Interva