Want to create sequence at class level  row_number , DENSE_RANK() , rank(),

Dear All,
I want to create serial no at class level please check my query , i have already try , row_number , DENSE_RANK() , rank(), it shows 1
Please guie .
Regards
SELECT
distinct
cla.R_Description,
cla.N_Description,
period.period_name,
cla.BRANCH,
cla.CLASS_NAME,
cla.CLASS_NAME CLASS_NAME_SEQ,
DENSE_RANK() OVER (partition by cla.R_Description order by cla.CLASS_NAME) CLASS_NAME_desk,
RANK() OVER (partition by cla.CLASS_NAME order by cla.CLASS_NAME) CLASS_NAME_rank,
st.ACCOUNT_NUMBER,
st.PARTY_NAME,
decode(ASCII(substr(site.attribute13,length(site.attribute13),length(site.attribute13)-1)),13,
substr(site.attribute13,1,length(site.attribute13)-1),site.attribute13) FATHER,
pay.amount_due_original,
trx.trx_number challan_no,
ST.SECTION,
pay.amount_due_remaining,
TO_NUMBER(trx.attribute3) Concession,
ARREAR.DUE_AMOUNT
FROM
RA_CUSTOMER_TRX_ALL TRX,
student_city_school_all st,
class_v_table cla,
bill_period period,
ar_payment_schedules_all pay,
HZ_CUST_SITE_USES_ALL SITE_USE,
HZ_CUST_ACCT_SITES_ALL SITE,
--branch_network_region_link br,
( SELECT BILL_TO_CUSTOMER_ID,SUM(DUE_AMOUNT) DUE_AMOUNT FROM ARREARS_STUDENT WHERE PERIOD_START_DATE < nvl(:P_START_DATE,PERIOD_START_DATE)
--AND
-- ORG_ID=NVL( :P_ORG_ID , ORG_ID )
GROUP BY BILL_TO_CUSTOMER_ID
) ARREAR
WHERE TRX.ATTRIBUTE_CATEGORY='Periodic Billing'
AND trx.attribute2=cla.Fee_Structure_Id
AND trx.bill_to_customer_id=st.CUST_ACCOUNT_ID
AND TRX.BILL_TO_SITE_USE_ID=SITE_USE.SITE_USE_ID
AND SITE_USE.CUST_ACCT_SITE_ID=SITE.CUST_ACCT_SITE_ID
AND TRX.BILL_TO_CUSTOMER_ID=ARREAR.BILL_TO_CUSTOMER_ID(+)
AND trx.org_id=nvl(:p_org_id,trx.org_id)
AND trx.attribute1=period.period_id
-- AND period.period_id=:P_PERIOD_ID
AND trx.customer_trx_id=pay.customer_trx_id
-- AND cla.branch=nvl(:P_BRANCH,cla.branch)
-- AND CLA.CLASS_NAME=NVL(:P_CLASS,CLA.CLASS_NAME)
-- AND cla.N_Description LIKE '%KAPCO%'
-- and (cla.CLASS_NAME like '%kapco%' or cla.CLASS_NAME like '%kapco%' )
--&P_WHERE
ORDER BY CLA.CLASS_NAME, ST.SECTION,
ST.ACCOUNT_NUMBER

Please have the decency to format your code and put it in between delimiters.
Also provide create table statements and some test data along with some output that your expecting to see.
Finally you have had 18 posts and 15 are unresolved. Could you please take the time to mark those as answered
or we will assume that it is a waste of time helping you as our answers aren't helpful to you.
All the above is explained clearly in the FAQ
SQL and PL/SQL FAQ
Edited by: Paul Horth on 05-Mar-2012 23:55                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • How to create a Calendar Class in Universe.

    I want to create a Calendar class which will further contain Year,Quarter,Month,Day,Week Objects which can be used at report level.
    In our database we have different dates in " DD/MM/YYYY:hh:min:ss " format.
    I would like to know if this can be used to create a new Calendar Object or do I need a different table in DB like Calendar look up table provided in sample efashion universe?
    Help appreciated.

    Hi,
    Sorry for the delay in coming back - I had no access yesterday.
    I am not sure what you mean. If you have a lookup table, then you create views/aliases of this table for each of the dates you want to use it for.
    So f your transaction record contains original date and paid_date
    you would create a
    original_date_view as select * from calendar_lookup
    paid_date_view as select * from calendar_lookup
    these views could then be joined to the orginal_date and paid_date fields in your transaction table.
    In the universe you would then expose 2 classes, which contained the same objects.
    Original_date
    Date,
    Day,
    Month,
    Year
    etc
    Paid_date
    Date,
    Day,
    Month,
    Year
    etc
    If you are not using the lookup then you would have to code each date object based on the transaction date field
    So Day in orignal_date would be to_char(txn.original_date, "dd")
    while Day in Paid_date would be to_char(txn.paid_date, "dd")
    Hope this helps
    Alan

  • Problem with creating my own class...

    Hi all,
    Purpose with this program:
    I want to create my own class StringThing which take a string parameter and transform the content toUpperCase().
    I have created a simple class StringThing which look like this:
    class StringThing {
    public String upperize (String u) {
    u.toUpperCase();
    return u;
    }And my class where I use the StringThing looks like this:
    import java.io.*;
    class UseStringThing{
    public static void main (String arg[]) throws Exception {
    BufferedReader keyboard = new BufferedReader(
    new InputStreamReader(System.in));
    String s,p;
    System.out.prinln("write a sentence!");
    s=keyboard.readLine();
    StringThing thing = new StringThing();
    p=thing.upperize(s);
    System.out.println(p);
    }Am I not supposed to transform my string parameter in my class by using for instance toUpperCase()? Or is there some fundamental rule or piece of code which I forgot?
    Thanks in advance,
    /Beginner-T-who-ripps-his-hear-over-this-small-problem

    Strings cannot be modified. What this line does:
    u.toUpperCase();
    is to create a new String object. toUpperCase() returns the newly created string and you are ignoring the returned value. What you want to do is:
    return u.toUpperCase();
    or
    u = u.toUpperCase();

  • Create Sequence Number with Select Query

    Hi All,
    I would like to create a sequence number in oracle but instead of hard coding the "start with" I want to select the max value of the primary key of a table and add 1 and use this instead:
    So what I want is:
    CREATE SEQUENCE crg_mrec_seq
    MINVALUE 1
    MAXVALUE 999999999999999999999999999
    START WITH select max(primarykey)+1 from table1
    INCREMENT BY 1
    CACHE 20;I'm guessing I need to pass this max value as a variable into the create sequence number but I'm not sure what syntax to use.
    Thanks,
    Ed

    spalato76 wrote:
    Hi All,
    I would like to create a sequence number in oracle but instead of hard coding the "start with" I want to select the max value of the primary key of a table and add 1 and use this instead:
    So what I want is:
    CREATE SEQUENCE crg_mrec_seq
    MINVALUE 1
    MAXVALUE 999999999999999999999999999
    START WITH select max(primarykey)+1 from table1
    INCREMENT BY 1
    CACHE 20;I'm guessing I need to pass this max value as a variable into the create sequence number but I'm not sure what syntax to use.
    Thanks,
    Edconstruct SQL statement & then EXECUTE IMMEDIATE

  • To create a java class in Web dynpro

    Hi,
    I want to create a java class which can be used in multiple views. Where will i create it and how will i access it?
    Can i create the class in Comp controller's imeplementation between "begin others"----
    "end"?
    Any help?
    regards,
    Sujesh

    Hi,
      If you create the class within the begin others"----
    "end" section, this class will not be accessible by any other class.
      You can create a class in
    Project/src/packages/<namespace>/<your component>/<create a new subdirectory>/Test.java.
    This will be accessible to all other classes. Just make sure the first line of your java file is the proper package declaration. So in this case the 1st line dhould be:
    package <namespace>.<your component>.<subdirectory name>;
    Regards,
    Satyajit.

  • IPhoto is changing the sequence of the photos I have in my file for the book I want to create. Help?

    iPhoto is changing the sequence of the photos I have in my file for the book I want to create. Help?

    The problem has been solved. As it turns out, I was highlighting the photos in the album I wished to create. And then generating the request for a book. This caused the photo images when loaded into the book format to revert to the sequence used when I originally loaded them into the album. Not the edited sequence. Turns out that I did not need to highlight the photos. By eliminating this step, they remained in the edited sequence.
    Thank you for responding. Warmly, Janice huseby

  • I want to create a field in my shopping cart at item level

    I want to create a field in my shopping cart at item level of char 25 which is not there in the SRM server by default,
    Can tell me how can i do that,
    if it is related with adding some code in ITS then please give me sample code and tell me how to find that required ITS template.

    hello -
    you can reference sap note 672960 (older releases of SRM is 458591). 
    for shopping cart line item level, you would use structure:
    INCL_EEW_PD_ITEM_CSF_SC
    but keep in mind that you also have to add that field in:
    INCL_EEW_PD_ITEM_CSF
    thanks,
    stirfry,,,today is 'tofu'

  • We want to create os level linux users?

    Hi,
    We are using EBS 12.0.6 with database 10.2.0.3 in linux AS 4 (32-bit).
    Actually I want to create my two developers OS (Linux) level accounts for placing the customization forms and reports on Application node and also to compile the forms and reports on apps node, and also wants to OS level audit on these two users for security purpose.
    So, please provide the oracle doc for this if any, or refer me the exact fourm from which I can helped out?
    Regards

    Hi;
    Actually I want to create my two developers OS (Linux) level accounts for placing the customization forms and reports on Application node and also to compile the forms and reports on apps node, and also wants to OS level audit on these two users for security purpose.I belive Hussein Sawwan's previous post answer your question
    Re: How to create the users applvis and oravis..? << already posted by Autoconfig
    You can also try to chekc below link:
    Useradd:
    http://www.google.com.tr/#hl=tr&source=hp&biw=1276&bih=793&q=add+user+linux&aq=f&aqi=g1&aql=&oq=&fp=6466c647085805ba
    Groupadd:
    http://www.google.com.tr/#hl=tr&biw=1259&bih=793&q=add+group+linux&aq=f&aqi=&aql=&oq=&fp=6466c647085805ba
    For enable secutiry on OS base check:
    http://www.ibm.com/developerworks/linux/library/l-security-audit.html and below googling:
    http://www.google.com.tr/#hl=tr&source=hp&biw=1276&bih=793&q=linux+user%2Baudit&aq=f&aqi=&aql=&oq=&fp=6466c647085805ba
    Regard
    Helios

  • Is it a better practice to create an ArrayList at class level?

    Hello forum members,
    Of late one of my collegue suggested me to declare an ArrayList at class level and clearing the data for each method call as garbage collection is not guaranted in java and we may end-up with large pool of ArrayList objects on subsequent method calls!!!
    FYI :There was a need of an ArrayList object for a single method only.

    Bad suggestion. Variables should be declared in the scope in which they are used.
    Also bad reasoning. It needn't bother the programmer that garbage collection isn't guaranteed to run whenever a variable goes out of scope. It's sufficient that it is guaranteed to run before the program throws a OutOfMemoryError.
    That said, parts of the JDK instantiate an object as a class field and set (and subsequently access) its attributes in various methods to reduce the overhead of object creation for enhancing performance. Much of this is legacy code from the days of slower computers and less efficient JVMs and probably wouldn't be written the same way today.
    db

  • [svn:fx-trunk] 15846: * Package and class level javadoc for the swfutils module.

    Revision: 15846
    Revision: 15846
    Author:   [email protected]
    Date:     2010-04-30 06:15:19 -0700 (Fri, 30 Apr 2010)
    Log Message:
    Package and class level javadoc for the swfutils module.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/BatikFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/DefineFont3Face.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FSType.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontDescription.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontFace.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontSet.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/JREFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/LocalFont.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/AbstractGraphics2D.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/GraphicContext.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/SpriteGraphics2D.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/BitmapImage.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/ImageUtil.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/JPEGImage.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/LosslessImage.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/ILocalizedText.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/ILocalizer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/LocalizationManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/ResourceBundleLocalizer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/XLRLocalizer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionConstants.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionFactory.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionHandler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/CompressionLevel.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/DebugHandler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Dictionary.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Frame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Header.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Movie.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieMetaData.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/RandomAccessBuffer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfConstants.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfFormatException.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Tag.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoderReporter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagHandler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagValues.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Branch.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/ConstantPool.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/DefineFunction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GetURL.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GetURL2.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GotoFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GotoFrame2.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GotoLabel.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Label.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Push.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/SetTarget.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/StoreRegister.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/StrictMode.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Try.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Unknown.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/WaitForFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/With.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/DefineBitsBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/DefineBitsLosslessBuilder .java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/DefineShapeBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/EditTextBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/FontBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/ImageShapeBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/TagBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/TextBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/FillStyleBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/LineStyleBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/MatrixBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/PathIteratorWrapper.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/Point.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/RectBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/ShapeIterator.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/ShapeWithStyleBuilder.ja va
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/ZoneRecordBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/DebugModule.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/DebugTable.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/LineRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/RegisterRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/CSMTextSettings.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DebugID.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBinaryData.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBits.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBitsJPEG3.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBitsLossless.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineButton.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineButtonCxform.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineButtonSound.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineEditText.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont1.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont2.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont3.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont4.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontAlignZones.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontInfo.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineMorphShape.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineScalingGrid.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineSceneAndFrameLabelData.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineShape.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineSound.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineSprite.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineTag.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineText.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineVideoStream.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DoABC.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DoAction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DoInitAction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/EnableDebugger.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ExportAssets.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/FileAttributes.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/FrameLabel.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/GenericTag.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ImportAssets.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/Metadata.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/PlaceObject.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ProductInfo.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/RemoveObject.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ScriptLimits.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SetBackgroundColor.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SetTabIndex.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ShowFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SoundStreamHead.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/StartSound.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SymbolClass.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/VideoFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ZoneRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/AbcPrinter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/Disassembler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SizeReport.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SwfxParser.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ActionList.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ArrayLists.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/BevelFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/BlurFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ButtonCondAction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ButtonRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/CXForm.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/CXFormWithAlpha.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ClipActionRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ClipActions.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ColorMatrixFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ConvolutionFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/CurvedEdgeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/DropShadowFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/EdgeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/FillStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Filter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/FlashUUID.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/FocalGradient.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GlowFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GlyphEntry.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GradRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Gradient.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GradientBevelFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GradientGlowFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ImportRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/KerningRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/LineStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MD5.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Matrix.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MorphFillStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MorphGradRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MorphLineStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Rect.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Shape.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ShapeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ShapeWithStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/SoundInfo.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/StraightEdgeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/StyleChangeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/TagList.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/TextRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/AbstractCache.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/Base64.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/ExceptionUtil.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/FileResolver.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/FileUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/IntMap.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/IntMapLRUCache.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/LRUCache.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/ResourceResolver.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/StringJoiner.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/StringUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/SwfImageUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/Trace.java
    Added Paths:
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/package.html

    Thank you very much!
    I cant believe this little comment has been so helpful!
    But yes it is:
    I explain, despite my efforts to find, googled it, forums, faqs, etc...
    no where it mentionned the manifest.fm file is... INSIDE the .jar!
    Your comment "a zip" made me attempt to open it with winrar, and I found a manifest.fm file inside!
    So far I was editing the one at the "source" of my project and rebuilding it with netbeans.
    I am going to try that now.
    Actually.... :( no its mentionning my main class!
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 10.0-b19 (Sun Microsystems Inc.)
    Main-class: courseworkjava3d.Simple3D
    Class-Path:
    X-COMMENT: Main-Class will be added automatically by buildWell I have no problems uploading you the .jar, it is for a coursework it is not a private project or whatever:
    http://www.uploading.com/files/CM2LKWYU/BetaCourseworkJava3d_Final.jar.html
    Oh and I felt on your comment "dont ask us" as if I was suppose to know... i'm a beginner, I did not know that! And I tried to give you so many infos so you dont lose your time if you want to help, especially as after my own research I found many, many results for this "main class" and I tried a few solutions!
    Edited by: CupofTea on Apr 13, 2008 3:28 AM

  • [svn:fx-trunk] 15810: * Package and class level javadoc for the antTasks module and some

    Revision: 15810
    Revision: 15810
    Author:   [email protected]
    Date:     2010-04-29 02:47:22 -0700 (Thu, 29 Apr 2010)
    Log Message:
    Package and class level javadoc for the antTasks module and some
      other stragglers.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/antTasks/src/flex/ant/AsDocTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/AscTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/CompcTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/FlexTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/HtmlWrapperTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/MxmlcTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigAppendString.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigBoolean.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigInt.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigString.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigVariable.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/NestedAttributeElement.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/OptionSpec.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/RepeatableConfigString.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/DefaultScriptLimits.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/DefaultSize.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/FlexFileSet.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/Fonts.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/Metadata.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/RuntimeSharedLibraryPath.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/URLElement.java
        flex/sdk/trunk/modules/compiler/src/java/flash/css/LocalSource.java
        flex/sdk/trunk/modules/compiler/src/java/flash/css/URLSource.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/DependencyWalker.java
    Added Paths:
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/package.html
        flex/sdk/trunk/modules/antTasks/src/flex/ant/package.html
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/package.html

    Thank you very much!
    I cant believe this little comment has been so helpful!
    But yes it is:
    I explain, despite my efforts to find, googled it, forums, faqs, etc...
    no where it mentionned the manifest.fm file is... INSIDE the .jar!
    Your comment "a zip" made me attempt to open it with winrar, and I found a manifest.fm file inside!
    So far I was editing the one at the "source" of my project and rebuilding it with netbeans.
    I am going to try that now.
    Actually.... :( no its mentionning my main class!
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 10.0-b19 (Sun Microsystems Inc.)
    Main-class: courseworkjava3d.Simple3D
    Class-Path:
    X-COMMENT: Main-Class will be added automatically by buildWell I have no problems uploading you the .jar, it is for a coursework it is not a private project or whatever:
    http://www.uploading.com/files/CM2LKWYU/BetaCourseworkJava3d_Final.jar.html
    Oh and I felt on your comment "dont ask us" as if I was suppose to know... i'm a beginner, I did not know that! And I tried to give you so many infos so you dont lose your time if you want to help, especially as after my own research I found many, many results for this "main class" and I tried a few solutions!
    Edited by: CupofTea on Apr 13, 2008 3:28 AM

  • Accessing class level variable in other class.

    Hi All,
    I have one variable declared at class level i.e. global variable (non-static). In one method I am setting one value in this variable.Now I want to access this variable with this new set value in other class.
    Can anybody tell me how to do this?
    Thanks in advance.
    Neha

    Neha_20 wrote:
    Thanks for your reply. But its business req. to have byte[] as return type.
    Pls suggest me other approches as well.Comments embedded.
    Neha_20 wrote:
    *Decode.java*
    class Decode
    byte[] decodeMessage(byte []datatoReceive)
    for(int i=0,j=6; i<dataLen && j<j+responseData.length;i++,j++)
    responseData[i] = datatoReceive[j];
    System.out.println("Response Data [ "+i +" ]"+responseData);
    Syntax syntaxObj1 = new Syntax(); // this creates a Syntax instance     
    syntaxObj1.returnData(responseData); // this populates it
    return responseData; // now it goes out of scope and disappears
    Neha_20 wrote:
    *User.java*
    class User
    public static void main(String args[])
    // this creates a new unpopulated Syntax instance
    Syntax syntaxObj = new Syntax();
    for(int i =0;i<syntaxObj.dataRet.length;i++)
    System.out.println("dataRet [ "+i+ " ]"+syntaxObj.dataRet);

  • Class override, how to create the child class and then the base class

    I started to write a program for a smart DMM, the problem is every version of the DMM the company change the communication commend.
    My idea is to write a child class for every DMM version and every SubVI of the child will override the base class SubVI.
    My problem is, i want first to create one child class and after i will see every thing is work,  start to create the base class. that way i will see if am thinking the right way.
    My question is
    How can i create a child class and then create the base class and configure the SubVi of the child class to be Override of the base class?
    I tried to search in the property of the class but i didn't see nothing.
    Thanks
    Solved!
    Go to Solution.

    This can be done and I've done it on occasion.
    You simply create the base class with the dynamic dispatch methods you require (connector panes need to be identical to thos of the child class).
    Then set the inheritance of the class to inherit from this base class.  If your method is defined as a dynamic dispatch method in the parent, you'll most likely now have some errors (unless your child method was already DD in which case you might just be OK already).
    To change the inheritance of a class, right-click the properties of the class in your project and select properties.  I believe the ineritance tree is at the lower end of the properties.  Click on the "change inheritance" (or something similar) to choose the class from which you now wish to inherit.
    Say hello to my little friend.
    RFC 2323 FHE-Compliant

  • Create a new class in pe51 form layout

    Hi experts,
                   I want to create a new form  layout in pe51 for payroll register. In standard form class maximum columns is 132 but i want
    more than 300 columns for payroll register. so its possible to to create new zform class in pe51. If its possible pls guide me.
    Thanks in advance.
    Thanks & Regards
    G.Vendhan

    Hi, I am working on the same thing and created a form in PE51 using Form class CKT0 which gives me 255 columns.  I am however having problems with finding some of the fields I need.
    Thanks.
    N

  • Creating a new class type in the classification system

    We are wanting to classify objects in a ZTABLE.  We have a home grown system for defining our customer requirements that is used as the way for the sales people to communicate to the engineering dept. what the customer wants.  A new need has come up that seems to be a good fit to be able to classify our customer requirements.  I have been trying to create a new class type that is linked to our ZTABLE.  However, even though it looks like we should be able to do this I have not been able to do it.  I ran across some documentation that seems to imply that adding a new class type used to be possible, but no longer is.
    Can anyone verify that creating a new class type is still possible to do?  We are on ECC 5.0.

    Can someone point me in the right direction as to how to create my own Class Type.  Is there some documentation as to how to dow this? Other than what is fould in SPRO I have tried and tried but no joy for me. 
    This is what I have done so far:
    in SPRO:
    1) Created an Object Key for my table ZLO_CUSTREQ.  This table has a primary key of CRQNR (custormer requirements number which is I created)  The documentation says that I need to add this key field to structure RMCLY (I did that).  BUT, it also says the RMCLY is embeded in structure RMCLX and it is not.  Do I need to modify RMCLX to add RMCLY as an append structure?
    2) Went to Maintain Object types and Class types and selected my table. Double clicked on Class Types in the Dialog Structure tree, which displayed an empty list of class types. 
    I then Clicked New Entries button and filled in the fields: Class type(Z10), Description(Customer Requirements), Table(ZLO_CUSTREQ).  in the Screens group I selected Keywords and Characteristics.  In the Functions group I selected: Standard class type and Multiple classifications. I then Clicked the back arrow.  This returned me to the Class Types list which now displayed my new class type. 
    When I click the save button it kicks me out the the SPRO menu screen and I get the warning message "Class type Z10 does not have the classification status incomplete system" . 
    Then, it won't let me re-enter the Maintain Object types and Class Types screen due to an error "View cluster is already open, go back with F3"
    When I hit F3 I am returned to the main SPRO screen.  After navigating back to the Maintain Object types and Class types I continue to get the View cluster already open error.  The only way I can get back to Maintain Object types and Class types  is to completely exit SPRO and start over.  When I do, class type Z10 is gone.
    I have repeated this procedure several times with always the same results.
    Can anyone please help me?

Maybe you are looking for