Aging Buckets (More than 7)

I am going to create a custom report for Aging in Oracle Receivables. I need a report with more than 7 buckets.
Has anyone implemented this feature? Any tips on how to proceed?
Thanks in advance

All I had to do is
<ol>
<li>Alter Queries in Data Model by adding an extra field for every bucket. i.e.
<br><br>select ....
<br>, 0 bo
<br>, 0 b1
<br>, ...0 b6
<br>, <b>0 b7
, 0 b8</b>
from ...</li>
<br>
<li>Alter user variables(used in Data Model Queries as substitution strings in select statements) by adding an extra field for every bucket.</li>
<br>
<li>Add formulas, placeholders, summary items for each new bucket in every group that had formulas, placeholdes, summary items for the existing buckets.</li>
<br>
<li>Search all code and add logic for every new bucket identical to the code for the others buckets. i.e.
<br><br>if b0 = .. then ..
<br>end if;
<br>if b1 = .. then ..
<br>end if;
<br>...
<br><b>if b7 = .. then ..
<br>end if;
<br>if b7 = .. then ..
<br>end if;
</b>
</li>

Similar Messages

  • Stock more than 48 month

    Dear Master
    Anybody can help me how to get the report for all stock having ageing stock more than 48 month?
    What is the T Code I can use?
    Thank you
    paritz, the newbie in SAP

    Dear All
    When I run MB5m, it does not show anything, please let me know which scope of list I must select in order to get the more than 48 months stock.
    MB5B can give me the information of posting date, however I can't understand, which qty I can assume it is the stock.
    paritz, the newbie in SAP

  • HT204053 for some reason i have more than one apple id, not sure how, must have set one up ages ago and forgot about it. can i delete one, or merge them? how do i know im not going to lose info if i delete one account?

    for some reason i have more than one apple id, not sure how, must have set one up ages ago and forgot about it. can i delete one, or merge them? how do i know im not going to lose info if i delete one account?

    You can neither merge or delete them. Pick one and stop using the other. If they both have purchases associated with them you will have to keep using both.

  • How do I "Select pixels" on more than one layer, then "Paint bucket" ?

    Hi
    Using Photoshop CS4.
    I have a document with several layers.
    If I right click a layer in the "Layers UI" and then click "Select pixels" then the pixels in that layer is selected.
    Then I can use the "Paint bucket" to e.g. set another color for the selected pixels.
    Is it possible to "Select pixels" from more than one layer, and then use "Paint bucket" once to change color for all the selected pixels in one go?

    You wont be able to FILL more than one layer at a time.
    But loading seections can be done by holding control SHIFT and clicking on the layer thumnail in the layers panel. Each click will load more area depending on which layers you load

  • Can I have a photo in more than one event?

    I understand that it is normally not possible to have one photo in more than one event at a time.
    I am quite careful about arranging my photos into events logically, but find in my library tere are several events called [Date] Photo Stream, which I've not delivberately created. It appears that in many cases the photos these Photo stream events contain are also in other events.
    Can anyone tell me what is going on here? Can I safely delete the Photostream events and their contents?

    To have a photo in more than one Event it must be duplicated and the duplicate added to the other Event.  A photo can be in multiple albums, books, slideshows without having to duplicate the photo as those use pointers to the original photo.
    At the beginning of each month new photos in the Shoto Stream are imported into an Event with the month and year as the Event name.  All photos taken that month are added to that Event.  That's because the iPhoto/Photo Stream preferences are set to auto import photos taken by your mobile devices:
    Events are basically buckets of photos based on the date taken and how you've setup iPhoto's preferences for importing photos:
    Merging Events can change the location in the resulting event among the other events due to the variety of dates of the photos.
    OT

  • Crashed 160GB Classic Will No Longer Hold More than 32GB of Data

    So, a few months ago, my 160GB iPod Classic (which is 3 years old last Christmas), crashed on me. I was in the process of uploading some songs to it when it froze; I attempted to eject it, got no response and simply unplugged it. Upon plugging the iPod back in, I was informed that it was corrupted and had to be restored, which I did. Now I find that the iPod simply won't hold hold more than approximately 30-32GB of media before a similar process occurs: the iPod freezes during syncing and then becomes corrupted upon ejection, wherein I restore the iPod and repeat. My initial thought is that a significant portion of the hard drive has crashed and will no longer hold data, but I figured it's probably worth asking whether there's anything I can do to fix this. My AppleCare has expired, and I'm wondering if there's any way around buying an entirely new iPod to remedy the issue. Any help would be appreciated.

    Hi d.a,
    I work for Dr Pod, an iPod repair company.
    It sounds like your hard drive is dying. This is common for an iPod of this age. First of all, I'd try restoring and see if this makes any changes. You can do this by plugging the iPod into iTunes and then clicking 'Restore'.
    If this does not work, then it sounds like your iPod has a hardware fault. As your iPod is 3 years old, it is out of warranty, and Apple would charge you for any repairs. A new hard drive for this iPod usually costs around £100.
    If you feel that this price is too high, then you could look to buy a new iPod from Apple. They will take your old iPod and give you a 10% discount of the cost of your iPod.
    I hope that I have helped. Please get back to me if you need any more assistance,
    Mark Sweeney
    Dr Pod Founder

  • Create aging bucket in BEx - based on  date variable

    Hi everyone,
    I have a report for which we need to create account receivable aging bucket to classify arrears (1>29 / 30>59 / etcu2026).
    Our solution overall architecture is the following :
    Source System (SAP) >  BW back end...Multiprovider > Super BEx Query > Universe > Webi Report
    BW 7.0
    BO XI 3.2 SP3.0
    In this report, each bucket is defined by the difference between:
    -     the Net Due Date (which is the due date of payment of the invoice)
    -     and the Current Date (date for which the report is run u2013 can be the date of the day or a date in the past)
    We can develop this either in BEx or in Webi, but to avoid potential performance issues in Webi, we take the try to develop this in BEx.
    As you can easily imagine, this BEx query will be used for many reportsu2026so not only for this specific report.
    What weu2019ve done so far:
    1-     We created a variable to prompt the user with the date he wants to run the report for
               - ZTEST is an optional variable, single value, User input, based on characteristic 0CALDAY
    2-     We developed RKF in BEx
    -     Key Figure restricted by Amount
    -     Net Due Date restricted by the variable ZTEST using the between function and an offset (to determine the range)
    => When we save the query we are getting a warning message saying u201CVariable ZTEST for characteristic Net Due Date has been converted to a required entryu201D
    Why? (you probably knowu2026) Because my RKF is using a variable with an offsetu2026which automatically turn on my variable as mandatory and no more as optional.
    Consequences:
    -     In BEx: My variable, which is required to be optional (because we donu2019t have to have this field as mandatory for each and every report running on top of this query) is now mandatory.
    -     In Webi: If I use the variable (funnel in webi), my report is working fineu2026but if I donu2019t use it in the webi report, I get an error message saying u201Cvalue required for ZTESTu201D
    o     Funnel is configured as optional in the universe designer (so the issue is not coming from here)
    => 2 consequencesu2026same issue
    Question: What can we do to keep our bucket logic running in BEx and avoid this variable to become mandatory?
    Solutions (potential)
    -     Create a custom exit routine to work around this issue u2013 how?
    -     Create CKF/Custom exit to create our bucket (using ZTEST as an entry value to determine the range) and then use the created range in our RKF to restrict the amount u2013 how? Not so easyu2026
    -     Build the logic in Webi
    -     Any other suggestions?
    Here we are, any advice would be really appreciated
    Thank you guys
    Regards
    Henri

    Hi peeps,
    We finally find a solution for this problem! So I can share it with you.
    The overall solution is pretty easy to understand.
    1st step is to prompt with the user with a 0DATE variable. The date selected becomes a date input for the next step.
    The variables is defined as a range [01/01/1900;variable_value)...in order to retrieve the right data set.
    2nd step is to use this date to create our aging bucket, dates range.
    To do so, we created 4 user exit variables (for each aging bucket).
    3rd step is to use these ranges in RKF.
    This way you get aging bucket dynamically defined by the user input pretty cool!
    Regards
    H

  • Unable to insert more than 9 rows at a time

    Hi there,
    I have to insert more than 5000 rows in my table at a time,but i am not able to insert more than 10 ROWS AT ATIME.
    Do we need to do some that at the data base level for this to happen??????
    Thanks in Advance.

    Rather than give us unhelpful comments like "still its not taking", why don't you show us exactly what you're doing? We can't help you if you don't give us enough information.
    I've tried it and it works fine:
    SQL> create table customer (dealership_id number,
      2  region varchar2(100),
      3  customer_no number,
      4  firstname varchar2(100),
      5  lastname varchar2(100),
      6  address varchar2(100),
      7  city varchar2(100),
      8  state varchar2(100),
      9  zip varchar2(100),
    10  country varchar2(100),
    11  phone_number varchar2(100),
    12  email varchar2(100),
    13  gender varchar2(1),
    14  age number,
    15  transaction_date date);
    Table created.
    SQL> ed
    Wrote file afiedt.buf
      1  begin
      2  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
      3  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
      4  TRANSACTION_DATE ) VALUES (
      5  1, 'West', 546, 'Maria L', 'Umali', '515 W 59th St', 'San Francisco', 'California'
      6  , 10019, 'United Sta', '2122478223', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
      7  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
      8  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
      9  TRANSACTION_DATE ) VALUES (
    10  24, 'East', 547, 'Justa', 'Viafara', '66 Avenue C', 'Charleston', 'West Virginia'
    11  , 10009, 'United Sta', '2126736156', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    12  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    13  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    14  TRANSACTION_DATE ) VALUES (
    15  22, 'East', 548, 'C', 'Vignola', '41 Carmine St', 'Miami', 'Florida', 10014, 'United Sta'
    16  , '2122436687', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    17  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    18  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    19  TRANSACTION_DATE ) VALUES (
    20  2, 'West', 549, 'Catherine', 'Vignola', '16 Barrow St', 'San Diego', 'California'
    21  , 10014, 'United Sta', '2129297697', '[email protected]', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    22  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    23  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    24  TRANSACTION_DATE ) VALUES (
    25  10, 'West', 550, 'Ashley', 'Weare', '275 W 96th St', 'Oakland', 'California', 10025
    26  , 'United Sta', '2128652935', '[email protected]', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    27  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    28  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    29  TRANSACTION_DATE ) VALUES (
    30  9, 'West', 551, 'Shamire A', 'Zobadi', '446 W 46th St', 'San Jose', 'California', 10036
    31  , 'United Sta', '2129740994', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    32  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    33  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    34  TRANSACTION_DATE ) VALUES (
    35  20, 'East', 552, 'Iride', 'Ciaccio', '130 Wisner Ave', 'Baltimore', 'Maryland', 12550
    36  , 'United Sta', '9145612058', '[email protected]', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    37  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    38  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    39  TRANSACTION_DATE ) VALUES (
    40  17, 'Central', 553, 'Cecil', 'Jackson', '30 Lake Dr', 'Houston', 'Texas', 12550, 'United Sta'
    41  , '9145617354', '[email protected]', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    42  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    43  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    44  TRANSACTION_DATE ) VALUES (
    45  4, 'West', 554, 'M P', 'Prabhu', '590 River Rd', 'Scottsdale', 'Arizona', 12550, 'United Sta'
    46  , '9145656155', 'null', 'F', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    47  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    48  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    49  TRANSACTION_DATE ) VALUES (
    50  16, 'Central', 555, 'Jacob', 'Agam', '221 E 61st St', 'Ann Arbour', 'Michigan', 10021
    51  , 'United Sta', '2127524408', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    52  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    53  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    54  TRANSACTION_DATE ) VALUES (
    55  23, 'East', 556, 'Alkis', 'Agaphogleous', '208 W 15th St', 'Fairfax', 'Virginia', 10011
    56  , 'United Sta', '2126478725', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    57  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    58  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    59  TRANSACTION_DATE ) VALUES (
    60  19, 'East', 557, 'Ponti C', 'Cia', '251 Central Park W', 'New York', 'New York', 10024
    61  , 'United Sta', '2128777400', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    62  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    63  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    64  TRANSACTION_DATE ) VALUES (
    65  27, 'West', 558, 'Steve', 'Ciabbatoni', '71 Broadway', 'Phoenix', 'Arizona', 10006
    66  , 'United Sta', '2128639140', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    67  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    68  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    69  TRANSACTION_DATE ) VALUES (
    70  13, 'Central', 559, 'Pascale', 'Coadou', '307 E 89th St', 'Austin', 'Texas', 10028
    71  , 'United Sta', '2128769343', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    72  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    73  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    74  TRANSACTION_DATE ) VALUES (
    75  21, 'East', 560, 'Arthur G', 'Coake', '95 W 95th St', 'Boston', 'Massachusetts', 10025
    76  , 'United Sta', '2122221851', '[email protected]', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    77  INSERT INTO CUSTOMER ( DEALERSHIP_ID, REGION, CUSTOMER_NO, FIRSTNAME, LASTNAME, ADDRESS, CITY,
    78  STATE, ZIP, COUNTRY, PHONE_NUMBER, EMAIL, GENDER, AGE,
    79  TRANSACTION_DATE ) VALUES (
    80  15, 'Central', 561, 'B P', 'Coakley', '139 W 35th St', 'Minneapolis', 'Minnesota'
    81  , 10001, 'United Sta', '2126863187', 'null', 'M', 39, TO_Date( '01/10/2005 12:00:00 AM', 'MM/DD/YYYY HH:MI:SS AM'));
    82* end;
    SQL> /
    PL/SQL procedure successfully completed.
    SQL> select count(*) from customer;
      COUNT(*)
            16

  • RFC to XI File -  can NEVER EVER  get more than one record in Output file.

    Hi guys
    This might be related to my other post on  File conversion but whatever I do I just can't seem to get more than one record in the output file
    the payload from R3==> XI seems fine
    for example
    <?xml version="1.0" encoding="UTF-8" ?>
    - <rfc:Z_XI_005_RFC xmlns:rfc="urn:sap-com:document:sap:rfc:functions">
    - <IP_CUSTOMER_HEADER>
    - <item>
      <CUSTOMERID>1000001</CUSTOMERID>
      <COMPANY>One-time ship-to</COMPANY>
      <SHORT_NAME>ONE-TIME</SHORT_NAME>
      <STREET />
      <STREET2 />
      <STREET3 />
      <STREET4 />
    ...... more data
    </item>
    then next customer  master data and so on
    - <item>
      <CUSTOMERID>1000005</CUSTOMERID>
      <COMPANY>ddfask</COMPANY>
      <SHORT_NAME>;LK;L</SHORT_NAME>
      <STREET />
      <STREET2 />
      <STREET3 />
      <STREET4/>
    etc etc until
    <HKUNNR>60000</HKUNNR>
      <SALES_REGION />
      </item>
      </IP_CUSTOMER_HEADER>
      </rfc:Z_XI_005_RFC>  
    All I get on the Output target file
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:MT_customer_header xmlns:ns1="http://avenue.com/xi/test">
      <CustomerId>1000001</CustomerId>
      <company>One-time ship-to</company>
      <shortname>ONE-TIME</shortname>
    .... more data
      </ns1:MT_customer_header>
    the <item> and subsequent records all seem to have vanished.
    I must be doing something PARTICULARLY stupid as nobody else ever seems to have this problem --  I've tried almost every possible combination but still to no avail
    The function module is passing a table to XI in the correct structure and the payload seems to be fine so what on earth is broken here !!!,.
    Cheers
    Jimbo

    Thanks everybody -- it's working now
    RFC call was passing data correctly
    function z_xi_005_rfc.
    ""Local interface:
    *"  TABLES
    *"      IP_CUSTOMER_HEADER STRUCTURE  ZAP_CUSTOMER_INFO_2
    endfunction.
    in debug mode table data was fine -- in this instance 3 records were being passed.
    3 errors  in mapping etc fixed (with help from SDN - thanks)
    1)  missing the ITEM level in the Data type (hence mapping)
    2)  needed 0:unbounded in the occurrence
    3)  also mapping Item====>Item was missing (sub fields were ok)
    Points awarded
    final file output ok output now  ok (with 3 fields only for testing)
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:MT_customer_header xmlns:ns1="http://avenue.com/xi/test">
    - <item>
      <Customerid>1000001</Customerid>
      <company>One-time ship-to</company>
      <shortname>ONE-TIME</shortname>
      </item>
    - <item>
      <Customerid>1000005</Customerid>
      <company>ddfask</company>
      <shortname>;LK;L</shortname>
      </item>
    - <item>
      <Customerid>1000010</Customerid>
      <company>One Time Customer Test</company>
      <shortname>SADFIWQEFG</shortname>
      </item>
      </ns1:MT_customer_header>
    Now only the final problem to make file content conversion work.
    Once again thanks --sometimes what seem trivial or simple problems take AGES to fix until someone else gives you a clue --that's why boards like SDN are great value.
    Cheers
    Jimbo

  • Cusomter aging bucket

    Hello,
    we are trying to print customer aging bucket on monthly statement by print program RFKORD10. in customer due date list, i entered the break down days as 30, 60, 90 and etc. But when i run RFKORD10, the structure RF140 is not updated with the breakdown amount I am looking for. Is there any specific step I have to go through to have the RF140 updated correctly? or how I can make the aging bucket works by the standard print program?
    thanks,

    there is no specific setting for this aging program.
    its just a standard program by SAP.
    for more information, just click on the 'i' icon in the program execution screen.
    Regards
    Anantha

  • Assign One Position to More than one Employee Subgroup

    Dear Gurus,
    Please is it possible to assign one position to more than one employee subgroup?
    Secondly, I have a case here where employees in a particular cadre called Junior staff have different leave quota based on no particular criteria. This means that two people can be assigned to one position and have different leave quota based on Union agreement. If I create one employee group for all those positions who fall in this particular cadre, it would be difficult to generate their leave quota since I can only create generation rules by Seniority and age. And if I decide to create all the groups there are by the leave quota each group can get, I am still constrained by having 2people assigned to one position yet entitled to different quota. Please how do I go about this?
    Your suggestions will be greatly appreciated.

    Hi Rhoda,
    as to your second point: a solution for this was delivered as part of the SAP customer connection program,e last year in note 816423
    This allows you to manually influence the grouping of the employee to have an additional criterion to determine leave entitlement.
    AS to your first point: I can't quite see, what the purpose could be. Sure, you could change time dependencies accordingly, so more than one EE Subgroup assignment could be captured. But the field is setting the default value of the same field in PA, IT0001. If there is more than one value, it cannot be decided, which one is to use. So, in that respect, it doesn't make sense. Then it's easier and better to just leave the field empty in OM and have it filled manually in IT0001.
    most comoanies don't used that field in OM anyway.
    kind regards
    Sven

  • Steve Jobs, Please allow us MORE than 24 hours to watch!

    Steve, please allow us to watch rented moves for MORE than 24 hours! Most video rentals are good for at least 2 day, if not 3, to return rented movies.

    24 Hours is too short. Here's why:
    I have two young kids, 3 and 4. We like to watch movies but rarely can site through an entire movie in one sitting. It's typically a two nighter. For example, we downloaded Ice Age Monday night, watched the first half, came back Tuesday evening to finish but no more Ice Age -"all gone Daddy?"
    Now most folks probably watch all at once, but I bet there's a sizable number of family folks or people who just like to space things out a bit who would be much better satisfied with at least a 48 hour watch window. Watch your non-complete rate, if it's high, I doubt it's because all movies suddenly suck, but rather 24 hours is really 12 hours for most folks who require sleep.
    So Apple, break the mold again! Don't let the Studio Lawyers win this one -Blockbuster for god's sake gives you two days on hot rentals -and sometimes two weeks for catalog titles!
    We need 48 hours.

  • How the heck to you run a class more than once?

    Hello,
    I'm new to Java and have spent many frustrating hours on this program, (yeah I know, pathetic), but I can't get this program to run. I think that the problem lies in calling more than one object. The compiler says that the object has already been defined, by when I change it gives me the same message. Here is the message-
    java:35: data is already defined in main(java.lang.String[])
              C24001_PersonalInformation data = new C24001_PersonalInformation();
    java:41: cannot resolve symbol
    symbol : variable setAddress
    location: class C24001_PersonalInformation
    data.setAddress = ("149 East Bay Street");
    java:42: cannot resolve symbol
    symbol : variable setPhone
    location: class C24001_PersonalInformation
    data.setPhone = ("(555)555-5678");
    Here is the Demo followed by the class
    public class C24001_PersonalInformationDriver
    public static void main(String [] args)
              String name;
              int age;
              String address;
              String phone;
    C24001_PersonalInformation data = new C24001_PersonalInformation();
              //Set information and calls from method, Me
    data.setName("Joe Mahoney");
    data.setAge(27);
    data.setAddress("724 22nd Street");
    data.setPhone("(555)555-1234");
    System.out.println("\nMy information: ");
    System.out.println("Name: "+data.getName() );
    System.out.println("Age: "+data.getAge() );
    System.out.println("Address: "+data.getAddress() );
    System.out.println("Phone: "+data.getPhone() );
              C24001_PersonalInformation data = new C24001_PersonalInformation();
              //Set information and calls from method, Friend 1
    data.setName("Geri Rose");
    data.setAge(24);
    data.setAddress = ("149 East Bay Street");
    data.setPhone = ("(555)555-5678");
    System.out.println("\nFriend #1 Information: ");
              System.out.println("Name: "+data.getName() );
              System.out.println("Age: "+data.getAge() );
              System.out.println("Address: "+data.getAddress() );
    System.out.println("Phone: "+data.getPhone() );
              //C24001_PersonalInformation data2 = new C24001_PersonalInformation();
    //Set information and calls from method, Friend 2
    //data2.setName = ("John Carbonni");
    //data2.setAge =(28);
    //data2.setAddress = ("22 King Street");
    //data2.setPhone = ("(555)555-0123");
    //System.out.println("\nFriend #2 Information: ");
    //System.out.println("Name: "+data2.getName() );
              //System.out.println("Age: "+data2.getAge() );
              //System.out.println("Address: "+data2.getAddress() );
    //System.out.println("Phone: "+data2.getPhone() );
    public class C24001_PersonalInformation
    private String name;
    private int age;
    private String address;
    private String phone;
         // The constructor is a default               *
         public C24001_PersonalInformation()
              //System.out.println("Default Constructor Personal Info Class.");
    // The setName method accepts an argument *
    // which is stored in the name field. *
    public void setName(String n)
    name = n;
         // The setAge method accepts an argument *
         // which is stored in the age field. *
    public void setAge(int a)
    age = a;
         // The setAddress method accepts an argument *
         // which is stored in the adress field. *
    public void setAddress(String d)
    address = d;
         // The setPhone method accepts an argument *
         // which is stored in the phone field. *
         public void setPhone(String p)
         phone = p;
    public void set(String n, int a, String d, String p)
         name = n;
         age= a;
         address = d;
         phone = p;
    // The getName method returns the name field. *
    public String getName()
    return name;
         // The getAge method returns the age field. *
    public int getAge()
    return age;
         // The getAddress method returns the address field. *
    public String getAddress()
    return address;
    // The getPhone method returns the phone field.*
    public String getPhone()
    return phone;
    If anyone could help with this I would really appreciate it! Thank you!

    The other two error are because of syntax errors on your part. You're defining methods, but not invoking them correctly. For example:
    data.setPhone = ("(555)555-5678");What you're doing, syntactically speaking, is setting a value to the "setPhone" field, which of course doesn't exist. What you meant to do is invoke the setPhone method. So change the above to this:
    data.setPhone("(555)555-5678");(remove that equals sign).
    BTW, a couple of forum-consideration points:
    When you post code, please wrap it in &#91;code]&#91;/code] tags. It makes it easier to read, and people are more likely to help you.
    This really isn't a question about compiling, even though it showed up during compilation. Probably a better forum would have been the New to Java forum.

  • More than one video effect for same clip?

    Is it possible to apply more than one video effect to the same clip? I know this could be done in previous versions of iMovie, but I can't seem to figure out how to accomplish this task in '09!!
    Thanks!

    In general, no, you cannot do two video effects at the same time.
    However, black and white is a special case, because you can achieve this using Video Adjustments.
    You can select Aged Film and then adjust to Black and White in Video Adjustments.
    Try setting the Saturation slider all the way to the left (0%)
    Then, move the Contrast slider to the right until it is around 50%.

  • CS5 Crashing When Opening More Than 2 Images

    Everytime I try to open more than 2 images in CS5 it crashes...
    Fault bucket 1961766992, type 1
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: Photoshop.exe
    P2: 12.0.1.0
    P3: 4c2558fd
    P4: nvoglv32.DLL
    P5: 8.17.12.5896
    P6: 4c37909c
    P7: c0000005
    P8: 0063dcb1
    P9:
    P10:

    Using the latest drivers.
    But I figured it out, had to turn off OpenGL drawing in the preferences.

Maybe you are looking for