Refraining from generating lots of TEMP data

hi gurus
I am currently doing a CTAS distinct from a big table. This operation is generating lots of TEMP data, usually going beyong my control. Is there a way to limit this?
thanks

'Distinct' clause means sorting internally and - especially in case of a big table - I think temporay tablespace usage is unavoidable. You can increase values for PGA_AGGREGATE_TARGET or SORT_AREA_SIZE (depending on database version) to get more sorting in memory, but there are physical memory limits.
Werner

Similar Messages

  • How to populate Adobe LiveCycle Designer generated  PDF Forms with data from Database in Windows app

    Hi
    I have a PDF template designed in Adobe LiveCycle Designer. This template has form fields which needs to be filled with data programmatically. I am using windows application in C#.Net 2005 in which I want to retrieve data from database and merge this data into PDF form in respective fields.
    How this can be achieved?
    I searched a lot & I found that we can process the XDP file generated from PDF to acheive this. I created the XDP file out of the PDF template created in designer. But I don't know how to merge data from database into that XDP file in respective fields and again convert this XDP file back to PDF programmatically. Can anybody help me ? This is urgent.
    Thanks in advance.
    Sambhaji

    Please ignore the above code.<br />The following one is correct one.<br />using System;<br />using System.Data;<br />using System.Configuration;<br />using System.Web;<br />using System.Web.Security;<br />using System.Web.UI;<br />using System.Web.UI.WebControls;<br />using System.Web.UI.WebControls.WebParts;<br />using System.Web.UI.HtmlControls;<br />using System.Text;<br />public partial class _Default : System.Web.UI.Page <br />{<br />    protected void Page_Load(object sender, EventArgs e)<br />    {<br />        Response.ContentType = "application/vnd.adobe.xdp+xml";<br />        StringBuilder responseString = new StringBuilder();<br />        responseString.Append("<?xml version='1.0' encoding='UTF-8'?>");<br />        responseString.Append("<?xfa generator='AdobeLiveCycleDesigner_V8.0' APIVersion='2.5.6290.0'?>");<br />        responseString.Append("<xdp:xdp xmlns:xdp='http://ns.adobe.com/xdp/'>");<br />        responseString.Append("<xfa:datasets xmlns:xfa='http://www.xfa.org/schema/xfa-data/1.0/'>");<br />        responseString.Append("<xfa:data>");<br /><br />        responseString.Append("<form1>");<br />        responseString.Append("<TextField1>Homer</TextField1>");<br />        responseString.Append("<TextField2>Simpson</TextField2>");<br />        responseString.Append("<field name ='DropDownList1'>");<br />        responseString.Append("<items save='1'>");<br />        responseString.Append("<text>1</text>");<br />        responseString.Append("<text>2</text>");<br />        responseString.Append("<text>3</text>");<br />        responseString.Append("</items>");<br />        responseString.Append("</field>");<br /><br />        responseString.Append("</form1>");<br /><br />        responseString.Append("</xfa:data>");<br />        responseString.Append("</xfa:datasets>");<br />        responseString.Append("<pdf  href='C:\\Test.pdf' xmlns='http://ns.adobe.com/xdp/pdf/' />");<br />        responseString.Append("</xdp:xdp>");<br /><br />        Response.Write(responseString);<br />        Response.Flush();<br />        Response.End();<br />    }<br />}

  • Generating a list of dates between 2 dates

    hi all,
    I have a table which looks something like this.
    Table_A
    (emp_id number,
    str_dt date,
    end_dt)
    Lets suppose the data is as below.
    emp_id str_dt end_dt
    1 01-may-2006 03-may-2006
    2 05-may-2006 12-may-2006
    3 06-jun-2006 08-jun-2006
    Now i need a query which will pivot this result above into something like given below and also generate the period of dates between str_dt and end_dt.
    Example output needed.
    emp_id dt
    1 01-may-2006
    1 02-may-2006
    1 03-may-2006
    2 05-may-2006
    2 06-may-2006
    3 06-jun-2006
    3 07-jun-2006
    Can someone please help me out here? I have tried with different ways, like using rownum from all_objects, etc, but to no avail.
    Your export opinion and help would be appreciated.
    Thanks in advance
    B

    Thanks a lot. All well nowEven if the cd's suggestion doesn't work whenever the period is greater than 31 days ?
      1* insert into table_a values (4,'A',to_date('06-jun-2006','dd-mon-yyyy'), to_date('08-aug-2006','dd-mon-yyyy'))
    SQL> /
    1 row created.
    SQL> ed
    Wrote file afiedt.buf
      1  SELECT emp_id, new_dt
      2    FROM (SELECT t.emp_id, t.str_dt, t.end_dt, t.str_dt + days.rn - 1 new_dt
      3            FROM table_a t,
      4                 (SELECT ROWNUM rn
      5                    FROM user_objects
      6                   WHERE ROWNUM <= 31) days
      7         )
      8   WHERE new_dt BETWEEN str_dt AND end_dt
    9 and emp_id=4
    10*  ORDER BY emp_id, new_dt
    SQL> /
        EMP_ID NEW_DT
             4 06/06/06
             4 07/06/06
             4 08/06/06
             4 09/06/06
             4 10/06/06
             4 11/06/06
             4 12/06/06
             4 13/06/06
             4 14/06/06
             4 15/06/06
             4 16/06/06
             4 17/06/06
             4 18/06/06
             4 19/06/06
             4 20/06/06
             4 21/06/06
             4 22/06/06
             4 23/06/06
             4 24/06/06
             4 25/06/06
             4 26/06/06
             4 27/06/06
             4 28/06/06
             4 29/06/06
             4 30/06/06
             4 01/07/06
             4 02/07/06
             4 03/07/06
             4 04/07/06
             4 05/07/06
             4 06/07/06
    31 rows selected.
    SQL> ed
    Wrote file afiedt.buf
      1  select a.emp_id, a.l_typ, b.column_value
      2  from   table_a a,
      3         (select column_value from table(period((select min(str_dt) from table_a),(select max(end_dt) from table_a)))) b
      4  where  b.column_value between a.str_dt and a.end_dt
    5 and emp_id=4
      6* order by 3
    SQL> /
        EMP_ID L COLUMN_V
             4 A 06/06/06
             4 A 07/06/06
             4 A 08/06/06
             4 A 09/06/06
             4 A 10/06/06
             4 A 11/06/06
             4 A 12/06/06
             4 A 13/06/06
             4 A 14/06/06
             4 A 15/06/06
             4 A 16/06/06
             4 A 17/06/06
             4 A 18/06/06
             4 A 19/06/06
             4 A 20/06/06
             4 A 21/06/06
             4 A 22/06/06
             4 A 23/06/06
             4 A 24/06/06
             4 A 25/06/06
             4 A 26/06/06
             4 A 27/06/06
             4 A 28/06/06
             4 A 29/06/06
             4 A 30/06/06
             4 A 01/07/06
             4 A 02/07/06
             4 A 03/07/06
             4 A 04/07/06
             4 A 05/07/06
             4 A 06/07/06
             4 A 07/07/06
             4 A 08/07/06
             4 A 09/07/06
             4 A 10/07/06
             4 A 11/07/06
             4 A 12/07/06
             4 A 13/07/06
             4 A 14/07/06
             4 A 15/07/06
             4 A 16/07/06
             4 A 17/07/06
             4 A 18/07/06
             4 A 19/07/06
             4 A 20/07/06
             4 A 21/07/06
             4 A 22/07/06
             4 A 23/07/06
             4 A 24/07/06
             4 A 25/07/06
             4 A 26/07/06
             4 A 27/07/06
             4 A 28/07/06
             4 A 29/07/06
             4 A 30/07/06
             4 A 31/07/06
             4 A 01/08/06
             4 A 02/08/06
             4 A 03/08/06
             4 A 04/08/06
             4 A 05/08/06
             4 A 06/08/06
             4 A 07/08/06
             4 A 08/08/06
    64 rows selected.
    SQL> Nicolas.

  • Problems syncing and lots of "Other" data

    I have a 32gb iPod Touch 5th gen running iOS 7. I have 2 major issues, as stated in the title.
    The first is with syncing. As iTunes goes through the steps it gets stuck on "Waiting for items to copy" or "Waiting for changes to be applied;" whichever happens to be the last step. I've managed to get around this by stopping the automatic sync and clicking "Back Up Now" and "Sync" seperately. Frustraiting, but it worked. But lately I've been having to restore from a backup just to put a few new songs on it. And sometimes that doesn't even work.
    On top of that there's been a growing mass of "Other" data. It's pretty firm at sitting around 7.27 gigs. I've gotten it to completely dissapear once (save for a few megabytes), but then discovered that half of the music that should be on my iPod wasn't (I have just under 15 gigs of music on it), and when I got it back on, the other data was back exactly the same size as before. inversely, it's jumped to as much as almost 10 gigs, but after a similar problem and fix, it shrank to 4.26.
    I've heard the only way to get rid of either of these problems is to restore to factory settings, but I really don't want to do that since I have a lot of irriplacable data (game records, worlds in Minecraft, notes, etc.), but I'm afraid that may be my only option.
    I can assure you I have my data under control, I understand how to delete unwanted data to free up space, so going through settings and deleting unused apps and data wont help. All in all I have precisely 14.97gb of music, 920.4mb of photos, 1.66gb of apps, 44mb of doccuments & data, now there's 8.17gb of other data, and only 2.24gb free.
    Is there any way to fix this besides resetting? Any help is appreciated, I hope this makes sense, and thank you for reading.

    These 8GB is mostly corrupted data I suppose.
    Since you do sync and backup manually, when you look in iTunes now, goto preferences then the devices tab, you see two backups. is there one that has a date before this 8GB mess happened?
    If yes, it is easy: connect, do the "RESTORE iPOD", then after that "restore from backup" and choose the older backup. Done.
    If not, there is a problem, you cannot, as it is, restore from the backup, because that has all corrupted data in it.
    Tell me and we will find a another way to get back your data, maybe not all. wait with restoring the ipod.
    Lex

  • How to generate 3 payment due dates& 3 posting against single invoice?

    Hello Experts,
    Kindly provides some inputs on below requirement.
    For example :- In the Utility Bill,
    Consumption months: June, July, August
    Meter Reading taken in August
    Billing Months: September, October, November
    Bill generated in August
    Consumer receives the bill on September month
    Payment Due dates: 12 Sep 2009, 12 Oct 2009 and 12 Nov 2009
    Issues-:
    1.How to generate three posting against single invoice?
    2.How to generate three payment due dates for above postings in three consecutive months since payment due date logic is incremental in nature here, e.g.
    1st due date = posting date + 15 days
    2nd due date = 1st due date + 30 days
    3rd due date = 2nd due date + 30 days
    Requirement description:-
    The utility generates bill quarterly for domestic consumers. For such consumers, the utility takes reading from the consumers premises after end of consumption period (quarterly ) and generates bill on the 1st billing month (here 1st billing month is September).
    In the bill the utility divides total consumption into three parts (considering each part for each consumption month) and calculates all charge heads separately on each part. It however, consolidates and generates a single bill having three rows, each row showing charge heads of each consumption month and also net and gross amount to be given for each consumption month.
    Moreover, three postings have to be generated in FICA against that single bill. Also, it provides three due dates to the consumer, each date falling in each billing month, to pay the above three net amounts respectively. Dunning and other activities should be triggered if the consumer fails to pay the stipulated amount by corresponding due date.
    Looking forward for valuable suggestions
    Thanks in advance
    Regards,
    Vaseem
    Moderator note - question reposted - OP notified of violation Issue on quarterly bill
    Edited by: William Eastman on Jun 3, 2010 3:25 PM
    Edited by: William Eastman on Jun 3, 2010 5:01 PM

    Hello Experts,
    Kindly provides some inputs on below requirement.
    For example :- In the Utility Bill,
    Consumption months: June, July, August
    Meter Reading taken in August
    Billing Months: September, October, November
    Bill generated in August
    Consumer receives the bill on September month
    Payment Due dates: 12 Sep 2009, 12 Oct 2009 and 12 Nov 2009
    Issues-:
    1.How to generate three posting against single invoice?
    2.How to generate three payment due dates for above postings in three consecutive months since payment due date logic is incremental in nature here, e.g.
    1st due date = posting date + 15 days
    2nd due date = 1st due date + 30 days
    3rd due date = 2nd due date + 30 days
    Requirement description:-
    The utility generates bill quarterly for domestic consumers. For such consumers, the utility takes reading from the consumers premises after end of consumption period (quarterly ) and generates bill on the 1st billing month (here 1st billing month is September).
    In the bill the utility divides total consumption into three parts (considering each part for each consumption month) and calculates all charge heads separately on each part. It however, consolidates and generates a single bill having three rows, each row showing charge heads of each consumption month and also net and gross amount to be given for each consumption month.
    Moreover, three postings have to be generated in FICA against that single bill. Also, it provides three due dates to the consumer, each date falling in each billing month, to pay the above three net amounts respectively. Dunning and other activities should be triggered if the consumer fails to pay the stipulated amount by corresponding due date.
    Looking forward for valuable suggestions
    Thanks in advance
    Regards,
    Vaseem
    Moderator note - question reposted - OP notified of violation Issue on quarterly bill
    Edited by: William Eastman on Jun 3, 2010 3:25 PM
    Edited by: William Eastman on Jun 3, 2010 5:01 PM

  • How to display data from a recordset based on data from another recordset

    How to display data from a recordset based on data from
    another recordset.
    What I would like to do is as follows:
    I have a fantasy hockey league website. For each team I have
    a team page (clubhouse) which is generated using PHP/MySQL. The one
    area I would like to clean up is the displaying of the divisional
    standings on the right side. As of right now, I use a URL variable
    (division = id2) to grab the needed data, which works ok. What I
    want to do is clean up the url abit.
    So far the url is
    clubhouse.php?team=Wings&id=DET&id2=Pacific, in the end all
    I want is clubhouse.php?team=Wings.
    I have a separate table, that has the teams entire
    information (full team name, short team, abbreviation, conference,
    division, etc. so I was thinking if I could somehow do this:
    Recordset Team Info is filtered using URL variable team
    (short team). Based on what team equals, it would then insert this
    variable into the Divisional Standings recordset.
    So example: If I type in clubhouse.php?team=Wings, the Team
    Info recordset would bring up the Pacific division. Then 'Pacific'
    would be inserted into the Divisional Standings recordset to
    display the Pacific Division Standings.
    Basically I want this
    SELECT *
    FROM standings
    WHERE division = <teaminfo.division>
    ORDER BY pts DESC
    Could someone help me, thank you.

    Assuming two tables- teamtable and standings:
    teamtable - which has entire info about the team and has a
    field called
    "div" which has the division name say "pacific" and you want
    to use this
    name to get corresponding details from the other table.
    standings - which has a field called "division" which you
    want to use to
    give the standings
    SELECT * FROM standings AS st, teamtable AS t
    WHERE st.division = t.div
    ORDER BY pts DESC
    Instead of * you could be specific on what fields you want to
    select ..
    something like
    SELECT st.id AS id, st.position AS position, st.teamname AS
    team
    You cannot lose until you give up !!!
    "Leburn98" <[email protected]> wrote in
    message
    news:[email protected]...
    > How to display data from a recordset based on data from
    another recordset.
    >
    > What I would like to do is as follows:
    >
    > I have a fantasy hockey league website. For each team I
    have a team page
    > (clubhouse) which is generated using PHP/MySQL. The one
    area I would like
    > to
    > clean up is the displaying of the divisional standings
    on the right side.
    > As of
    > right now, I use a URL variable (division = id2) to grab
    the needed data,
    > which
    > works ok. What I want to do is clean up the url abit.
    >
    > So far the url is
    clubhouse.php?team=Wings&id=DET&id2=Pacific, in the end
    > all
    > I want is clubhouse.php?team=Wings.
    >
    > I have a separate table, that has the teams entire
    information (full team
    > name, short team, abbreviation, conference, division,
    etc. so I was
    > thinking if
    > I could somehow do this:
    >
    > Recordset Team Info is filtered using URL variable team
    (short team).
    > Based on
    > what team equals, it would then insert this variable
    into the Divisional
    > Standings recordset.
    >
    > So example: If I type in clubhouse.php?team=Wings, the
    Team Info recordset
    > would bring up the Pacific division. Then 'Pacific'
    would be inserted into
    > the
    > Divisional Standings recordset to display the Pacific
    Division Standings.
    >
    > Basically I want this
    >
    > SELECT *
    > FROM standings
    > WHERE division = <teaminfo.division>
    > ORDER BY pts DESC
    >
    > Could someone help me, thank you.
    >

  • How to generate a set of date type records

    How to generate a set of date-type records, with a fixed interval, starting from a date like 2008-01-01.

    Some thing like this
    SQL> select to_char(to_date('2008-01-01','yyyy-mm-dd') + (level - 1),'DD-MON-YYYY') my_date
      2    from dual
      3  connect by level <= 10
      4  /
    MY_DATE
    01-JAN-2008
    02-JAN-2008
    03-JAN-2008
    04-JAN-2008
    05-JAN-2008
    06-JAN-2008
    07-JAN-2008
    08-JAN-2008
    09-JAN-2008
    10-JAN-2008
    10 rows selected.

  • SQL query using lot of Temp space

    I have sql query which is using lot of temp space , please suggest some ways to reduce this
    SELECT A.POSITION_NBR, TO_CHAR(B.EFFDT,'YYYY-MM-DD'), rtrim( A.SEQNO), A.EMPLID, B.REG_REGION, A.MANAGER_ID, A.REPORTS_TO, case when A.POSITION_NBR = A.REPORTS_TO THEN 'POS reports to same position' else 'Positions with multiple Emp' End Case
    FROM PS_Z_RPTTO_TBL A, PS_POSITION_DATA B, PS_POSTN_SRCH_QRY B1
    WHERE B.POSITION_NBR = B1.POSITION_NBR AND B1.OPRID = 'MP9621Q' AND ( A.POSITION_NBR = B.POSITION_NBR AND ( A.REPORTS_TO = A.POSITION_NBR AND B.EFFDT =
    (SELECT MAX(B_ED.EFFDT)
    FROM PS_POSITION_DATA B_ED
    WHERE B.POSITION_NBR = B_ED.POSITION_NBR) AND A.POSITION_NBR <> '00203392') OR ( B.EFFDT =
    (SELECT MAX(B_ED.EFFDT)
    FROM PS_POSITION_DATA B_ED
    WHERE B.POSITION_NBR = B_ED.POSITION_NBR AND B_ED.EFFDT <= SYSDATE) AND B.MAX_HEAD_COUNT <>
    (SELECT Count( C.EMPLID)
    FROM PS_Z_RPTTO_TBL C)) ) UNION
    SELECT F.POSITION_NBR, TO_CHAR(F.EFFDT,'YYYY-MM-DD'), '', '', F.REG_REGION, '', F.REPORTS_TO, ''
    FROM PS_POSITION_DATA F, PS_POSTN_SRCH_QRY F1
    WHERE F.POSITION_NBR = F1.POSITION_NBR AND F1.OPRID = 'MP9621Q' AND ( F.EFFDT =
    (SELECT MAX(F_ED.EFFDT)
    FROM PS_POSITION_DATA F_ED
    WHERE F.POSITION_NBR = F_ED.POSITION_NBR AND F_ED.EFFDT <= SYSDATE) AND F.EFF_STATUS = 'A' AND F.DEPTID IN
    (SELECT G.DEPTID
    FROM PS_DEPT_TBL G
    WHERE G.EFFDT =
    (SELECT MAX(G_ED.EFFDT)
    FROM PS_DEPT_TBL G_ED
    WHERE G.SETID = G_ED.SETID AND G.DEPTID = G_ED.DEPTID AND G_ED.EFFDT <= SYSDATE) AND F.REG_REGION = G.SETID AND G.EFF_STATUS = 'I') )
    Thanks in Advance
    Rajan

    use {noformat}<your code here>{noformat} tags to format your code.
    I have sql query which is using lot of temp space , please suggest some ways to reduce thisIf your sort_area_size is not set sufficient oracle used temp space for sorting operation. As your code is not readable i cant say much more than this. Check with your DBA if you have to increase the temp space.

  • ITunes 10.5.2 is writing a lot of temp.tmp files and using up many gigabytes of disk space! It seems as if it is completely out of control!

    iTunes 10.5.2 on my macbook pro is writing a lot of temp(number).tmp files to my iTunes folder and not erasing them later!  As a result it quickly uses up many gigabytes of hard disk space. It uses up 8 to 10 gigabytes in just a few days.  I have been using iTunes since its inception, and only had this occur in the past few weeks.  My iTunes library is large with 3187 albums, and is 425 GB in size. My iTunes library is located on remote hard disk and accessed from my wifi network.  I have had such a setup for many years without any problems. Any help would be appreciated.

    iTunes 10.5.2 on my macbook pro is writing a lot of temp(number).tmp files to my iTunes folder and not erasing them later!
    Usually, that indicates that something is interfering with read/writes to the iTunes library files. Do you have security software (or realtime backup utilities) installed that might be scanning the locations on the computer where the iTunes library files are stored?

  • Temp data file

    hello
    As read somewhere that if we delete temp data file in oracle 10g, on restarting the database it automatically creates the new temp file. So deleted that file from oradata folder. Restarted the database but not creating new temp file.
    can anyone tell why this is so?

    But for XE it works:
    SQL> select name from v$tempfile;
    NAME
    C:\ORACLEXE\ORADATA\XE\TEMP.DBF
    SQL> shutdown abort
    Instance ORACLE arrÛtÚe.
    SQL> exit
    DÚconnectÚ de Oracle Database 10g Express Edition Release 10.2.0.1.0 - Productio
    n
    C:>del c:\oraclexe\oradata\xe\temp.dbf
    C:>dir c:\oraclexe\oradata\xe\temp.dbf
    Le volume dans le lecteur C s'appelle OS
    Le numéro de série du volume est D298-E605
    Répertoire de c:\oraclexe\oradata\xe
    Fichier introuvable
    C:>sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Jeu. Ao¹t 26 15:56:30 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    ConnectÚ Ó une instance inactive.
    SQL> startup
    Instance ORACLE lancÚe.
    Total System Global Area  805306368 bytes
    Fixed Size                  1289996 bytes
    Variable Size             218104052 bytes
    Database Buffers          583008256 bytes
    Redo Buffers                2904064 bytes
    Base de donnÚes montÚe.
    Base de donnÚes ouverte.
    SQL> select name from v$tempfile;
    NAME
    C:\ORACLEXE\ORADATA\XE\TEMP.DBF
    SQL>and in alert log at restart:
    Thu Aug 26 15:57:05 2010
    Re-creating tempfile C:\ORACLEXE\ORADATA\XE\TEMP.DBF

  • I have an iMac and the latest Firefox; however, I *can't* get auto-fill to work...I do a lot of repetitive data entry and auto-fill/auto-complete IS NOT WORKING

    I downloaded the auto-fill app for firefox (latest version) and have the latest firefox version, yet none of the autofill works whenever i do it once.
    i've even restarted firefox, shut down my iMac for a while, started firefox up again, nothing.
    i do A LOT of repetitive data entry and this is getting frustrating for me to work from home.
    help, please! *thanks in advance!*

    We apologize that you are experiencing issues with some Firefox feature.
    When typing in a text field, does is drop-down list appear when typing?
    If not, please '''try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • [svn:fx-trunk] 12207: Fix for [Managed] metadata prevents ASDoc from generating output for setter/getters

    Revision: 12207
    Revision: 12207
    Author:   [email protected]
    Date:     2009-11-25 11:53:15 -0800 (Wed, 25 Nov 2009)
    Log Message:
    Fix for metadata prevents ASDoc from generating output for setter/getters
    QE notes: None
    Doc notes: None
    Reviewed By: Paul
    Bugs: SDK-23940
    Tests run: checkintests, asdoc
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23940
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/genext/GenerativeSecondPassEv aluator.java

  • I have lost reminder fox ..lots of important dates etc....how do I get it back

    I have lost reminder fox from Firefox. This had lots of important dates. Can I get it back. Something is showing in the files when I search the computer but I cant figure out how to try and add to profile. It also wont let me read it because windows doesn't know how to open it. I have tried the "copying files between profile folders" but it wont let me right click inside the profile to paste for some reason

    By any chance did you use the Reset feature or create a new Firefox profile using the profile manager?
    Assuming not...
    Does the extension show up on the following tab, enabled or disabled, and what is the version number?
    orange Firefox button (or Tools menu) > Add-ons > Extensions category
    Note: Disabled extensions appear at the bottom of the list with a grayed background.

  • [svn] 3151: Fix for bug SDK-16761 - Method parameters missing from generated document

    Revision: 3151
    Author: [email protected]
    Date: 2008-09-08 21:30:07 -0700 (Mon, 08 Sep 2008)
    Log Message:
    Fix for bug SDK-16761 - Method parameters missing from generated document
    Bugs: SDK-16761
    QA: Yes
    Doc:
    Tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16761
    http://bugs.adobe.com/jira/browse/SDK-16761
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/TopLevelClassesGenerator.ja va

    Hi,
    Can you try putting the declaration of the URLLoader instance
    outside your fetchISSN function and see?
    That is:
    var loader;
    function fetchISSN(myform) {
    //your code above this line
    loader = new URLLoader();
    //rest of your code

  • Clearing from payment lot(FP05) and cash desk

    Hi ,
    Background of the issue: when we post from payment lot or cash desk account clearing happens( clearing open items).
    Issue: My client has a requirement when the posting is done for a particular account from above two (payment lot or cash desk) clearing should not happen for the open items (documnets)which has any payment method on the item(document)(like P-payed by phone).
    For me it looks like ,this issue can be handled  using customer module in clearing variant.but can some one let me know which module should be called?at what step of the clearing variant?I don't have much knowledge on clearing Variants.(I am not sure this is right approach)
    Also please suggest other solutions? Again this process (avoiding clearing  open items with payment method)should be triggered only when posting is done from payment lot and cash desk.
    Thanks,
    Shiv

    Dear Shiv,
    For me the best way is  use the event FKK_SAMPLE_0262  if you dont need the Payment send to clarification....
    But their is others ways ; 
    1 - Event FKK_SAMPLE_0110 this is for all Payment ( You can Clear the Internal Table by validating that you need  t_fkkcl )
    2  - events by the varinat of conpensations FKK_SAMPLE_TFK115 /FKK_SAMPLE_TFK116
    I hope it help
    Andre Frugulhetti

Maybe you are looking for